From bac14b02aaa5afacc7b3d0b656cd702487d09e9b Mon Sep 17 00:00:00 2001 From: yilmazsaritemur2 <150049030+yilmazsaritemur2@users.noreply.github.com> Date: Tue, 10 Feb 2026 12:31:51 +0000 Subject: [PATCH 01/50] CCT-2357 code merge (#30) --- .../gitleaks-custom-rules-template.toml | 32 +- .../ShareResultsCommandHandlerTest.java | 2 +- .../ShareResultsCommandHandlerV2Test.java | 2 +- .../resultdefinition/ResultDefinition.java | 10 + .../event/result/PublicHearingResultedV2.java | 1 + .../event/PublishResultsV3EventProcessor.java | 18 +- .../delegates/PublishResultsDelegateV3.java | 63 +- .../DeletedJudicialResultTransformer.java | 169 + .../restructure/RestructuringHelperV3.java | 15 +- .../restructure/ResultTreeBuilderV3.java | 19 +- .../PublishResultsV3EventProcessorTest.java | 24 + .../PublishResultsDelegateV3Test.java | 60 + .../DeletedJudicialResultTransformerTest.java | 234 + .../RestructuringHelperV3Test.java | 97 +- .../helper/shared/RestructuringConstants.java | 3 + ...r_linked_app_with_deleted_resultlines.json | 1345 + ...sults-shared_with_deleted_resultlines.json | 741 + ...hared_with_deleted_resultlines_parent.json | 1633 + .../test/resources/result-definitions.json | 116308 ++++++++------- .../moj/cpp/hearing/it/ShareResultsIT.java | 4 +- pom.xml | 2 +- 21 files changed, 70039 insertions(+), 50743 deletions(-) create mode 100644 hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java create mode 100644 hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java create mode 100644 hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json create mode 100644 hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json create mode 100644 hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json diff --git a/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml b/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml index 2d5f39288c..7eb8cbec9f 100644 --- a/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml +++ b/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml @@ -15,20 +15,20 @@ description = "Identify banned IDs" regex = '''${GITLEAKS_REGEX_BANNED_IDS}''' tags = ["banned-ids"] -[allowlist] -description = "Global allowlist" -paths = [ - ".idea/.*", - "(.*/)?target/.*", - ".gitreview" -] -regexes = [ - '''(?i).*query\.local-justice.*''', - '''(?i).*referencedata\.query\.local-justice-areas.*''', - '''(?i).*referencedata\.local-authority-address.*''', - '''(?i).*referencedata\.local-justice-area-address.*''', - '''(?i).*referencedata\.query\.local.*''', - '''(?i).*vnd\.referencedata\.query\.local.*''', - '''(?i).*referencedata\.local.*''' -] +[allowlist] +description = "Global allowlist" +paths = [ + ".idea/.*", + "(.*/)?target/.*", + ".gitreview" +] +regexes = [ + '''(?i).*query\.local-justice.*''', + '''(?i).*referencedata\.query\.local-justice-areas.*''', + '''(?i).*referencedata\.local-authority-address.*''', + '''(?i).*referencedata\.local-justice-area-address.*''', + '''(?i).*referencedata\.query\.local.*''', + '''(?i).*vnd\.referencedata\.query\.local.*''', + '''(?i).*referencedata\.local.*''' +] diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerTest.java index b52088028a..0fb9549409 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerTest.java @@ -164,7 +164,7 @@ private static Defendant convert(final uk.gov.justice.core.courts.Defendant curr final PersonDefendant curPd = currentDefendant.getPersonDefendant(); final Person cpd = curPd.getPersonDetails(); Person person = new Person(cpd.getAdditionalNationalityCode(), cpd.getAdditionalNationalityDescription(), cpd.getAdditionalNationalityId(), cpd.getAddress(), cpd.getContact(), cpd.getDateOfBirth(), - cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(), + cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(),false, cpd.getLastName(), cpd.getMiddleName(), cpd.getNationalInsuranceNumber(), cpd.getNationalityCode(), cpd.getNationalityDescription(), cpd.getNationalityId(), cpd.getOccupation(), cpd.getOccupationCode(), cpd.getPersonMarkers(), cpd.getSpecificRequirements(), cpd.getTitle()); diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerV2Test.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerV2Test.java index 16a515fffb..d9b6a53562 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerV2Test.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerV2Test.java @@ -230,7 +230,7 @@ private static Defendant convert(final uk.gov.justice.core.courts.Defendant curr final PersonDefendant curPd = currentDefendant.getPersonDefendant(); final Person cpd = curPd.getPersonDetails(); Person person = new Person(cpd.getAdditionalNationalityCode(), cpd.getAdditionalNationalityDescription(), cpd.getAdditionalNationalityId(), cpd.getAddress(), cpd.getContact(), cpd.getDateOfBirth(), - cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(), + cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(), false, cpd.getLastName(), cpd.getMiddleName(), cpd.getNationalInsuranceNumber(), cpd.getNationalityCode(), cpd.getNationalityDescription(), cpd.getNationalityId(), cpd.getOccupation(), cpd.getOccupationCode(), cpd.getPersonMarkers(), cpd.getSpecificRequirements(), cpd.getTitle()); diff --git a/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java b/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java index 4cddcf0806..653e64ec06 100644 --- a/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java +++ b/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java @@ -106,6 +106,8 @@ public class ResultDefinition { private Boolean canExtendActiveOrder; private Boolean sentToCC; private Boolean committedToCC; + private Boolean isDeemedServed; + public static ResultDefinition resultDefinition() { return new ResultDefinition(); @@ -531,4 +533,12 @@ public ResultDefinition setCommittedToCC(final Boolean committedToCC) { this.committedToCC = committedToCC; return this; } + + public Boolean getIsDeemedServed() { + return isDeemedServed; + } + + public void setIsDeemedServed(final Boolean deemedServed) { + isDeemedServed = deemedServed; + } } diff --git a/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java b/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java index 45fc6b6018..ecf195457f 100644 --- a/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java +++ b/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java @@ -67,4 +67,5 @@ public PublicHearingResultedV2 setHearingDay(final LocalDate hearingDay) { this.hearingDay = hearingDay; return this; } + } diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java index fdad7bc47c..0ed51902c4 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java @@ -14,10 +14,6 @@ import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.Constants.RESULT_DEFINITION_NOT_FOUND_EXCEPTION_FORMAT; -import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.TypeUtils.getBooleanValue; -import static javax.json.Json.createObjectBuilder; -import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; -import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; import uk.gov.justice.core.courts.Address; import uk.gov.justice.core.courts.ContactNumber; @@ -422,16 +418,14 @@ private List> getTreeNodes(final JsonEnvelope context .collect(toList()); for (final ResultLine2 resultLine : allResultLines) { - if (Boolean.FALSE.equals(getBooleanValue(resultLine.getIsDeleted(), false))) { - final TreeNode resultDefinitionNode = referenceDataService.getResultDefinitionTreeNodeById(context, resultLine.getOrderedDate(), resultLine.getResultDefinitionId()); + final TreeNode resultDefinitionNode = referenceDataService.getResultDefinitionTreeNodeById(context, resultLine.getOrderedDate(), resultLine.getResultDefinitionId()); - if (isNull(resultDefinitionNode)) { - throw new ResultDefinitionNotFoundException(format(RESULT_DEFINITION_NOT_FOUND_EXCEPTION_FORMAT, - resultLine.getResultLineId(), resultLine.getResultDefinitionId(), resultsSharedV3.getHearingId(), resultLine.getOrderedDate())); - } - - treeNodes.add(resultDefinitionNode); + if (isNull(resultDefinitionNode)) { + throw new ResultDefinitionNotFoundException(format(RESULT_DEFINITION_NOT_FOUND_EXCEPTION_FORMAT, + resultLine.getResultLineId(), resultLine.getResultDefinitionId(), resultsSharedV3.getHearingId(), resultLine.getOrderedDate())); } + + treeNodes.add(resultDefinitionNode); } return treeNodes; } diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java index 2622583ceb..aeb4bd7f86 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java @@ -18,6 +18,7 @@ import static uk.gov.justice.core.courts.Level.OFFENCE; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.DeletedJudicialResultTransformer.toDeletedResults; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.CategoryEnumUtils.getCategory; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.TypeUtils.getBooleanValue; import static uk.gov.moj.cpp.hearing.event.helper.HearingHelper.getOffencesFromHearing; @@ -26,10 +27,8 @@ import uk.gov.justice.core.courts.CourtApplication; import uk.gov.justice.core.courts.DefendantJudicialResult; -import uk.gov.justice.core.courts.Hearing; import uk.gov.justice.core.courts.JudicialResult; import uk.gov.justice.core.courts.JudicialResultCategory; -import uk.gov.justice.core.courts.JudicialResultPrompt; import uk.gov.justice.core.courts.Offence; import uk.gov.justice.core.courts.Prompt; import uk.gov.justice.core.courts.ProsecutionCase; @@ -79,13 +78,6 @@ public class PublishResultsDelegateV3 { private static final Logger LOGGER = LoggerFactory.getLogger(PublishResultsDelegateV3.class.getName()); private static final String DDCH = "DDCH"; private static final String PRESS_ON = "PressOn"; - public static final String FIRST_HEARING_JUDICIAL_RESULT_TYPE_ID = "b3ed14c1-d921-459c-90fd-400a5d8d0076"; - public static final String CUSTODIAL_PERIOD_JUDICIAL_RESULT_TYPE_ID = "b65fb5f1-b11d-4a95-a198-3b81333c7cf9"; - public static final String SUSPENDED_SENTENCE_ORDER = "a78b50cc-0777-403d-8e51-5458e1ee3513, 8b1cff00-a456-40da-9ce4-f11c20959084"; - public static final String DRUG_REHABILITATION_RESIDENTIAL_WITH_REVIEW = "61ea03c9-c113-446b-a392-402144fcd9e8"; - public static final String DRUG_REHABILITATION_NON_RESIDENTIAL_WITH_REVIEW = "cc2cbb94-b75a-4a8c-9840-31c5f8007724"; - public static final String COMMUNITY_REQUIREMENT = "b2dab2b7-3edd-4223-b1be-3819173ec54d"; - public static final String COMMUNITY_ORDER = "418b3aa7-65ab-4a4a-bab9-2f96b698118c"; private final Enveloper enveloper; @@ -156,6 +148,7 @@ public void shareResults(final JsonEnvelope context, final Sender sender, final mapDefendantLevelDDCHJudicialResults(resultsShared, relistReferenceDataService.getResults(context, DDCH), orderedDate); } + final PublicHearingResultedV2 hearingResulted = PublicHearingResultedV2.publicHearingResultedV2() .setIsReshare(resultsShared.getIsReshare()) .setHearing(resultsShared.getHearing()) @@ -163,6 +156,11 @@ public void shareResults(final JsonEnvelope context, final Sender sender, final .setHearingDay(resultsShared.getHearingDay()) .setShadowListedOffences(getOffenceShadowListedForMagistratesNextHearing(resultsShared)); + final List> restructuredDeletedResults = this.restructuringHelper.getDeletedResults(context, resultsShared, treeNodes); + if (isNotEmpty(restructuredDeletedResults)) { + hearingResulted.getHearing().setDeletedJudicialResults(toDeletedResults(restructuredDeletedResults, resultsShared.getHearing())); + } + final JsonObject jsonObject = this.objectToJsonObjectConverter.convert(hearingResulted); final JsonEnvelope jsonEnvelope = envelopeFrom(metadataFrom(context.metadata()).withName("public.events.hearing.hearing-resulted"), jsonObject); if (LOGGER.isDebugEnabled()) { @@ -172,53 +170,6 @@ public void shareResults(final JsonEnvelope context, final Sender sender, final } - - private List getOffenceLevelJudicialResults(final Hearing hearing) { - return hearing.getProsecutionCases().stream() - .flatMap(prosecutionCase -> prosecutionCase.getDefendants().stream()) - .flatMap(defendant -> ofNullable(defendant.getOffences()).map(Collection::stream).orElseGet(Stream::empty)) - .filter(offence -> offence.getJudicialResults() != null) - .flatMap(offence -> ofNullable(offence.getJudicialResults()).map(Collection::stream).orElseGet(Stream::empty)).collect(toList()); - } - - - private String getResultValueFromPrompt(Hearing hearing, JudicialResult judicialResult, String promptRef) { - final Optional promptFromJudicialResult = judicialResult.getJudicialResultPrompts().stream().filter(jrPrompt -> promptRef.equals(jrPrompt.getPromptReference()) || jrPrompt.getLabel().equals(promptRef)).findFirst(); - if (promptFromJudicialResult.isPresent()) { - return promptFromJudicialResult.get().getValue(); - } else { - final JudicialResult parentJudicialResult = getRootParentResult(hearing.getProsecutionCases(), judicialResult); - if (parentJudicialResult != null) { - final Optional judicialResultPrompt = parentJudicialResult.getJudicialResultPrompts().stream().filter(jrPrompt -> promptRef.equals(jrPrompt.getPromptReference()) || jrPrompt.getLabel().equals(promptRef)).findFirst(); - if (judicialResultPrompt.isPresent()) { - return judicialResultPrompt.get().getValue(); - } else if (!parentJudicialResult.getJudicialResultId().equals(parentJudicialResult.getRootJudicialResultId())) { - getResultValueFromPrompt(hearing, parentJudicialResult, promptRef); - } - } - } - - return null; - } - - private JudicialResult getRootParentResult(List prosecutionCases, JudicialResult judicialResult) { - if (judicialResult == null) { - return null; - } else { - if (judicialResult.getJudicialResultId().equals(judicialResult.getRootJudicialResultId())) { - return judicialResult; - } - - final Optional judicialResultOptional = prosecutionCases.stream() - .flatMap(prosecutionCase -> prosecutionCase.getDefendants().stream()) - .flatMap(defendant -> ofNullable(defendant.getOffences()).map(Collection::stream).orElseGet(Stream::empty)) - .filter(offence -> offence.getJudicialResults() != null) - .flatMap(offence -> ofNullable(offence.getJudicialResults()).map(Collection::stream).orElseGet(Stream::empty)) - .filter(judicialResult1 -> judicialResult1.getJudicialResultId().equals(judicialResult.getRootJudicialResultId())).findFirst(); - return judicialResultOptional.orElse(null); - } - } - private List getOffenceShadowListedForMagistratesNextHearing(final ResultsSharedV3 resultsShared) { if (isNotEmpty(resultsShared.getHearing().getProsecutionCases()) && resultsShared.getHearing().getProsecutionCases().stream().flatMap(x -> x.getDefendants().stream()) .flatMap(def -> def.getOffences() != null ? def.getOffences().stream() : Stream.empty()) diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java new file mode 100644 index 0000000000..957e4c6118 --- /dev/null +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java @@ -0,0 +1,169 @@ +package uk.gov.moj.cpp.hearing.event.delegates.helper; + +import static java.util.Objects.isNull; +import static java.util.Objects.nonNull; +import static org.apache.commons.collections.CollectionUtils.isNotEmpty; + +import uk.gov.justice.core.courts.ApplicationCaseResults; +import uk.gov.justice.core.courts.ApplicationCourtOrderResults; +import uk.gov.justice.core.courts.ApplicationResults; +import uk.gov.justice.core.courts.CourtApplication; +import uk.gov.justice.core.courts.DeletedJudicialResults; +import uk.gov.justice.core.courts.Hearing; +import uk.gov.justice.core.courts.ProsecutionCase; +import uk.gov.justice.core.courts.ProsecutionCaseResults; +import uk.gov.justice.core.courts.ResultLine2; +import uk.gov.moj.cpp.hearing.event.helper.TreeNode; + +import java.util.List; +import java.util.Optional; +import java.util.UUID; + +public class DeletedJudicialResultTransformer { + + public static DeletedJudicialResults toDeletedResults(final List> restructuredDeletedResults, final Hearing hearing) { + + final List prosecutionCaseResults = getProsecutionCaseResults(restructuredDeletedResults, hearing.getProsecutionCases()); + final List applicationResults = getApplicationResults(restructuredDeletedResults, hearing.getCourtApplications()); + final List applicationCaseResults = getApplicationCaseResults(restructuredDeletedResults, hearing.getCourtApplications()); + final List applicationCourtOrderResults = getApplicationCourtOrderResults(restructuredDeletedResults, hearing.getCourtApplications()); + + return DeletedJudicialResults.deletedJudicialResults() + .withProsecutionCaseResults(isNotEmpty(prosecutionCaseResults) ? prosecutionCaseResults : null) + .withApplicationResults(isNotEmpty(applicationResults) ? applicationResults : null) + .withApplicationCaseResults(isNotEmpty(applicationCaseResults) ? applicationCaseResults : null) + .withApplicationCourtOrderResults(isNotEmpty(applicationCourtOrderResults) ? applicationCourtOrderResults : null) + .build(); + } + + private static List getApplicationCourtOrderResults(final List> restructuredDeletedResults, final List courtApplications) { + + return restructuredDeletedResults.stream() + .filter(node -> nonNull(node.getJudicialResult())) + .filter(node -> node.getJudicialResult().getIsNewAmendment()) + .filter(node -> nonNull(node.getOffenceId()) && nonNull(node.getApplicationId())) + .filter(node -> isCourtOrderResult(node, courtApplications)) + .map(node -> ApplicationCourtOrderResults.applicationCourtOrderResults() + .withDefendantId(getDefendantId(node.getDefendantId(), node.getApplicationId(), courtApplications)) + .withApplicationId(node.getApplicationId()) + .withOffenceId(node.getOffenceId()) + .withJudicialResult(node.getJudicialResult()) + .build()) + .toList(); + } + + private static List getApplicationCaseResults(final List> restructuredDeletedResults, final List courtApplications) { + return restructuredDeletedResults.stream() + .filter(node -> nonNull(node.getJudicialResult())) + .filter(node -> node.getJudicialResult().getIsNewAmendment()) + .filter(node -> nonNull(node.getOffenceId()) && nonNull(node.getApplicationId())) + .filter(node -> isApplicationCaseResult(node, courtApplications)) + .map(node -> ApplicationCaseResults.applicationCaseResults() + .withDefendantId(getDefendantId(node.getDefendantId(), node.getApplicationId(), courtApplications)) + .withApplicationId(node.getApplicationId()) + .withOffenceId(node.getOffenceId()) + .withJudicialResult(node.getJudicialResult()) + .build()) + .toList(); + } + + private static List getApplicationResults(final List> restructuredDeletedResults, final List courtApplications) { + return restructuredDeletedResults.stream() + .filter(node -> nonNull(node.getJudicialResult())) + .filter(node -> node.getJudicialResult().getIsNewAmendment()) + .filter(node -> isNull(node.getOffenceId())) + .filter(node -> isApplicationResult(node, courtApplications)) + .map(node -> ApplicationResults.applicationResults() + .withDefendantId(getDefendantId(node.getDefendantId(), node.getApplicationId(), courtApplications)) + .withApplicationId(node.getApplicationId()) + .withJudicialResult(node.getJudicialResult()) + .build()) + .toList(); + } + + private static List getProsecutionCaseResults(final List> restructuredDeletedResults, final List prosecutionCases) { + return restructuredDeletedResults.stream() + .filter(node -> nonNull(node.getJudicialResult())) + .filter(node -> node.getJudicialResult().getIsNewAmendment()) + .filter(node -> isNull(node.getApplicationId())) + .map(node -> ProsecutionCaseResults.prosecutionCaseResults() + .withDefendantId(node.getDefendantId()) + .withOffenceId(node.getOffenceId()) + .withJudicialResult(node.getJudicialResult()) + .build()) + .toList(); + } + + private static UUID getDefendantId(final UUID defendantId, final UUID applicationId, final List courtApplications) { + if (nonNull(defendantId)) { + return defendantId; + } + //liked applications + if (isNotEmpty(courtApplications) && nonNull(applicationId)) { + final Optional defendantOnSubject = fromSubject(applicationId, courtApplications); + if (defendantOnSubject.isPresent()) { + return defendantOnSubject.get(); + } + final Optional defendantOnApplicant = fromApplicant(applicationId, courtApplications); + if (defendantOnApplicant.isPresent()) { + return defendantOnApplicant.get(); + } + final Optional defendantOnRespondents = fromRespondent(applicationId, courtApplications); + if (defendantOnRespondents.isPresent()) { + return defendantOnRespondents.get(); + } + } + return null; + } + + private static Optional fromSubject(final UUID applicationId, final List courtApplications) { + return courtApplications.stream() + .filter(ca -> applicationId.equals(ca.getId())) + .filter(ca -> nonNull(ca.getSubject()) && nonNull(ca.getSubject().getMasterDefendant()) + && isNotEmpty(ca.getSubject().getMasterDefendant().getDefendantCase())) + .map(ca -> ca.getSubject().getMasterDefendant().getDefendantCase().get(0).getDefendantId()) + .findFirst(); + } + + private static Optional fromApplicant(final UUID applicationId, final List courtApplications) { + return courtApplications.stream() + .filter(ca -> applicationId.equals(ca.getId())) + .filter(ca -> nonNull(ca.getApplicant()) && nonNull(ca.getApplicant().getMasterDefendant()) + && isNotEmpty(ca.getApplicant().getMasterDefendant().getDefendantCase())) + .map(ca -> ca.getApplicant().getMasterDefendant().getDefendantCase().get(0).getDefendantId()) + .findFirst(); + } + + private static Optional fromRespondent(final UUID applicationId, final List courtApplications) { + return courtApplications.stream() + .filter(ca -> applicationId.equals(ca.getId())) + .filter(ca -> nonNull(ca.getRespondents())) + .flatMap(ca -> ca.getRespondents().stream()) + .filter(resp -> nonNull(resp.getMasterDefendant()) + && isNotEmpty(resp.getMasterDefendant().getDefendantCase())) + .map(resp -> resp.getMasterDefendant().getDefendantCase().get(0).getDefendantId()) + .findFirst(); + } + + private static boolean isCourtOrderResult(final TreeNode node, final List courtApplications) { + return isNotEmpty(courtApplications) && courtApplications.stream() + .filter(ca -> ca.getId().equals(node.getApplicationId())) + .filter(ca -> nonNull(ca.getCourtOrder()) && isNotEmpty(ca.getCourtOrder().getCourtOrderOffences())) + .flatMap(ca -> ca.getCourtOrder().getCourtOrderOffences().stream()) + .anyMatch(coo -> coo.getOffence().getId().equals(node.getOffenceId())); + } + + private static boolean isApplicationCaseResult(final TreeNode node, final List courtApplications) { + return isNotEmpty(courtApplications) && courtApplications.stream() + .filter(ca -> ca.getId().equals(node.getApplicationId())) + .filter(ca -> isNotEmpty(ca.getCourtApplicationCases())) + .flatMap(ca -> ca.getCourtApplicationCases().stream()) + .flatMap(cac -> cac.getOffences().stream()) + .anyMatch(caco -> caco.getId().equals(node.getOffenceId())); + } + + private static boolean isApplicationResult(final TreeNode node, final List courtApplications) { + return isNotEmpty(courtApplications) && courtApplications.stream() + .anyMatch(ca -> ca.getId().equals(node.getApplicationId())); + } +} diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java index c9c962ac3e..e15904ca9e 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java @@ -19,7 +19,6 @@ import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.RollUpPromptsHelperV3.filterNodesWithRollUpPrompts; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.Constants.EXCLUDED_PROMPT_REFERENCE; - import uk.gov.justice.core.courts.JudicialResultPrompt; import uk.gov.justice.core.courts.ResultLine2; import uk.gov.justice.services.messaging.JsonEnvelope; @@ -47,9 +46,18 @@ public RestructuringHelperV3(final ResultTreeBuilderV3 resultTreeBuilder, final this.resultTextConfHelper = resultTextConfHelper; } + public List> getDeletedResults(final JsonEnvelope context, final ResultsSharedV3 resultsShared, final List> treeNodesResultDefinition) { + final List> treeNodesOrg = resultTreeBuilder.buildDeleted(context, resultsShared, treeNodesResultDefinition); + return updatePublishForNows(treeNodesOrg); + } + public List> restructure(final JsonEnvelope context, final ResultsSharedV3 resultsShared, final List> treeNodesResultDefinition) { final List> treeNodesOrg = resultTreeBuilder.build(context, resultsShared, treeNodesResultDefinition); + return updatePublishForNows(treeNodesOrg); + } + + private List> updatePublishForNows(final List> treeNodesOrg) { final List> publishedForNowsNodes = getNodesWithPublishedForNows(treeNodesOrg); @@ -70,7 +78,7 @@ public List> restructure(final JsonEnvelope context, final } private List> prepareTreeNodes(final List> treeNodes) { - if(resultTextConfHelper.isOldResultDefinitionV2(treeNodes)){ + if (resultTextConfHelper.isOldResultDefinitionV2(treeNodes)) { updateResultText( removeNonPublishableResults( restructureNextHearing( @@ -107,6 +115,7 @@ private List> prepareTreeNodes(final List> treeNodes) { @@ -129,7 +138,7 @@ private void updateResultText(final List> treeNodeList) { }); } - private List> updateResultTextWithNewLogic(final List> treeNodeList) { + private List> updateResultTextWithNewLogic(final List> treeNodeList) { ResultTextHelperV3.setResultText(treeNodeList, resultTextConfHelper); return treeNodeList; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java index 79243e4c8c..4989376cdf 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java @@ -53,6 +53,7 @@ import java.util.Optional; import java.util.Set; import java.util.UUID; +import java.util.function.Predicate; import java.util.stream.Collectors; import javax.inject.Inject; @@ -63,6 +64,8 @@ public class ResultTreeBuilderV3 { private final NextHearingHelperV3 nextHearingHelper; private final ResultLineHelperV3 resultLineHelper; private ResultTextConfHelper resultTextConfHelper; + private final Predicate resultLinesNotDeletedPredicate = resultLine -> !getBooleanValue(resultLine.getIsDeleted(), false); + private final Predicate resultLinesDeletedPredicate = resultLine -> getBooleanValue(resultLine.getIsDeleted(), false); @Inject @@ -74,7 +77,13 @@ public ResultTreeBuilderV3(final ReferenceDataService referenceDataService, fina } public List> build(final JsonEnvelope envelope, final ResultsSharedV3 resultsShared, final List> resultDefinitionTreeNods ) { - final Map> resultLinesMap = getTreeNodeMap(envelope, resultsShared,resultDefinitionTreeNods); + final Map> resultLinesMap = getTreeNodeMap(envelope, resultsShared,resultDefinitionTreeNods, resultLinesNotDeletedPredicate); + final Map> resultLinesMapWithRelations = mapTreeNodeRelations(resultLinesMap); + return new ArrayList<>(orderResult(resultLinesMapWithRelations)); + } + + public List> buildDeleted(final JsonEnvelope envelope, final ResultsSharedV3 resultsShared, final List> resultDefinitionTreeNods ) { + final Map> resultLinesMap = getTreeNodeMap(envelope, resultsShared,resultDefinitionTreeNods, resultLinesDeletedPredicate); final Map> resultLinesMapWithRelations = mapTreeNodeRelations(resultLinesMap); return new ArrayList<>(orderResult(resultLinesMapWithRelations)); } @@ -96,7 +105,8 @@ private Map> mapTreeNodeRelations(final Map> getTreeNodeMap(final JsonEnvelope context, final ResultsSharedV3 resultsShared, final List> resultDefinitionNodes) { + private Map> getTreeNodeMap(final JsonEnvelope context, final ResultsSharedV3 resultsShared, + final List> resultDefinitionNodes, final Predicate resultLinesPredicate) { final Map> result = new HashMap<>(); final List allResultLines = resultsShared.getTargets().stream() .flatMap(t -> t.getResultLines().stream()) @@ -109,7 +119,7 @@ private Map> getTreeNodeMap(final JsonEnvelope conte final List resultLines = target.getResultLines(); resultLines .stream() - .filter(resultLine -> !getBooleanValue(resultLine.getIsDeleted(), false)) + .filter(resultLinesPredicate) .forEach(resultLine -> { final TreeNode resultDefinitionNode = resultDefinitionNodes.stream() .filter(rdt -> rdt.getData().getId().equals(resultLine.getResultDefinitionId())) @@ -212,7 +222,8 @@ private Builder getJudicialBuilder(final ResultLine2 resultLine, final Hearing h .withPreserveActiveOrder(getBooleanValue(resultDefinition.getPreserveActiveOrder(), false)) .withCanExtendActiveOrder(getBooleanValue(resultDefinition.getCanExtendActiveOrder(), false)) .withCommittedToCC(getBooleanValue(resultDefinition.getCommittedToCC(), false)) - .withSentToCC(getBooleanValue(resultDefinition.getSentToCC(), false)); + .withSentToCC(getBooleanValue(resultDefinition.getSentToCC(), false)) + .withIsDeemedServed(resultDefinition.getIsDeemedServed()); if(resultTextConfHelper.isOldResultDefinition(resultLine.getOrderedDate())) { judicialResult.withResultText(ResultTextHelperV3.getResultText(resultDefinition, resultLine)); } diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java index 2406f7acfb..17a9f2f127 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java @@ -4,12 +4,15 @@ import static org.hamcrest.MatcherAssert.assertThat; 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.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.test.utils.core.messaging.MetadataBuilderFactory.metadataWithRandomUUID; import static uk.gov.moj.cpp.hearing.event.NowsTemplates.resultsSharedV3Template; +import static uk.gov.moj.cpp.hearing.test.CoreTestTemplates.resultLine2; +import uk.gov.justice.core.courts.ResultLine2; import uk.gov.justice.hearing.courts.referencedata.OrganisationalUnit; import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; import uk.gov.justice.services.common.converter.ObjectToJsonObjectConverter; @@ -106,6 +109,27 @@ public void shouldHandleShareResult() { } + @Test + public void shouldHandleShareResultWithDeletedResultLines() { + final ResultsSharedV3 resultsSharedV3 = resultsSharedV3Template(); + final ResultLine2 deletedResultLine = resultLine2(randomUUID()); + deletedResultLine.setIsDeleted(Boolean.TRUE); + resultsSharedV3.getTargets().get(0).getResultLines().add(deletedResultLine); + final TreeNode resultDefinitionTreeNode = new TreeNode<>(randomUUID(), new ResultDefinition()); + + final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.events.results-shared-v3"), objectToJsonObjectConverter.convert(resultsSharedV3)); + + when(referenceDataLoader.getOrganisationUnitById(eq(resultsSharedV3.getHearing().getCourtCentre().getId()))).thenReturn(buildOrganisationalUnit()); + when(newTargetToLegacyTargetConverter.convert(any())).thenReturn((resultsSharedV3.getTargets())); + when(jsonObjectToObjectConverter.convert(event.payloadAsJsonObject(), ResultsSharedV3.class)).thenReturn(resultsSharedV3); + when(referenceDataService.getResultDefinitionTreeNodeById(any(), any(), any())).thenReturn(resultDefinitionTreeNode); + + publishResultsEventProcessor.resultsShared(event); + + verify(referenceDataService, times(2)).getResultDefinitionTreeNodeById(any(), any(), any()); + verify(publishResultsDelegate).shareResults(any(), any(), any(), any()); + } + @Test public void shouldHandleShareResultSuccess() { final UUID hearingId = randomUUID(); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java index b00c3b6914..5f3195ac74 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java @@ -21,11 +21,13 @@ import uk.gov.justice.core.courts.Defendant; import uk.gov.justice.core.courts.DefendantJudicialResult; +import uk.gov.justice.core.courts.DelegatedPowers; import uk.gov.justice.core.courts.Hearing; import uk.gov.justice.core.courts.JudicialResult; import uk.gov.justice.core.courts.NextHearing; import uk.gov.justice.core.courts.Offence; import uk.gov.justice.core.courts.ResultLine2; +import uk.gov.justice.core.courts.Target2; import uk.gov.justice.hearing.courts.referencedata.CourtCentreOrganisationUnit; import uk.gov.justice.hearing.courts.referencedata.Courtrooms; import uk.gov.justice.services.core.sender.Sender; @@ -46,7 +48,10 @@ import uk.gov.moj.cpp.hearing.test.FileResourceObjectMapper; import java.io.IOException; +import java.time.LocalDate; import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; import java.util.List; import java.util.UUID; import java.util.stream.Collectors; @@ -327,6 +332,61 @@ public void shouldUpdateCaseDefendantDrivingLicenseNumber() throws Exception { assertEquals("DVL1234", resultsShared.getHearing().getProsecutionCases().get(0).getDefendants().get(0).getPersonDefendant().getDriverNumber()); } + @Test + public void shouldGetIsDeemedFromResultDefinitionAndAddToResultsSharedV3() throws Exception { + final ResultDefinition resultDefinitionWithDeemedServed = resultDefinitions.stream() + .filter(rd -> rd.getId().toString().equals("de946ddc-ad77-44b1-8480-8bbc251cdcfb")) + .findFirst() + .orElseThrow(() -> new RuntimeException("Result definition with isDeemedServed not found")); + assertTrue(resultDefinitionWithDeemedServed.getIsDeemedServed()); + + final ResultsSharedV3 resultsShared = resultsSharedWithDeemedServed(); + final JsonEnvelope envelope = getEnvelope(resultsShared); + final List> treeNodes = new ArrayList<>(); + TreeNode resultDefinitionTreeNode = new TreeNode(resultDefinitionWithDeemedServed.getId(), resultDefinitions); + resultDefinitionTreeNode.setResultDefinitionId(resultDefinitionWithDeemedServed.getId()); + resultDefinitionTreeNode.setData(resultDefinitionWithDeemedServed); + treeNodes.add(resultDefinitionTreeNode); + final List> resultTree = resultTreeBuilder.build(envelope, resultsShared, treeNodes); + assertTrue(resultTree.stream().anyMatch(node -> + node.getData().getResultDefinitionId().equals(resultDefinitionWithDeemedServed.getId()))); + final TreeNode treeNode = resultTree.get(0); + final JudicialResult judicialResult = treeNode.getJudicialResult(); + assertTrue(judicialResult.getIsDeemedServed()); + } + + private ResultsSharedV3 resultsSharedWithDeemedServed() { + final ResultLine2 resultLine = ResultLine2.resultLine2() + .withResultLineId(UUID.randomUUID()) + .withResultDefinitionId(UUID.fromString("de946ddc-ad77-44b1-8480-8bbc251cdcfb")) + .withOrderedDate(LocalDate.now()) + .withPrompts(new ArrayList<>()) + .build(); + + final Target2 target = Target2.target2() + .withResultLines(Collections.singletonList(resultLine)) + .build(); + + final Hearing hearing = Hearing.hearing() + .withId(UUID.randomUUID()) + .withProsecutionCases(Collections.emptyList()) + .build(); + + final DelegatedPowers courtClerk = DelegatedPowers.delegatedPowers() + .withUserId(UUID.randomUUID()) + .withFirstName("Test") + .withLastName("Clerk") + .build(); + + return ResultsSharedV3.builder() + .withHearing(hearing) + .withCourtClerk(courtClerk) + .withTargets(Collections.singletonList(target)) + .withCompletedResultLinesStatus(new HashMap<>()) + .withNewAmendmentResults(new ArrayList<>()) + .build(); + } + @Test public void shouldUpdateApplicationDefendantDrivingLicenseNumber() throws Exception { final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(HEARING_APPLICATION_RESULTS_SHARED_WITH_DRIVINGLICENCENUMBER_JSON, ResultsSharedV3.class); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java new file mode 100644 index 0000000000..cb47dc5e8c --- /dev/null +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java @@ -0,0 +1,234 @@ +package uk.gov.moj.cpp.hearing.event.delegates.helper; + +import static java.lang.Boolean.TRUE; +import static java.util.UUID.randomUUID; +import static org.hamcrest.CoreMatchers.notNullValue; +import static org.hamcrest.CoreMatchers.nullValue; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.containsInAnyOrder; +import static org.hamcrest.core.Is.is; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; +import static uk.gov.justice.core.courts.CourtApplication.courtApplication; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.DeletedJudicialResultTransformer.toDeletedResults; + +import uk.gov.justice.core.courts.CourtApplicationCase; +import uk.gov.justice.core.courts.CourtOrder; +import uk.gov.justice.core.courts.CourtOrderOffence; +import uk.gov.justice.core.courts.Defendant; +import uk.gov.justice.core.courts.DefendantJudicialResult; +import uk.gov.justice.core.courts.DeletedJudicialResults; +import uk.gov.justice.core.courts.Hearing; +import uk.gov.justice.core.courts.JudicialResult; +import uk.gov.justice.core.courts.Offence; +import uk.gov.justice.core.courts.ProsecutionCase; +import uk.gov.justice.core.courts.ResultLine2; +import uk.gov.moj.cpp.hearing.event.helper.TreeNode; + +import java.util.List; +import java.util.UUID; + +import org.junit.jupiter.api.Test; + +public class DeletedJudicialResultTransformerTest { + + @Test + public void givenDeletedDefendantLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { + final UUID defendantId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing().withDefendantJudicialResults(List.of(DefendantJudicialResult.defendantJudicialResult() + .withDefendantId(defendantId).build())).build(); + when(mockNode.getDefendantId()).thenReturn(defendantId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getProsecutionCaseResults().size(), is(1)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getDefendantId(), is(defendantId)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getJudicialResult(), is(notNullValue())); + } + + @Test + public void givenDeletedDefendantLevelJrs_whenTransformedToDeletedJudicialResults_andNoMatchFound_shouldReturnNullProsecutionCaseResults() { + final UUID defendantId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing().withDefendantJudicialResults(List.of(DefendantJudicialResult.defendantJudicialResult() + .withDefendantId(defendantId).build())).build(); + when(mockNode.getDefendantId()).thenReturn(randomUUID()); + when(mockNode.getApplicationId()).thenReturn(randomUUID()); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getProsecutionCaseResults(), is(nullValue())); + } + + @Test + public void givenDeletedDefendantCaseLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { + final UUID defendantId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing() + .withProsecutionCases(List.of( + ProsecutionCase.prosecutionCase().withDefendants(List.of(Defendant.defendant() + .withId(defendantId) + .build())).build() + )) + .build(); + when(mockNode.getDefendantId()).thenReturn(defendantId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getProsecutionCaseResults().size(), is(1)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getDefendantId(), is(defendantId)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getJudicialResult(), is(notNullValue())); + } + + @Test + public void givenOffenceLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { + final UUID defendantId = randomUUID(); + final UUID resultLineId = randomUUID(); + final UUID offenceId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing() + .withProsecutionCases(List.of( + ProsecutionCase.prosecutionCase().withDefendants(List.of(Defendant.defendant() + .withId(defendantId) + .withOffences(List.of(Offence.offence().withId(offenceId) + .build())) + .build())).build() + )) + .build(); + when(mockNode.getDefendantId()).thenReturn(defendantId); + when(mockNode.getOffenceId()).thenReturn(offenceId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getProsecutionCaseResults().size(), is(1)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getDefendantId(), is(defendantId)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getJudicialResult(), is(notNullValue())); + } + + @Test + public void givenMultipleOffenceLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { + final UUID defendantId = randomUUID(); + final UUID resultLineId1 = randomUUID(); + final UUID resultLineId2 = randomUUID(); + final UUID offenceId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final TreeNode mockNode2 = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode, mockNode2); + + final Hearing hearing = Hearing.hearing() + .withProsecutionCases(List.of( + ProsecutionCase.prosecutionCase().withDefendants(List.of(Defendant.defendant() + .withId(defendantId) + .withOffences(List.of(Offence.offence().withId(offenceId) + .build())) + .build())).build() + )) + .build(); + when(mockNode.getDefendantId()).thenReturn(defendantId); + when(mockNode.getOffenceId()).thenReturn(offenceId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId1).withIsNewAmendment(TRUE).build()); + + when(mockNode2.getDefendantId()).thenReturn(defendantId); + when(mockNode2.getOffenceId()).thenReturn(offenceId); + when(mockNode2.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId2).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getProsecutionCaseResults().size(), is(2)); + assertThat(deletedResults.getProsecutionCaseResults().stream().allMatch(pc -> pc.getDefendantId().equals(defendantId)), is(true)); + assertThat(deletedResults.getProsecutionCaseResults().stream().allMatch(pc -> pc.getOffenceId().equals(offenceId)), is(true)); + assertThat(deletedResults.getProsecutionCaseResults().stream().map(pc -> pc.getJudicialResult().getJudicialResultId()).toList(), containsInAnyOrder(resultLineId1, resultLineId2)); + } + + @Test + public void givenApplicationJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInApplicationResults() { + final UUID applicationId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing() + .withCourtApplications(List.of(courtApplication().withId(applicationId).build())) + .build(); + when(mockNode.getApplicationId()).thenReturn(applicationId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getApplicationResults().size(), is(1)); + assertThat(deletedResults.getApplicationResults().get(0).getApplicationId(), is(applicationId)); + assertThat(deletedResults.getApplicationResults().get(0).getJudicialResult(), is(notNullValue())); + } + + @Test + public void givenApplicationCaseJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInApplicationResults() { + final UUID applicationId = randomUUID(); + final UUID offenceId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing() + .withCourtApplications(List.of(courtApplication().withId(applicationId) + .withCourtApplicationCases(List.of(CourtApplicationCase.courtApplicationCase() + .withOffences(List.of(Offence.offence() + .withId(offenceId).build())) + .build())).build())) + .build(); + when(mockNode.getApplicationId()).thenReturn(applicationId); + when(mockNode.getOffenceId()).thenReturn(offenceId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getApplicationCaseResults().size(), is(1)); + assertThat(deletedResults.getApplicationCaseResults().get(0).getApplicationId(), is(applicationId)); + assertThat(deletedResults.getApplicationCaseResults().get(0).getJudicialResult(), is(notNullValue())); + } + + @Test + public void givenApplicationCourtOrderJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInApplicationResults() { + final UUID applicationId = randomUUID(); + final UUID offenceId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing() + .withCourtApplications(List.of(courtApplication().withId(applicationId) + .withCourtOrder(CourtOrder.courtOrder() + .withCourtOrderOffences(List.of(CourtOrderOffence.courtOrderOffence() + .withOffence(Offence.offence().withId(offenceId) + .build()) + .build())) + .build()) + + .build())) + .build(); + when(mockNode.getApplicationId()).thenReturn(applicationId); + when(mockNode.getOffenceId()).thenReturn(offenceId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getApplicationCourtOrderResults().size(), is(1)); + assertThat(deletedResults.getApplicationCourtOrderResults().get(0).getApplicationId(), is(applicationId)); + assertThat(deletedResults.getApplicationCourtOrderResults().get(0).getJudicialResult(), is(notNullValue())); + } +} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java index 5cf039892f..bbe04dc789 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java @@ -1,16 +1,24 @@ package uk.gov.moj.cpp.hearing.event.delegates.helper.restructure; +import static net.bytebuddy.matcher.ElementMatchers.anyOf; import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.is; +import static org.hamcrest.Matchers.nullValue; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; import static uk.gov.justice.services.test.utils.core.reflection.ReflectionUtil.setField; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.DeletedJudicialResultTransformer.toDeletedResults; import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_DATEORDERS_HEARING_JSON; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_DELETED_RESULTLINES_JSON; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_DELETED_RESULTLINES_PARENT_JSON; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_LINKED_APP_DELETED_RESULTLINES_JSON; import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_NEW_REVIEW_HEARING_ALWAYS_PUBLISHED_LEAF_NODE_JSON; import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_NEW_REVIEW_HEARING_JSON; +import uk.gov.justice.core.courts.DeletedJudicialResults; import uk.gov.justice.core.courts.HearingType; import uk.gov.justice.core.courts.JudicialResultPrompt; import uk.gov.justice.core.courts.ResultLine2; @@ -26,11 +34,14 @@ import java.util.List; import java.util.UUID; import java.util.stream.Collectors; +import java.util.stream.Stream; import org.apache.commons.lang3.StringUtils; import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.Arguments; +import org.junit.jupiter.params.provider.MethodSource; import org.mockito.Mockito; import org.mockito.junit.jupiter.MockitoSettings; import org.mockito.quality.Strictness; @@ -55,19 +66,19 @@ public void setUp() throws IOException { public void shouldPublishWhenAlwaysPublishedIsALeafNode() throws IOException { final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(HEARING_RESULTS_NEW_REVIEW_HEARING_ALWAYS_PUBLISHED_LEAF_NODE_JSON, ResultsSharedV3.class); final JsonEnvelope envelope = getEnvelope(resultsShared); - List resultDefinitionIds=resultsShared.getTargets().stream() - .flatMap(t->t.getResultLines().stream()) + List resultDefinitionIds = resultsShared.getTargets().stream() + .flatMap(t -> t.getResultLines().stream()) .map(ResultLine2::getResultDefinitionId) .collect(Collectors.toList()); final List> treeNodes = new ArrayList<>(); - for(UUID resulDefinitionId:resultDefinitionIds){ - TreeNode resultDefinitionTreeNode=new TreeNode(resulDefinitionId,resultDefinitions); - resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); - resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); - treeNodes.add(resultDefinitionTreeNode); - } + for (UUID resulDefinitionId : resultDefinitionIds) { + TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); + resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); + resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); + treeNodes.add(resultDefinitionTreeNode); + } final List> restructuredTree = target.restructure(envelope, resultsShared, treeNodes); @@ -100,15 +111,15 @@ public void shouldPublishWhenAlwaysPublishedIsAnIntermediaryNodeWhenLeafNodePubl assertThat(rl2.getPrompts().size(), is(3)); assertThat(firstReviewResultLint.getPrompts().size(), is(12)); - List resultDefinitionIds=resultsShared.getTargets().stream() - .flatMap(t->t.getResultLines().stream()) + List resultDefinitionIds = resultsShared.getTargets().stream() + .flatMap(t -> t.getResultLines().stream()) .map(ResultLine2::getResultDefinitionId) .collect(Collectors.toList()); final List> treeNodes = new ArrayList<>(); - for(UUID resulDefinitionId:resultDefinitionIds){ - TreeNode resultDefinitionTreeNode=new TreeNode(resulDefinitionId,resultDefinitions); + for (UUID resulDefinitionId : resultDefinitionIds) { + TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); treeNodes.add(resultDefinitionTreeNode); @@ -140,15 +151,15 @@ public void ShouldReturnResultTextForEachOrderedDateCorrectly() throws IOExcepti final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(HEARING_RESULTS_DATEORDERS_HEARING_JSON, ResultsSharedV3.class); final JsonEnvelope envelope = getEnvelope(resultsShared); - List resultDefinitionIds=resultsShared.getTargets().stream() - .flatMap(t->t.getResultLines().stream()) + List resultDefinitionIds = resultsShared.getTargets().stream() + .flatMap(t -> t.getResultLines().stream()) .map(ResultLine2::getResultDefinitionId) .collect(Collectors.toList()); final List> treeNodes = new ArrayList<>(); - for(UUID resulDefinitionId:resultDefinitionIds){ - TreeNode resultDefinitionTreeNode=new TreeNode(resulDefinitionId,resultDefinitions); + for (UUID resulDefinitionId : resultDefinitionIds) { + TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); treeNodes.add(resultDefinitionTreeNode); @@ -163,6 +174,58 @@ public void ShouldReturnResultTextForEachOrderedDateCorrectly() throws IOExcepti restructuredTree.forEach(resultLine2TreeNode -> assertNotNull(resultLine2TreeNode.getJudicialResult().getResultText())); + } + + @ParameterizedTest + @MethodSource("amendmentsWithDeletedResults") + void ShouldReturnDeletedResultLines(final String resultsSharedEventPayloadFile, final int deletedProsecutionCaseResultsCount, final int deletedApplicationResultsCount, + final int deletedApplicationCaseResultsCount, + final int deletedApplicationCourtOrderResultsCount) throws IOException { + + final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(resultsSharedEventPayloadFile, ResultsSharedV3.class); + final JsonEnvelope envelope = getEnvelope(resultsShared); + + final List resultDefinitionIds = resultsShared.getTargets().stream() + .flatMap(t -> t.getResultLines().stream()) + .map(ResultLine2::getResultDefinitionId) + .toList(); + + final List> treeNodes = new ArrayList<>(); + + for (UUID resulDefinitionId : resultDefinitionIds) { + TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); + resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); + resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); + treeNodes.add(resultDefinitionTreeNode); + } + when(hearingTypeReverseLookup.getHearingTypeByName(any(), any())).thenReturn(HearingType.hearingType().withDescription("REV").build()); + ResultTextConfHelper resultTextConfHelper = new ResultTextConfHelper(); + setField(resultTextConfHelper, "liveDateOfResultTextTemplateConf", "01042023"); + resultTextConfHelper.setDate(); + resultTreeBuilder = new ResultTreeBuilderV3(referenceDataService, nextHearingHelperV3, resultLineHelperV3, resultTextConfHelper); + target = new RestructuringHelperV3(resultTreeBuilder, resultTextConfHelper); + final List> restructuredTree = target.getDeletedResults(envelope, resultsShared, treeNodes); + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredTree, resultsShared.getHearing()); + + assertResultList(deletedResults.getProsecutionCaseResults(), deletedProsecutionCaseResultsCount); + assertResultList(deletedResults.getApplicationResults(), deletedApplicationResultsCount); + assertResultList(deletedResults.getApplicationCaseResults(), deletedApplicationCaseResultsCount); + assertResultList(deletedResults.getApplicationCourtOrderResults(), deletedApplicationCourtOrderResultsCount); + } + public static Stream amendmentsWithDeletedResults() { + return Stream.of( + Arguments.of(HEARING_RESULTS_DELETED_RESULTLINES_PARENT_JSON, 1, 0, 0, 0), + Arguments.of(HEARING_RESULTS_DELETED_RESULTLINES_JSON, 1, 0, 0, 0), + Arguments.of(HEARING_RESULTS_LINKED_APP_DELETED_RESULTLINES_JSON, 0, 4, 0, 0) + ); + } + + private void assertResultList(final List results, final int expectedCount){ + if (expectedCount == 0) { + assertThat(results, nullValue()); + } else { + assertThat(results.size(), is(expectedCount)); + } } } diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java index 3126767d28..425f6dd1cb 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java @@ -29,6 +29,9 @@ public class RestructuringConstants { public static final String HEARING_RESULTS_NEW_REVIEW_HEARING_JSON = "hearing.results-shared_new_review_hearing.json"; public static final String HEARING_RESULTS_NEW_REVIEW_HEARING_DEFENDANT_LEVEL_RESULTS_JSON = "hearing.results-shared_new_review_hearing_defendant_level_results.json"; public static final String HEARING_RESULTS_DATEORDERS_HEARING_JSON = "hearing.results-shared_with_orderedDates_hearing.json"; + public static final String HEARING_RESULTS_DELETED_RESULTLINES_JSON = "hearing.results-shared_with_deleted_resultlines.json"; + public static final String HEARING_RESULTS_LINKED_APP_DELETED_RESULTLINES_JSON = "hearing.results-shared_for_linked_app_with_deleted_resultlines.json"; + public static final String HEARING_RESULTS_DELETED_RESULTLINES_PARENT_JSON = "hearing.results-shared_with_deleted_resultlines_parent.json"; public static final String HEARING_RESULTS_HEARING_JSON = "hearing.events.results-shared-v3.json"; public static final String HEARING_CASE_RESULTS_SHARED_WITH_DRIVINGLICENCENUMBER_JSON = "hearing.case-results-shared_with_drivinglicencenumber.json"; public static final String HEARING_APPLICATION_RESULTS_SHARED_WITH_DRIVINGLICENCENUMBER_JSON = "hearing.application-results-shared_with_drivinglicencenumber.json"; diff --git a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json new file mode 100644 index 0000000000..85929621dc --- /dev/null +++ b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json @@ -0,0 +1,1345 @@ +{ + "hearingId": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", + "sharedTime": "2025-09-19T16:02:11.893Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + }, + "hearing": { + "courtApplications": [ + { + "applicant": { + "id": "31bbd5fd-d058-421b-a090-1e58a9c78d19", + "masterDefendant": { + "defendantCase": [ + { + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "caseReference": "28DI6500116", + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d" + } + ], + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "personDefendant": { + "arrestSummonsNumber": "D28GC01126500116", + "bailStatus": { + "code": "A", + "description": "Not applicable", + "id": "86009c70-759d-3308-8de4-194886ff9a77" + }, + "driverNumber": "VANFL002222OW9PH", + "personDetails": { + "address": { + "address1": "9999A9899AAAA", + "address2": "Woodlane4", + "address3": "addressline 3", + "address4": "Bristol", + "address5": "Avon", + "postcode": "BS1 1JQ" + }, + "contact": { + "home": "0206500116", + "mobile": "07776500116", + "primaryEmail": "firstName.lastName6500116@gmail.com" + }, + "dateOfBirth": "1972-11-01", + "documentationLanguageNeeds": "ENGLISH", + "ethnicity": { + "observedEthnicityCode": "1", + "observedEthnicityDescription": "White", + "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", + "selfDefinedEthnicityCode": "W1", + "selfDefinedEthnicityDescription": "British", + "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" + }, + "firstName": "Angus", + "gender": "MALE", + "hearingLanguageNeeds": "ENGLISH", + "lastName": "Lindgren", + "title": "Mr" + }, + "policeBailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + } + } + }, + "notificationRequired": true, + "summonsRequired": false + }, + "applicationReceivedDate": "2025-09-19", + "applicationReference": "28DI6500116", + "applicationStatus": "LISTED", + "commissionerOfOath": false, + "courtApplicationCases": [ + { + "caseStatus": "INACTIVE", + "isSJP": false, + "offences": [ + { + "arrestDate": "2021-01-01", + "chargeDate": "2020-12-28", + "count": 0, + "endorsableFlag": false, + "id": "56693136-f544-4083-bd55-df22eff8d021", + "isDisposed": true, + "listingNumber": 1, + "maxPenalty": "EW:6M &/or Ultd Fine", + "modeOfTrial": "Either Way", + "offenceCode": "TH68010", + "offenceDateCode": 1, + "offenceDefinitionId": "38873d2b-4f99-35ae-9d8f-41da07abb6d5", + "offenceLegislation": "Contrary to section 1(1) and 7 of the Theft Act 1968.", + "offenceLegislationWelsh": "Yn groes i adran 1(1) a 7 Deddf Dwyn 1968.", + "offenceTitle": "Theft from a shop", + "offenceTitleWelsh": "Dwyn o siop - siop-ladrad", + "orderIndex": 1, + "proceedingsConcluded": true, + "startDate": "2019-11-28", + "wording": "Theft of pedal cycle." + } + ], + "prosecutionCaseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "prosecutionCaseIdentifier": { + "address": { + "address1": "Finance Operations", + "address2": "C3 East", + "address3": "DVLA", + "address4": "Longview Road", + "address5": "Swansea", + "postcode": "SA6 7JL" + }, + "contact": { + "primaryEmail": "sjp@dvla.gov.uk" + }, + "majorCreditorCode": "DVL2", + "prosecutionAuthorityCode": "DVLA", + "prosecutionAuthorityId": "6ae4b163-658b-3ae2-a66d-43401cac2f96", + "prosecutionAuthorityName": "Driver and Vehicle Licensing Agency", + "prosecutionAuthorityOUCode": "G94DV00", + "caseURN": "28DI6500116" + } + } + ], + "id": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "subject": { + "id": "31bbd5fd-d058-421b-a090-1e58a9c78d19", + "masterDefendant": { + "defendantCase": [ + { + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "caseReference": "28DI6500116", + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d" + } + ], + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "personDefendant": { + "arrestSummonsNumber": "D28GC01126500116", + "bailStatus": { + "code": "A", + "description": "Not applicable", + "id": "86009c70-759d-3308-8de4-194886ff9a77" + }, + "driverNumber": "VANFL002222OW9PH", + "personDetails": { + "address": { + "address1": "9999A9899AAAA", + "address2": "Woodlane4", + "address3": "addressline 3", + "address4": "Bristol", + "address5": "Avon", + "postcode": "BS1 1JQ" + }, + "contact": { + "home": "0206500116", + "mobile": "07776500116", + "primaryEmail": "firstName.lastName6500116@gmail.com" + }, + "dateOfBirth": "1972-11-01", + "documentationLanguageNeeds": "ENGLISH", + "ethnicity": { + "observedEthnicityCode": "1", + "observedEthnicityDescription": "White", + "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", + "selfDefinedEthnicityCode": "W1", + "selfDefinedEthnicityDescription": "British", + "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" + }, + "firstName": "Angus", + "gender": "MALE", + "hearingLanguageNeeds": "ENGLISH", + "lastName": "Lindgren", + "title": "Mr" + }, + "policeBailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + } + } + }, + "notificationRequired": true, + "summonsRequired": false + }, + "thirdParties": [ + { + "id": "977beebc-2e85-47cb-9d3f-f7038153a196", + "notificationRequired": true, + "prosecutingAuthority": { + "address": { + "address1": "Finance Operations", + "address2": "C3 East", + "address3": "DVLA", + "address4": "Longview Road", + "address5": "Swansea", + "postcode": "SA6 7JL" + }, + "contact": { + "primaryEmail": "sjp@dvla.gov.uk" + }, + "majorCreditorCode": "DVL2", + "name": "Driver and Vehicle Licensing Agency", + "prosecutionAuthorityCode": "DVLA", + "prosecutionAuthorityId": "6ae4b163-658b-3ae2-a66d-43401cac2f96", + "prosecutionAuthorityOUCode": "G94DV00" + }, + "summonsRequired": true + } + ], + "type": { + "appealFlag": false, + "applicantAppellantFlag": false, + "applicationWording": "Appears before the court in order to make a statutory declaration following conviction {1} by {2} on {3}. Original case number: {4}", + "applicationWordingWelsh": "Yn ymddangos gerbron y llys er mwyn gwneud datganiad statudol yn dilyn euogfarn <[am y trosedd ][am y troseddau ]> gan ar . Rhif yr Achos Gwreiddiol: ", + "boxworkNotifTemplate": "NOT_APPLICABLE", + "breachType": "NOT_APPLICABLE", + "categoryCode": "CR", + "changeDate": "2025-03-17T10:29:09", + "code": "MC80527", + "commrOfOathFlag": true, + "contestedFeeApplicable": false, + "courtExtractAvlFlag": true, + "courtOfAppealFlag": false, + "exParte": false, + "hearingCode": "APN", + "id": "a6663f2a-c900-4bb4-a7d7-4be34cb2f1f7", + "initialFeeApplicable": false, + "jurisdiction": "MAGISTRATES", + "lastModified": "2025-03-17T14:00:40.437Z", + "legislation": "In accordance with section 14 of the Magistrates' Courts Act 1980.", + "legislationWelsh": "Yn unol ag adran 14 Deddf Llysoedd Ynadon 1980.", + "linkType": "LINKED", + "listingNotifTemplate": "POSTAL_NOTIFICATION", + "offenceActiveOrder": "OFFENCE", + "pleaApplicableFlag": true, + "prosecutorThirdPartyFlag": true, + "pssId": 601795, + "sowRef": "APPS", + "spiOutApplicableFlag": true, + "summonsTemplateType": "NOT_APPLICABLE", + "type": "Appearance to make statutory declaration (other than SJP)", + "typeWelsh": "Ymddangosiad i wneud datganiad statudol", + "validFrom": "2000-01-05" + } + } + ], + "courtCentre": { + "address": { + "address1": "Norwich Place", + "address2": "Bexleyheath", + "address3": "Kent", + "address4": "", + "address5": "", + "postcode": "DA6 7ND" + }, + "code": "B01BH00", + "courtHearingLocation": "B01BH01", + "id": "7e967376-eacf-4fca-9b30-21b0c5aad427", + "lja": { + "ljaCode": "2575", + "ljaName": "South East London Magistrates' Court" + }, + "name": "Bexley Magistrates' Court", + "roomId": "8e912353-3b5d-36c3-953e-ad3b94b19de3", + "roomName": "Courtroom 01" + }, + "defendantAttendance": [ + { + "attendanceDays": [ + { + "attendanceType": "IN_PERSON", + "day": "2025-09-19" + } + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d" + } + ], + "hasSharedResults": true, + "hearingDays": [ + { + "courtCentreId": "7e967376-eacf-4fca-9b30-21b0c5aad427", + "courtRoomId": "8e912353-3b5d-36c3-953e-ad3b94b19de3", + "hasSharedResults": true, + "isCancelled": false, + "listedDurationMinutes": 20, + "listingSequence": 0, + "sittingDay": "2025-09-19T09:00:00.000Z" + } + ], + "hearingLanguage": "ENGLISH", + "id": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", + "jurisdictionType": "MAGISTRATES", + "shadowListedOffences": [], + "type": { + "description": "Application", + "id": "3449743b-95d6-4836-8941-57f588b52068" + } + }, + "variantDirectory": [], + "completedResultLinesStatus": { + "c3f54f8b-bae1-4141-bdf9-7dc38aee602a": { + "id": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "4b4dbc9f-7889-4433-9eab-5f631c103b81": { + "id": "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "67c5877f-bcb0-430f-974c-334e4d565f05": { + "id": "67c5877f-bcb0-430f-974c-334e4d565f05", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "626a1980-77be-4612-9afc-55f3c85d7381": { + "id": "626a1980-77be-4612-9afc-55f3c85d7381", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "11593003-7af6-4d2a-aa08-82281a4df15c": { + "id": "11593003-7af6-4d2a-aa08-82281a4df15c", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "d6986f75-2404-4e8c-8250-d50b7d8e865c": { + "id": "d6986f75-2404-4e8c-8250-d50b7d8e865c", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "45b6b6d7-ce6f-425c-a2c6-bdae1db71690": { + "id": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "18ccf48c-c76a-4e20-a777-4d37d4645003": { + "id": "18ccf48c-c76a-4e20-a777-4d37d4645003", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "25082695-3304-4d5d-8176-b2e77fbd1236": { + "id": "25082695-3304-4d5d-8176-b2e77fbd1236", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "352c8174-5140-4717-bc12-cb9ce554d68a": { + "id": "352c8174-5140-4717-bc12-cb9ce554d68a", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + } + }, + "targets": [ + { + "applicationFinalised": true, + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "draftResult": "{}", + "hearingDay": "2025-09-19", + "hearingId": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "resultLines": [ + { + "amendmentDate": "2025-09-19T16:01:21.012Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "I", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [ + { + "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", + "label": "Defendant excused attendance at next hearing", + "promptRef": "defendantExcusedAttendanceAtNextHearing", + "value": "true" + } + ], + "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", + "resultLabel": "Adjournment", + "resultLineId": "25082695-3304-4d5d-8176-b2e77fbd1236", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "a" + }, + { + "amendmentDate": "2025-09-19T16:01:21.012Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "resultLabel": "Next hearing", + "resultLineId": "d6986f75-2404-4e8c-8250-d50b7d8e865c", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nexh" + }, + { + "amendmentDate": "2025-09-19T16:01:21.012Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [ + { + "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", + "label": "Date of hearing", + "promptRef": "HDATE", + "value": "2025-09-19" + }, + { + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "promptRef": "timeOfHearing", + "value": "10:00" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "promptRef": "hCHOUSEOrganisationName", + "value": "Lavender Hill Magistrates' Court" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "promptRef": "hCHOUSEAddress1", + "value": "176A Lavender Hill" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "promptRef": "hCHOUSEAddress2", + "value": "London" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "promptRef": "hCHOUSEPostCode", + "value": "SW11 1JU" + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "promptRef": "HCROOM", + "value": "Courtroom 03" + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "promptRef": "HTYPE", + "value": "Bail Application" + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "promptRef": "HEST", + "value": "20 MINUTES" + }, + { + "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", + "label": "Booking reference", + "promptRef": "bookingReference", + "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" + } + ], + "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "resultLabel": "Next hearing in magistrates' court", + "resultLineId": "18ccf48c-c76a-4e20-a777-4d37d4645003", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nhmc" + }, + { + "amendmentDate": "2025-09-19T16:01:21.012Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "resultLabel": "Adjournment reasons", + "resultLineId": "352c8174-5140-4717-bc12-cb9ce554d68a", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "adjr" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", + "resultLabel": "To attend or a warrant to issue", + "resultLineId": "67c5877f-bcb0-430f-974c-334e4d565f05", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "awi" + }, + { + "amendmentDate": "2025-09-19T16:01:21.012Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "dbf9f59c-eee5-4285-8a1c-4fefe4508581", + "resultLabel": "To produce motor insurance documents or test certificates (not driving licence)", + "resultLineId": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "doc" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "I", + "childResultLineIds": [ + "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "prompts": [ + { + "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", + "label": "Defendant excused attendance at next hearing", + "promptRef": "defendantExcusedAttendanceAtNextHearing", + "value": "true" + } + ], + "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", + "resultLabel": "Adjournment", + "resultLineId": "626a1980-77be-4612-9afc-55f3c85d7381", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "a" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "11593003-7af6-4d2a-aa08-82281a4df15c" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "626a1980-77be-4612-9afc-55f3c85d7381" + ], + "prompts": [], + "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "resultLabel": "Next hearing", + "resultLineId": "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nexh" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "4b4dbc9f-7889-4433-9eab-5f631c103b81" + ], + "prompts": [ + { + "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", + "label": "Date of hearing", + "promptRef": "HDATE", + "value": "2025-09-19" + }, + { + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "promptRef": "timeOfHearing", + "value": "10:00" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "promptRef": "hCHOUSEOrganisationName", + "value": "Lavender Hill Magistrates' Court" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "promptRef": "hCHOUSEAddress1", + "value": "176A Lavender Hill" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "promptRef": "hCHOUSEAddress2", + "value": "London" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "promptRef": "hCHOUSEPostCode", + "value": "SW11 1JU" + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "promptRef": "HCROOM", + "value": "Courtroom 03" + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "promptRef": "HTYPE", + "value": "Bail Application" + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "promptRef": "HEST", + "value": "20 MINUTES" + }, + { + "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", + "label": "Booking reference", + "promptRef": "bookingReference", + "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" + } + ], + "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "resultLabel": "Next hearing in magistrates' court", + "resultLineId": "11593003-7af6-4d2a-aa08-82281a4df15c", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nhmc" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "92df62ca-9311-4894-8bfa-61c4e4ad5f1a" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "626a1980-77be-4612-9afc-55f3c85d7381" + ], + "prompts": [], + "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "resultLabel": "Adjournment reasons", + "resultLineId": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "adjr" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", + "resultLabel": "To attend or a warrant to issue", + "resultLineId": "67c5877f-bcb0-430f-974c-334e4d565f05", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "awi" + }, + { + "amendmentDate": "2025-09-19T16:01:25.148Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:25.148Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "F", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "2b3f7c20-8fc1-4fad-9076-df196c24b27e", + "resultLabel": "Granted", + "resultLineId": "e548f1a1-fee8-46c0-bc47-201a26de69f6", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "g" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:32.983Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" + ], + "prompts": [], + "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", + "resultLabel": "To attend or a warrant to issue", + "resultLineId": "92df62ca-9311-4894-8bfa-61c4e4ad5f1a", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "awi" + } + ], + "shadowListed": false, + "targetId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53" + } + ], + "savedTargets": [ + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "draftResult": "{}", + "hearingDay": "2025-09-19", + "hearingId": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "resultLines": [ + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "I", + "childResultLineIds": [ + "d6986f75-2404-4e8c-8250-d50b7d8e865c", + "352c8174-5140-4717-bc12-cb9ce554d68a" + ], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [ + { + "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", + "label": "Defendant excused attendance at next hearing", + "promptRef": "defendantExcusedAttendanceAtNextHearing", + "value": "true" + } + ], + "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", + "resultLabel": "Adjournment", + "resultLineId": "25082695-3304-4d5d-8176-b2e77fbd1236", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "a" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "18ccf48c-c76a-4e20-a777-4d37d4645003" + ], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "25082695-3304-4d5d-8176-b2e77fbd1236" + ], + "prompts": [], + "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "resultLabel": "Next hearing", + "resultLineId": "d6986f75-2404-4e8c-8250-d50b7d8e865c", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nexh" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "67c5877f-bcb0-430f-974c-334e4d565f05", + "c3f54f8b-bae1-4141-bdf9-7dc38aee602a" + ], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "25082695-3304-4d5d-8176-b2e77fbd1236" + ], + "prompts": [], + "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "resultLabel": "Adjournment reasons", + "resultLineId": "352c8174-5140-4717-bc12-cb9ce554d68a", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "adjr" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "d6986f75-2404-4e8c-8250-d50b7d8e865c" + ], + "prompts": [ + { + "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", + "label": "Date of hearing", + "promptRef": "HDATE", + "value": "2025-09-19" + }, + { + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "promptRef": "timeOfHearing", + "value": "10:00" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "promptRef": "hCHOUSEOrganisationName", + "value": "Lavender Hill Magistrates' Court" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "promptRef": "hCHOUSEAddress1", + "value": "176A Lavender Hill" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "promptRef": "hCHOUSEAddress2", + "value": "London" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "promptRef": "hCHOUSEPostCode", + "value": "SW11 1JU" + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "promptRef": "HCROOM", + "value": "Courtroom 03" + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "promptRef": "HTYPE", + "value": "Bail Application" + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "promptRef": "HEST", + "value": "20 MINUTES" + }, + { + "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", + "label": "Booking reference", + "promptRef": "bookingReference", + "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" + } + ], + "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "resultLabel": "Next hearing in magistrates' court", + "resultLineId": "18ccf48c-c76a-4e20-a777-4d37d4645003", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nhmc" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "I", + "childResultLineIds": [ + "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "prompts": [ + { + "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", + "label": "Defendant excused attendance at next hearing", + "promptRef": "defendantExcusedAttendanceAtNextHearing", + "value": "true" + } + ], + "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", + "resultLabel": "Adjournment", + "resultLineId": "626a1980-77be-4612-9afc-55f3c85d7381", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "a" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "11593003-7af6-4d2a-aa08-82281a4df15c" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "626a1980-77be-4612-9afc-55f3c85d7381" + ], + "prompts": [], + "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "resultLabel": "Next hearing", + "resultLineId": "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nexh" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "4b4dbc9f-7889-4433-9eab-5f631c103b81" + ], + "prompts": [ + { + "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", + "label": "Date of hearing", + "promptRef": "HDATE", + "value": "2025-09-19" + }, + { + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "promptRef": "timeOfHearing", + "value": "10:00" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "promptRef": "hCHOUSEOrganisationName", + "value": "Lavender Hill Magistrates' Court" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "promptRef": "hCHOUSEAddress1", + "value": "176A Lavender Hill" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "promptRef": "hCHOUSEAddress2", + "value": "London" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "promptRef": "hCHOUSEPostCode", + "value": "SW11 1JU" + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "promptRef": "HCROOM", + "value": "Courtroom 03" + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "promptRef": "HTYPE", + "value": "Bail Application" + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "promptRef": "HEST", + "value": "20 MINUTES" + }, + { + "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", + "label": "Booking reference", + "promptRef": "bookingReference", + "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" + } + ], + "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "resultLabel": "Next hearing in magistrates' court", + "resultLineId": "11593003-7af6-4d2a-aa08-82281a4df15c", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nhmc" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "67c5877f-bcb0-430f-974c-334e4d565f05" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "626a1980-77be-4612-9afc-55f3c85d7381" + ], + "prompts": [], + "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "resultLabel": "Adjournment reasons", + "resultLineId": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "adjr" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" + ], + "prompts": [], + "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", + "resultLabel": "To attend or a warrant to issue", + "resultLineId": "67c5877f-bcb0-430f-974c-334e4d565f05", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "awi" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "352c8174-5140-4717-bc12-cb9ce554d68a" + ], + "prompts": [], + "resultDefinitionId": "dbf9f59c-eee5-4285-8a1c-4fefe4508581", + "resultLabel": "To produce motor insurance documents or test certificates (not driving licence)", + "resultLineId": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "doc" + } + ], + "shadowListed": false, + "targetId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53" + } + ], + "defendantDetailsChanged": [], + "isReshare": true, + "newAmendmentResults": [ + { + "id": "25082695-3304-4d5d-8176-b2e77fbd1236", + "amendmentDateTime": "2025-09-19T16:01:21.012Z" + }, + { + "id": "d6986f75-2404-4e8c-8250-d50b7d8e865c", + "amendmentDateTime": "2025-09-19T16:01:21.012Z" + }, + { + "id": "18ccf48c-c76a-4e20-a777-4d37d4645003", + "amendmentDateTime": "2025-09-19T16:01:21.012Z" + }, + { + "id": "352c8174-5140-4717-bc12-cb9ce554d68a", + "amendmentDateTime": "2025-09-19T16:01:21.012Z" + }, + { + "id": "67c5877f-bcb0-430f-974c-334e4d565f05", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", + "amendmentDateTime": "2025-09-19T16:01:21.012Z" + }, + { + "id": "626a1980-77be-4612-9afc-55f3c85d7381", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "11593003-7af6-4d2a-aa08-82281a4df15c", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "67c5877f-bcb0-430f-974c-334e4d565f05", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "e548f1a1-fee8-46c0-bc47-201a26de69f6", + "amendmentDateTime": "2025-09-19T16:01:25.148Z" + }, + { + "id": "92df62ca-9311-4894-8bfa-61c4e4ad5f1a", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + } + ], + "hearingDay": "2025-09-19", + "version": 14 +} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json new file mode 100644 index 0000000000..3cdf7b3e1c --- /dev/null +++ b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json @@ -0,0 +1,741 @@ +{ + "hearingId": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", + "sharedTime": "2025-08-27T17:07:44.238Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + }, + "hearing": { + "courtCentre": { + "address": { + "address1": "176A Lavender Hill", + "address2": "London", + "address3": "", + "address4": "", + "address5": "", + "postcode": "SW11 1JU" + }, + "code": "B01LY00", + "courtHearingLocation": "B01LY01", + "id": "f8254db1-1683-483e-afb3-b87fde5a0a26", + "lja": { + "ljaCode": "2577", + "ljaName": "South West London Magistrates' Court" + }, + "name": "Lavender Hill Magistrates' Court", + "roomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", + "roomName": "Courtroom 01" + }, + "defendantAttendance": [ + { + "attendanceDays": [ + { + "attendanceType": "IN_PERSON", + "day": "2025-08-27" + } + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a" + } + ], + "hasSharedResults": true, + "hearingDays": [ + { + "courtCentreId": "f8254db1-1683-483e-afb3-b87fde5a0a26", + "courtRoomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", + "hasSharedResults": true, + "isCancelled": false, + "listedDurationMinutes": 20, + "listingSequence": 0, + "sittingDay": "2025-08-27T20:30:00.000Z" + } + ], + "hearingLanguage": "ENGLISH", + "id": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", + "isGroupProceedings": false, + "jurisdictionType": "MAGISTRATES", + "prosecutionCases": [ + { + "caseStatus": "ACTIVE", + "cpsOrganisation": "A30AB00", + "defendants": [ + { + "courtProceedingsInitiated": "2025-08-27T17:02:47.341Z", + "id": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isYouth": false, + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offences": [ + { + "arrestDate": "2020-12-01", + "chargeDate": "2020-12-02", + "count": 0, + "endorsableFlag": false, + "id": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "listingNumber": 1, + "modeOfTrial": "Either Way", + "offenceCode": "MD71521", + "offenceDateCode": 1, + "offenceDefinitionId": "734ad209-e52b-4df1-aca0-3b1c90e58ef7", + "offenceLegislation": "Contrary to section 5(2) of and Schedule 4 to the Misuse of Drugs Act 1971.", + "offenceTitle": "Possess a controlled drug of Class B - cannabis resin", + "orderIndex": 1, + "startDate": "2019-11-28", + "wording": "From 13th November 2018, an aggravated version of this offence applies where the offence is committed against an emergency worker acting in the exercise of his / her functions as such a worker, as per section 1 of the Assaults on emergency Workers (Offences) Act 2018; see offence wording document H19568." + } + ], + "personDefendant": { + "arrestSummonsNumber": "E28GC19102022001", + "bailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + }, + "driverNumber": "CRIME709136TC8GZ", + "personDetails": { + "address": { + "address1": "c", + "address2": "Hugh Parkway", + "address3": "Hermannside", + "address4": "Avon", + "postcode": "DA6 7ND" + }, + "contact": { + "home": "873-655-0683" + }, + "dateOfBirth": "2000-07-20", + "documentationLanguageNeeds": "ENGLISH", + "ethnicity": { + "observedEthnicityCode": "1", + "observedEthnicityDescription": "White", + "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", + "selfDefinedEthnicityCode": "W1", + "selfDefinedEthnicityDescription": "British", + "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" + }, + "firstName": "Casper", + "gender": "FEMALE", + "hearingLanguageNeeds": "ENGLISH", + "lastName": "Daugherty", + "title": "Mr" + }, + "policeBailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + } + }, + "prosecutionAuthorityReference": "E28GC19102022001", + "prosecutionCaseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23" + } + ], + "id": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "initiationCode": "C", + "originatingOrganisation": "0300000", + "prosecutionCaseIdentifier": { + "address": { + "address1": "Criminal Justice Department", + "address2": "Derbyshire Constabulary", + "address3": "Butterley Hall", + "address4": "Ripley", + "address5": "Derby", + "postcode": "DE5 3RS" + }, + "contact": { + "primaryEmail": "criminaldataderbyshire@derbyshire.police.uk" + }, + "majorCreditorCode": "PO30", + "prosecutionAuthorityCode": "DERPF", + "prosecutionAuthorityId": "bdc190e7-c939-37ca-be4b-9f615d6ef40e", + "prosecutionAuthorityName": "Derbyshire Police", + "prosecutionAuthorityOUCode": "0300000", + "caseURN": "70FF1811171" + } + } + ], + "type": { + "description": "First hearing", + "id": "4a0e892d-c0c5-3c51-95b8-704d8c781776" + } + }, + "variantDirectory": [], + "completedResultLinesStatus": { + "54498bd6-5474-4103-a9c3-b13a3371d338": { + "id": "54498bd6-5474-4103-a9c3-b13a3371d338", + "lastSharedDateTime": "2025-08-27T17:05:19.980Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "2f459f7c-5217-4cf7-8899-95e94c38b0fb": { + "id": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", + "lastSharedDateTime": "2025-08-27T17:05:19.980Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3": { + "id": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "lastSharedDateTime": "2025-08-27T17:05:19.980Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "24936f69-8fcd-492c-8a34-fb3bff18e8a2": { + "id": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", + "lastSharedDateTime": "2025-08-27T17:05:19.980Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "97bc9ae8-69f3-4271-82e1-02a5c402b15f": { + "id": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", + "lastSharedDateTime": "2025-08-27T17:05:19.980Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + } + }, + "targets": [ + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "draftResult": "{}", + "hearingDay": "2025-08-27", + "hearingId": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "resultLines": [ + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "F", + "childResultLineIds": [ + "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "97bc9ae8-69f3-4271-82e1-02a5c402b15f" + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "an officer of a provider of probation services" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [ + "2f459f7c-5217-4cf7-8899-95e94c38b0fb", + "bd01656f-b7f7-4c8b-9b5e-84c6d4794e5c" + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "24936f69-8fcd-492c-8a34-fb3bff18e8a2" + ], + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "97bc9ae8-69f3-4271-82e1-02a5c402b15f" + ], + "prompts": [ + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "promptRef": "medicalPractitionerPsychologist", + "value": "test" + }, + { + "id": "fb580537-9d36-4139-811b-77af09547b0d", + "label": "Care home / Hospital", + "promptRef": "careHomeHospital", + "value": "test" + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "promptRef": "periodOfTreatment", + "value": "2 Months" + } + ], + "resultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "resultLabel": "Mental health treatment non-residential patient", + "resultLineId": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "mhtrnr" + }, + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "I", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "24936f69-8fcd-492c-8a34-fb3bff18e8a2" + ], + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T17:06:57.511Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T17:07:41.900Z\"}]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor organisation name", + "promptRef": "electronicmonitoringcontractorOrganisationName", + "value": "G4S Scotland Monitoring Technologies & Services" + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 1", + "promptRef": "electronicmonitoringcontractorEmailAddress1", + "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" + }, + { + "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", + "label": "Continuation of electronic monitoring", + "promptRef": "continuationOfElectronicMonitoring", + "value": "true" + }, + { + "id": "f6ca6307-bdab-42d3-968b-44485824b535", + "label": "Are there any additional requirements as well?", + "promptRef": "areThereAnyAdditionalRequirementsAsWell", + "value": "false" + }, + { + "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", + "label": "Was an interpreter used?", + "promptRef": "wasAnInterpreterUsed", + "value": "false" + }, + { + "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "label": "Does the offender have any special needs?", + "promptRef": "doesTheOffenderHaveAnySpecialNeeds", + "value": "false" + } + ], + "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "resultLabel": "Notification of electronic monitoring order (requirement)", + "resultLineId": "54498bd6-5474-4103-a9c3-b13a3371d338", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nordrc" + }, + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T17:06:57.511Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T17:07:41.900Z\"}]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "97bc9ae8-69f3-4271-82e1-02a5c402b15f" + ], + "prompts": [ + { + "id": "72413aef-ecb9-4e9b-a143-31d1e9c11584", + "label": "Number of hours", + "promptRef": "numberOfHours", + "value": "10 Hours" + } + ], + "resultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "resultLabel": "Unpaid work. Requirement to be completed within 12 months.", + "resultLineId": "bd01656f-b7f7-4c8b-9b5e-84c6d4794e5c", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "upwr" + } + ], + "shadowListed": false, + "targetId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82" + } + ], + "savedTargets": [ + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "draftResult": "{}", + "hearingDay": "2025-08-27", + "hearingId": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "resultLines": [ + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "F", + "childResultLineIds": [ + "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "97bc9ae8-69f3-4271-82e1-02a5c402b15f" + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "an officer of a provider of probation services" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "I", + "childResultLineIds": [ + "54498bd6-5474-4103-a9c3-b13a3371d338" + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "24936f69-8fcd-492c-8a34-fb3bff18e8a2" + ], + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [ + "2f459f7c-5217-4cf7-8899-95e94c38b0fb" + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "24936f69-8fcd-492c-8a34-fb3bff18e8a2" + ], + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3" + ], + "prompts": [ + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor organisation name", + "promptRef": "electronicmonitoringcontractorOrganisationName", + "value": "G4S Scotland Monitoring Technologies & Services" + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 1", + "promptRef": "electronicmonitoringcontractorEmailAddress1", + "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" + }, + { + "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", + "label": "Continuation of electronic monitoring", + "promptRef": "continuationOfElectronicMonitoring", + "value": "true" + }, + { + "id": "f6ca6307-bdab-42d3-968b-44485824b535", + "label": "Are there any additional requirements as well?", + "promptRef": "areThereAnyAdditionalRequirementsAsWell", + "value": "false" + }, + { + "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", + "label": "Was an interpreter used?", + "promptRef": "wasAnInterpreterUsed", + "value": "false" + }, + { + "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "label": "Does the offender have any special needs?", + "promptRef": "doesTheOffenderHaveAnySpecialNeeds", + "value": "false" + } + ], + "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "resultLabel": "Notification of electronic monitoring order (requirement)", + "resultLineId": "54498bd6-5474-4103-a9c3-b13a3371d338", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nordrc" + }, + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "97bc9ae8-69f3-4271-82e1-02a5c402b15f" + ], + "prompts": [ + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "promptRef": "medicalPractitionerPsychologist", + "value": "test" + }, + { + "id": "fb580537-9d36-4139-811b-77af09547b0d", + "label": "Care home / Hospital", + "promptRef": "careHomeHospital", + "value": "test" + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "promptRef": "periodOfTreatment", + "value": "2 Months" + } + ], + "resultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "resultLabel": "Mental health treatment non-residential patient", + "resultLineId": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "mhtrnr" + } + ], + "shadowListed": false, + "targetId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82" + } + ], + "defendantDetailsChanged": [], + "isReshare": true, + "newAmendmentResults": [ + { + "id": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + }, + { + "id": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + }, + { + "id": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + }, + { + "id": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + }, + { + "id": "54498bd6-5474-4103-a9c3-b13a3371d338", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + }, + { + "id": "bd01656f-b7f7-4c8b-9b5e-84c6d4794e5c", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + } + ], + "hearingDay": "2025-08-27", + "version": 13 +} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json new file mode 100644 index 0000000000..dc09e22378 --- /dev/null +++ b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json @@ -0,0 +1,1633 @@ +{ + "hearingId": "e7471522-d1e4-4293-bddf-bb96c38c92ef", + "sharedTime": "2025-08-27T16:01:59.115Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + }, + "hearing": { + "courtCentre": { + "address": { + "address1": "176A Lavender Hill", + "address2": "London", + "address3": "", + "address4": "", + "address5": "", + "postcode": "SW11 1JU" + }, + "code": "B01LY00", + "courtHearingLocation": "B01LY01", + "id": "f8254db1-1683-483e-afb3-b87fde5a0a26", + "lja": { + "ljaCode": "2577", + "ljaName": "South West London Magistrates' Court" + }, + "name": "Lavender Hill Magistrates' Court", + "roomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", + "roomName": "Courtroom 01" + }, + "defendantAttendance": [ + { + "attendanceDays": [ + { + "attendanceType": "IN_PERSON", + "day": "2025-08-27" + } + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f" + } + ], + "hasSharedResults": true, + "hearingDays": [ + { + "courtCentreId": "f8254db1-1683-483e-afb3-b87fde5a0a26", + "courtRoomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", + "hasSharedResults": true, + "isCancelled": false, + "listedDurationMinutes": 20, + "listingSequence": 0, + "sittingDay": "2025-08-27T20:30:00.000Z" + } + ], + "hearingLanguage": "ENGLISH", + "id": "e7471522-d1e4-4293-bddf-bb96c38c92ef", + "isGroupProceedings": false, + "jurisdictionType": "MAGISTRATES", + "prosecutionCases": [ + { + "caseStatus": "ACTIVE", + "cpsOrganisation": "A30AB00", + "defendants": [ + { + "courtProceedingsInitiated": "2025-08-27T15:17:34.427Z", + "id": "686e785b-105e-41a5-b22a-a689843d051f", + "isYouth": false, + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offences": [ + { + "arrestDate": "2020-12-01", + "chargeDate": "2020-12-02", + "count": 0, + "endorsableFlag": false, + "id": "6910c878-e945-4177-b15f-f619b2bc7dae", + "listingNumber": 1, + "modeOfTrial": "Either Way", + "offenceCode": "MD71521", + "offenceDateCode": 1, + "offenceDefinitionId": "734ad209-e52b-4df1-aca0-3b1c90e58ef7", + "offenceLegislation": "Contrary to section 5(2) of and Schedule 4 to the Misuse of Drugs Act 1971.", + "offenceTitle": "Possess a controlled drug of Class B - cannabis resin", + "orderIndex": 1, + "startDate": "2019-11-28", + "wording": "From 13th November 2018, an aggravated version of this offence applies where the offence is committed against an emergency worker acting in the exercise of his / her functions as such a worker, as per section 1 of the Assaults on emergency Workers (Offences) Act 2018; see offence wording document H19568." + } + ], + "personDefendant": { + "arrestSummonsNumber": "E28GC19102022001", + "bailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + }, + "driverNumber": "CRIME709136TC8GZ", + "personDetails": { + "address": { + "address1": "c", + "address2": "Hugh Parkway", + "address3": "Hermannside", + "address4": "Avon", + "postcode": "DA6 7ND" + }, + "contact": { + "home": "873-655-0683" + }, + "dateOfBirth": "2000-07-20", + "documentationLanguageNeeds": "ENGLISH", + "ethnicity": { + "observedEthnicityCode": "1", + "observedEthnicityDescription": "White", + "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", + "selfDefinedEthnicityCode": "W1", + "selfDefinedEthnicityDescription": "British", + "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" + }, + "firstName": "Casper", + "gender": "FEMALE", + "hearingLanguageNeeds": "ENGLISH", + "lastName": "Daugherty", + "title": "Mr" + }, + "policeBailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + } + }, + "prosecutionAuthorityReference": "E28GC19102022001", + "prosecutionCaseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2" + } + ], + "id": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "initiationCode": "C", + "originatingOrganisation": "0300000", + "prosecutionCaseIdentifier": { + "address": { + "address1": "Criminal Justice Department", + "address2": "Derbyshire Constabulary", + "address3": "Butterley Hall", + "address4": "Ripley", + "address5": "Derby", + "postcode": "DE5 3RS" + }, + "contact": { + "primaryEmail": "criminaldataderbyshire@derbyshire.police.uk" + }, + "majorCreditorCode": "PO30", + "prosecutionAuthorityCode": "DERPF", + "prosecutionAuthorityId": "bdc190e7-c939-37ca-be4b-9f615d6ef40e", + "prosecutionAuthorityName": "Derbyshire Police", + "prosecutionAuthorityOUCode": "0300000", + "caseURN": "70FF1811170" + } + } + ], + "type": { + "description": "First hearing", + "id": "4a0e892d-c0c5-3c51-95b8-704d8c781776" + } + }, + "variantDirectory": [], + "completedResultLinesStatus": { + "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d": { + "id": "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d", + "lastSharedDateTime": "2025-08-27T15:20:01.219Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "3430f158-2e5f-4ebf-8f1e-9570f6f35270": { + "id": "3430f158-2e5f-4ebf-8f1e-9570f6f35270", + "lastSharedDateTime": "2025-08-27T15:20:01.219Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "b249a83e-e309-4bf0-96cd-7d3535bae70b": { + "id": "b249a83e-e309-4bf0-96cd-7d3535bae70b", + "lastSharedDateTime": "2025-08-27T15:20:01.219Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057": { + "id": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "bb58dbef-c2a1-4473-a34c-eb5570a188b1": { + "id": "bb58dbef-c2a1-4473-a34c-eb5570a188b1", + "lastSharedDateTime": "2025-08-27T15:47:40.318Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6": { + "id": "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6", + "lastSharedDateTime": "2025-08-27T15:47:40.318Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "0a9fd761-8dfd-4ea2-8bdd-35974021dc45": { + "id": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7": { + "id": "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7", + "lastSharedDateTime": "2025-08-27T15:20:01.219Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "bb477cfe-abbb-418c-b148-0ca9edfffc41": { + "id": "bb477cfe-abbb-418c-b148-0ca9edfffc41", + "lastSharedDateTime": "2025-08-27T15:47:40.318Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "cffb881f-9c55-423e-99f4-683d6da08a14": { + "id": "cffb881f-9c55-423e-99f4-683d6da08a14", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "32ae2771-7103-4558-aaec-2ca575dc74a7": { + "id": "32ae2771-7103-4558-aaec-2ca575dc74a7", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80": { + "id": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb": { + "id": "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb", + "lastSharedDateTime": "2025-08-27T15:20:01.219Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "220f8b93-1add-4de7-89d0-e505801a10d7": { + "id": "220f8b93-1add-4de7-89d0-e505801a10d7", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "8ac5068c-dc0c-4a28-a3ca-9365dd349f49": { + "id": "8ac5068c-dc0c-4a28-a3ca-9365dd349f49", + "lastSharedDateTime": "2025-08-27T15:47:40.318Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + } + }, + "targets": [ + { + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "draftResult": "{}", + "hearingDay": "2025-08-27", + "hearingId": "e7471522-d1e4-4293-bddf-bb96c38c92ef", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "resultLines": [ + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "a probation officer" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", + "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", + "promptRef": "persistentOffenderPreviouslyFined", + "value": "test" + }, + { + "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", + "label": "Judge reserves breach proceedings", + "promptRef": "judgeReservesBreachProceedings", + "value": "false" + }, + { + "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", + "label": "Direction that a failure to comply be dealt with by magistrates' court", + "promptRef": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", + "value": "false" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "b249a83e-e309-4bf0-96cd-7d3535bae70b", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "promptRef": "startDate", + "value": "2025-08-10" + }, + { + "id": "6dd7348a-29e8-4487-a956-ae07d7fe7668", + "label": "End date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Defendant to remain at", + "promptRef": "curfewAddressDetailsAndTimings", + "value": "test1" + }, + { + "id": "e5b96ed6-7ec0-464d-a698-62bc94a7f52f", + "label": "Details and timings", + "promptRef": "detailsAndTimings", + "value": "test2" + } + ], + "resultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "resultLabel": "Further curfew requirement made", + "resultLineId": "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "cura" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "I", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "3430f158-2e5f-4ebf-8f1e-9570f6f35270", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor organisation name", + "promptRef": "electronicmonitoringcontractorOrganisationName", + "value": "G4S Scotland Monitoring Technologies & Services" + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 1", + "promptRef": "electronicmonitoringcontractorEmailAddress1", + "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" + }, + { + "id": "5ce30920-b300-471c-8fd7-67f3a193476a", + "label": "First notification of electronic monitoring", + "promptRef": "firstNotificationOfElectronicMonitoring", + "value": "true" + }, + { + "id": "f6ca6307-bdab-42d3-968b-44485824b535", + "label": "Are there any additional requirements as well?", + "promptRef": "areThereAnyAdditionalRequirementsAsWell", + "value": "false" + }, + { + "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", + "label": "Was an interpreter used?", + "promptRef": "wasAnInterpreterUsed", + "value": "false" + }, + { + "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "label": "Does the offender have any special needs?", + "promptRef": "doesTheOffenderHaveAnySpecialNeeds", + "value": "false" + } + ], + "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "resultLabel": "Notification of electronic monitoring order (requirement)", + "resultLineId": "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nordrc" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [ + "cffb881f-9c55-423e-99f4-683d6da08a14", + "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "32ae2771-7103-4558-aaec-2ca575dc74a7" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", + "label": "Amount of fine", + "promptRef": "AOF", + "value": "200.00" + } + ], + "resultDefinitionId": "969f150c-cd05-46b0-9dd9-30891efcc766", + "resultLabel": "Fine", + "resultLineId": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "fo" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [ + { + "id": "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", + "label": "Reason for no collection order", + "promptRef": "reasonForNoCollectionOrder", + "value": "impracticable" + } + ], + "resultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", + "resultLabel": "No collection order reason", + "resultLineId": "cffb881f-9c55-423e-99f4-683d6da08a14", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nocollo" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [], + "resultDefinitionId": "cfa66730-f81c-4768-a36e-581791cb0270", + "resultLabel": "Has a collection order been made?", + "resultLineId": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "collom" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [ + "065c3bb0-94e4-453a-acf4-240c514c126c" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [], + "resultDefinitionId": "3d742a7e-37a6-453c-bb6f-5e023bb19453", + "resultLabel": "Payment Method", + "resultLineId": "32ae2771-7103-4558-aaec-2ca575dc74a7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "pm" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"},{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [], + "resultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "resultLabel": "Payment terms", + "resultLineId": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "payt" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"},{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "ee7d253a-c629-11e8-a355-529269fb1459", + "label": "Date to pay in full by", + "promptRef": "PBD", + "value": "2025-12-12" + } + ], + "resultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", + "resultLabel": "Pay by date", + "resultLineId": "220f8b93-1add-4de7-89d0-e505801a10d7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "pdate" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[{\"type\":\"DATE\",\"label\":\"End Date\",\"value\":\"2025-11-11\",\"promptId\":\"d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9\",\"promptRef\":\"endDate\"},{\"type\":\"FIXL\",\"label\":\"Responsible officer\",\"value\":\"the officer in charge of the Attendance Centre\",\"promptId\":\"29f5b3c7-8d15-4606-9dcf-23f32a21b5ef\",\"promptRef\":\"responsibleOfficer\"}]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [ + "bb58dbef-c2a1-4473-a34c-eb5570a188b1", + "bb477cfe-abbb-418c-b148-0ca9edfffc41" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-11-11" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "the officer in charge of the Attendance Centre" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "8ac5068c-dc0c-4a28-a3ca-9365dd349f49", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [ + "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" + ], + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "bb58dbef-c2a1-4473-a34c-eb5570a188b1", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "I", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" + ], + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "bb477cfe-abbb-418c-b148-0ca9edfffc41", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "bb58dbef-c2a1-4473-a34c-eb5570a188b1" + ], + "prompts": [ + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "promptRef": "underDirectionOf", + "value": "test" + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "promptRef": "periodOfTreatment", + "value": "2 Months" + } + ], + "resultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "resultLabel": "Alcohol treatment", + "resultLineId": "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "atr" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [ + "886f3820-ce92-4e35-8222-b13ee2849a83" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "32ae2771-7103-4558-aaec-2ca575dc74a7" + ], + "prompts": [], + "resultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", + "resultLabel": "Application made for benefit deductions", + "resultLineId": "065c3bb0-94e4-453a-acf4-240c514c126c", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "abdc" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "I", + "childResultLineIds": [ + "ace3472e-e554-419d-833d-58e475369166" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "065c3bb0-94e4-453a-acf4-240c514c126c" + ], + "prompts": [], + "resultDefinitionId": "4871697d-6dd1-4da2-8894-707e6b13c361", + "resultLabel": "Reserve Terms", + "resultLineId": "886f3820-ce92-4e35-8222-b13ee2849a83", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "rt" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "886f3820-ce92-4e35-8222-b13ee2849a83" + ], + "prompts": [ + { + "id": "c131cab0-5dd6-11e8-9c2d-fa7ae01bbebc", + "label": "Pay lump sum in full within", + "promptRef": "LSPW", + "value": "28 days" + } + ], + "resultDefinitionId": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", + "resultLabel": "Reserve Terms Lump sum", + "resultLineId": "ace3472e-e554-419d-833d-58e475369166", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "rlsum" + } + ], + "shadowListed": false, + "targetId": "6910c878-e945-4177-b15f-f619b2bc7dae" + } + ], + "savedTargets": [ + { + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "draftResult": "{}", + "hearingDay": "2025-08-27", + "hearingId": "e7471522-d1e4-4293-bddf-bb96c38c92ef", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "resultLines": [ + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "a probation officer" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", + "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", + "promptRef": "persistentOffenderPreviouslyFined", + "value": "test" + }, + { + "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", + "label": "Judge reserves breach proceedings", + "promptRef": "judgeReservesBreachProceedings", + "value": "false" + }, + { + "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", + "label": "Direction that a failure to comply be dealt with by magistrates' court", + "promptRef": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", + "value": "false" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "b249a83e-e309-4bf0-96cd-7d3535bae70b", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "promptRef": "startDate", + "value": "2025-08-10" + }, + { + "id": "6dd7348a-29e8-4487-a956-ae07d7fe7668", + "label": "End date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Defendant to remain at", + "promptRef": "curfewAddressDetailsAndTimings", + "value": "test1" + }, + { + "id": "e5b96ed6-7ec0-464d-a698-62bc94a7f52f", + "label": "Details and timings", + "promptRef": "detailsAndTimings", + "value": "test2" + } + ], + "resultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "resultLabel": "Further curfew requirement made", + "resultLineId": "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "cura" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "I", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "3430f158-2e5f-4ebf-8f1e-9570f6f35270", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor organisation name", + "promptRef": "electronicmonitoringcontractorOrganisationName", + "value": "G4S Scotland Monitoring Technologies & Services" + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 1", + "promptRef": "electronicmonitoringcontractorEmailAddress1", + "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" + }, + { + "id": "5ce30920-b300-471c-8fd7-67f3a193476a", + "label": "First notification of electronic monitoring", + "promptRef": "firstNotificationOfElectronicMonitoring", + "value": "true" + }, + { + "id": "f6ca6307-bdab-42d3-968b-44485824b535", + "label": "Are there any additional requirements as well?", + "promptRef": "areThereAnyAdditionalRequirementsAsWell", + "value": "false" + }, + { + "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", + "label": "Was an interpreter used?", + "promptRef": "wasAnInterpreterUsed", + "value": "false" + }, + { + "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "label": "Does the offender have any special needs?", + "promptRef": "doesTheOffenderHaveAnySpecialNeeds", + "value": "false" + } + ], + "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "resultLabel": "Notification of electronic monitoring order (requirement)", + "resultLineId": "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nordrc" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [ + "cffb881f-9c55-423e-99f4-683d6da08a14", + "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "32ae2771-7103-4558-aaec-2ca575dc74a7" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", + "label": "Amount of fine", + "promptRef": "AOF", + "value": "200.00" + } + ], + "resultDefinitionId": "969f150c-cd05-46b0-9dd9-30891efcc766", + "resultLabel": "Fine", + "resultLineId": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "fo" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [ + { + "id": "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", + "label": "Reason for no collection order", + "promptRef": "reasonForNoCollectionOrder", + "value": "impracticable" + } + ], + "resultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", + "resultLabel": "No collection order reason", + "resultLineId": "cffb881f-9c55-423e-99f4-683d6da08a14", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nocollo" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [], + "resultDefinitionId": "cfa66730-f81c-4768-a36e-581791cb0270", + "resultLabel": "Has a collection order been made?", + "resultLineId": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "collom" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [ + "0a9fd761-8dfd-4ea2-8bdd-35974021dc45" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [], + "resultDefinitionId": "3d742a7e-37a6-453c-bb6f-5e023bb19453", + "resultLabel": "Payment Method", + "resultLineId": "32ae2771-7103-4558-aaec-2ca575dc74a7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "pm" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [ + "220f8b93-1add-4de7-89d0-e505801a10d7" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "32ae2771-7103-4558-aaec-2ca575dc74a7" + ], + "prompts": [], + "resultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "resultLabel": "Payment terms", + "resultLineId": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "payt" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "0a9fd761-8dfd-4ea2-8bdd-35974021dc45" + ], + "prompts": [ + { + "id": "ee7d253a-c629-11e8-a355-529269fb1459", + "label": "Date to pay in full by", + "promptRef": "PBD", + "value": "2025-12-12" + } + ], + "resultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", + "resultLabel": "Pay by date", + "resultLineId": "220f8b93-1add-4de7-89d0-e505801a10d7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "pdate" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[{\"type\":\"DATE\",\"label\":\"End Date\",\"value\":\"2025-11-11\",\"promptId\":\"d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9\",\"promptRef\":\"endDate\"},{\"type\":\"FIXL\",\"label\":\"Responsible officer\",\"value\":\"the officer in charge of the Attendance Centre\",\"promptId\":\"29f5b3c7-8d15-4606-9dcf-23f32a21b5ef\",\"promptRef\":\"responsibleOfficer\"}],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [ + "bb58dbef-c2a1-4473-a34c-eb5570a188b1", + "bb477cfe-abbb-418c-b148-0ca9edfffc41" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-11-11" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "the officer in charge of the Attendance Centre" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "8ac5068c-dc0c-4a28-a3ca-9365dd349f49", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [ + "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" + ], + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "bb58dbef-c2a1-4473-a34c-eb5570a188b1", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "I", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" + ], + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "bb477cfe-abbb-418c-b148-0ca9edfffc41", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "bb58dbef-c2a1-4473-a34c-eb5570a188b1" + ], + "prompts": [ + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "promptRef": "underDirectionOf", + "value": "test" + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "promptRef": "periodOfTreatment", + "value": "2 Months" + } + ], + "resultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "resultLabel": "Alcohol treatment", + "resultLineId": "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "atr" + } + ], + "shadowListed": false, + "targetId": "6910c878-e945-4177-b15f-f619b2bc7dae" + } + ], + "defendantDetailsChanged": [], + "isReshare": true, + "newAmendmentResults": [ + { + "id": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "cffb881f-9c55-423e-99f4-683d6da08a14", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "32ae2771-7103-4558-aaec-2ca575dc74a7", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "220f8b93-1add-4de7-89d0-e505801a10d7", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "065c3bb0-94e4-453a-acf4-240c514c126c", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "886f3820-ce92-4e35-8222-b13ee2849a83", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "ace3472e-e554-419d-833d-58e475369166", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + } + ], + "hearingDay": "2025-08-27", + "version": 37 +} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json b/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json index 0151a921c3..64f88b39bd 100644 --- a/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json +++ b/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json @@ -22,7 +22,6 @@ "Review" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "C", @@ -39,7 +38,6 @@ "financial": "N", "reference": "hCHOUSEOrganisationName", "userGroups": [ - ], "min": "", "max": "", @@ -63,7 +61,6 @@ "financial": "N", "reference": "hCHOUSEAddress1", "userGroups": [ - ], "min": "", "max": "", @@ -87,7 +84,6 @@ "financial": "N", "reference": "hCHOUSEAddress2", "userGroups": [ - ], "min": "", "max": "", @@ -111,7 +107,6 @@ "financial": "N", "reference": "hCHOUSEAddress3", "userGroups": [ - ], "min": "", "max": "", @@ -135,7 +130,6 @@ "financial": "N", "reference": "hCHOUSEAddress4", "userGroups": [ - ], "min": "", "max": "", @@ -159,7 +153,6 @@ "financial": "N", "reference": "hCHOUSEAddress5", "userGroups": [ - ], "min": "", "max": "", @@ -183,7 +176,6 @@ "financial": "N", "reference": "hCHOUSEPostCode", "userGroups": [ - ], "min": "", "max": "", @@ -207,7 +199,6 @@ "financial": "N", "reference": "hCHOUSEEmailAddress1", "userGroups": [ - ], "min": "", "max": "", @@ -231,7 +222,6 @@ "financial": "N", "reference": "hCHOUSEEmailAddress2", "userGroups": [ - ], "min": "", "max": "", @@ -256,7 +246,6 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -265,20 +254,23 @@ "associatedWithReferenceData": false }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null }, { "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", @@ -290,7 +282,6 @@ "financial": "N", "reference": "timeOfHearing", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -308,7 +299,6 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ - ], "min": "1", "max": "99", @@ -329,7 +319,6 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ - ], "min": "1", "max": "50", @@ -349,7 +338,6 @@ "financial": "N", "reference": "defendantToAttendReview", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -419,7 +407,6 @@ "Years" ], "userGroups": [ - ], "min": "1", "max": "1", @@ -444,7 +431,6 @@ "Months" ], "userGroups": [ - ], "min": "1", "max": "1", @@ -469,7 +455,6 @@ "Attend" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -490,7 +475,6 @@ "Review" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "C", @@ -507,7 +491,6 @@ "financial": "N", "reference": "courthousenameOrganisationName", "userGroups": [ - ], "min": "1", "max": "100", @@ -531,7 +514,6 @@ "financial": "N", "reference": "courthousenameAddress1", "userGroups": [ - ], "min": "1", "max": "100", @@ -555,7 +537,6 @@ "financial": "N", "reference": "courthousenameAddress2", "userGroups": [ - ], "min": "1", "max": "100", @@ -579,7 +560,6 @@ "financial": "N", "reference": "courthousenameAddress3", "userGroups": [ - ], "min": "1", "max": "100", @@ -603,7 +583,6 @@ "financial": "N", "reference": "courthousenameAddress4", "userGroups": [ - ], "min": "1", "max": "100", @@ -627,7 +606,6 @@ "financial": "N", "reference": "courthousenameAddress5", "userGroups": [ - ], "min": "1", "max": "100", @@ -651,7 +629,6 @@ "financial": "N", "reference": "courthousenamePostCode", "userGroups": [ - ], "min": "1", "max": "100", @@ -675,7 +652,6 @@ "financial": "N", "reference": "courthousenameEmailAddress1", "userGroups": [ - ], "min": "1", "max": "100", @@ -699,7 +675,6 @@ "financial": "N", "reference": "courthousenameEmailAddress2", "userGroups": [ - ], "min": "1", "max": "100", @@ -724,7 +699,6 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ - ], "min": "1", "max": "70", @@ -744,7 +718,6 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ - ], "min": "1", "max": "99", @@ -765,7 +738,6 @@ "financial": "N", "reference": "underDirectionOf", "userGroups": [ - ], "min": "1", "max": "50", @@ -785,7 +757,6 @@ "financial": "N", "reference": "treatmentPlace", "userGroups": [ - ], "min": "1", "max": "200", @@ -805,7 +776,6 @@ "financial": "N", "reference": "firstReviewTime", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -823,7 +793,6 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -832,22 +801,24 @@ "associatedWithReferenceData": false }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null } - ], "welshLabel": "Adsefydlu defnyddiwr cyffuriau - preswyl gydag adolygiad", "financial": "N", @@ -910,7 +881,6 @@ "Years" ], "userGroups": [ - ], "min": "1", "max": "1", @@ -935,7 +905,6 @@ "Months" ], "userGroups": [ - ], "min": "1", "max": "1", @@ -960,7 +929,6 @@ "Attend" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -981,7 +949,6 @@ "Review" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "C", @@ -998,7 +965,6 @@ "financial": "N", "reference": "courthousenameOrganisationName", "userGroups": [ - ], "min": "1", "max": "100", @@ -1022,7 +988,6 @@ "financial": "N", "reference": "courthousenameAddress1", "userGroups": [ - ], "min": "1", "max": "100", @@ -1046,7 +1011,6 @@ "financial": "N", "reference": "courthousenameAddress2", "userGroups": [ - ], "min": "1", "max": "100", @@ -1070,7 +1034,6 @@ "financial": "N", "reference": "courthousenameAddress3", "userGroups": [ - ], "min": "1", "max": "100", @@ -1094,7 +1057,6 @@ "financial": "N", "reference": "courthousenameAddress4", "userGroups": [ - ], "min": "1", "max": "100", @@ -1118,7 +1080,6 @@ "financial": "N", "reference": "courthousenameAddress5", "userGroups": [ - ], "min": "1", "max": "100", @@ -1142,7 +1103,6 @@ "financial": "N", "reference": "courthousenamePostCode", "userGroups": [ - ], "min": "1", "max": "100", @@ -1166,7 +1126,6 @@ "financial": "N", "reference": "courthousenameEmailAddress1", "userGroups": [ - ], "min": "1", "max": "100", @@ -1190,7 +1149,6 @@ "financial": "N", "reference": "courthousenameEmailAddress2", "userGroups": [ - ], "min": "1", "max": "100", @@ -1215,7 +1173,6 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ - ], "min": "1", "max": "70", @@ -1235,7 +1192,6 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ - ], "min": "1", "max": "99", @@ -1256,7 +1212,6 @@ "financial": "N", "reference": "underDirectionOf", "userGroups": [ - ], "min": "1", "max": "50", @@ -1276,7 +1231,6 @@ "financial": "N", "reference": "treatmentPlace", "userGroups": [ - ], "min": "1", "max": "200", @@ -1296,7 +1250,6 @@ "financial": "N", "reference": "treatmentIntervals", "userGroups": [ - ], "min": "1", "max": "100", @@ -1316,7 +1269,6 @@ "financial": "N", "reference": "additionalInformation", "userGroups": [ - ], "min": "1", "max": "150", @@ -1336,7 +1288,6 @@ "financial": "N", "reference": "firstReviewTime", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -1354,7 +1305,6 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -1363,20 +1313,23 @@ "associatedWithReferenceData": false }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null } ], "welshLabel": "Adsefydlu defnyddiwr cyffuriau - dibreswyl gydag adolygiad", @@ -1424,7 +1377,6 @@ "Review" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "C", @@ -1441,7 +1393,6 @@ "financial": "N", "reference": "hCHOUSEOrganisationName", "userGroups": [ - ], "min": "", "max": "", @@ -1465,7 +1416,6 @@ "financial": "N", "reference": "hCHOUSEAddress1", "userGroups": [ - ], "min": "", "max": "", @@ -1489,7 +1439,6 @@ "financial": "N", "reference": "hCHOUSEAddress2", "userGroups": [ - ], "min": "", "max": "", @@ -1513,7 +1462,6 @@ "financial": "N", "reference": "hCHOUSEAddress3", "userGroups": [ - ], "min": "", "max": "", @@ -1537,7 +1485,6 @@ "financial": "N", "reference": "hCHOUSEAddress4", "userGroups": [ - ], "min": "", "max": "", @@ -1561,7 +1508,6 @@ "financial": "N", "reference": "hCHOUSEAddress5", "userGroups": [ - ], "min": "", "max": "", @@ -1585,7 +1531,6 @@ "financial": "N", "reference": "hCHOUSEPostCode", "userGroups": [ - ], "min": "", "max": "", @@ -1609,7 +1554,6 @@ "financial": "N", "reference": "hCHOUSEEmailAddress1", "userGroups": [ - ], "min": "", "max": "", @@ -1633,7 +1577,6 @@ "financial": "N", "reference": "hCHOUSEEmailAddress2", "userGroups": [ - ], "min": "", "max": "", @@ -1658,7 +1601,6 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -1667,20 +1609,23 @@ "associatedWithReferenceData": false }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null }, { "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", @@ -1692,7 +1637,6 @@ "financial": "N", "reference": "timeOfHearing", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -1710,7 +1654,6 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ - ], "min": "1", "max": "99", @@ -1731,7 +1674,6 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ - ], "min": "1", "max": "50", @@ -1751,7 +1693,6 @@ "financial": "N", "reference": "defendantToAttendReview", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -1784,34171 +1725,63524 @@ "isBooleanResult": false }, { - "id" : "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", - "label" : "Adjournment reason: Unexpected circumstances meant that the case could not be heard", - "shortCode" : "UNF", - "level" : "O", - "rank" : 11100, - "canBeSubjectOfBreach" : true, - "canBeSubjectOfVariation" : true, - "wordGroups" : [ { - "wordGroup" : [ "unexpected", "circumstances" ] - }, { - "wordGroup" : [ "adjournment", "unforseen" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros ohirio: Gwrthodwyd gohirio’r achos", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "KU", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "alwaysPublished" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", - "label" : "Adjournment reason: Insufficient court time to hear the case", - "shortCode" : "INSUF", - "level" : "O", - "rank" : 11200, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "insufficient", "Time" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio: Nid oedd digon o amser i wrando'r achos", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "KQ", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, - { - "id" : "9fd6a4ef-1055-4e54-b035-f1130a524388", - "label" : "Adjournment reason: Non-standard reason", - "shortCode" : "NSR", - "level" : "O", - "rank" : 11300, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "reason", "other" ] - }, { - "wordGroup" : [ "adjournment", "reason", "non-standard" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "28a271c5-aff0-4e60-b599-88e441960699", - "label" : "Reason for adjournment", - "welshLabel" : "Rheswm dros ohirio", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "NSR", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros ohirio: Rheswm ansafonol", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, - { - "id" : "29e02fa1-42ce-4eec-914e-e62508397a16", - "label" : "No compensation reason", - "shortCode" : "NCR", - "level" : "O", - "rank" : 11400, - "wordGroups" : [ { - "wordGroup" : [ "compensation", "no" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e263de82-47ca-433a-bb41-cad2e1c5bb72", - "label" : "Reason for no compensation", - "welshLabel" : "Rheswm dros beidio â rhoi iawndal", - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "5f29ba24-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : "reasonForNoCompensation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros beidio â dyfarnu iawndal", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, - { - "id" : "baf94928-04ae-4609-8e96-efc9f081b2be", - "label" : "No order for costs", - "shortCode" : "NCOSTS", - "level" : "O", - "rank" : 11500, - "wordGroups" : [ { - "wordGroup" : [ "no", "Costs" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "be2a46db-709d-4e0d-9b63-aeb831564c1d", - "label" : "Reason for no costs", - "welshLabel" : "", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "reasonForNoCosts", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "52770cf4-41a8-4c04-a41c-2b12a95cb8dd", - "label" : "Defendant has died", - "shortCode" : "dead", - "level" : "O", - "rank" : 11600, - "wordGroups" : [ { - "wordGroup" : [ "dead" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2065", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8f9539a0-bd05-4002-9146-d55920cbab9e", - "label" : "Defendant committed suicide", - "shortCode" : "deads", - "level" : "O", - "rank" : 11700, - "wordGroups" : [ { - "wordGroup" : [ "deads" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2503", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4632d712-6cf7-4929-af0d-9bf4a4436ee3", - "label" : "The Court did not proceed with the trial in the defendant's absence", - "shortCode" : "NOTRIAL", - "level" : "O", - "rank" : 11800, - "wordGroups" : [ { - "wordGroup" : [ "trial", "adjourned" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "reason", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "88fd00c6-d63c-4f4e-9a86-4628856a9557", - "label" : "No evidence offered - verdict of not guilty by order of Judge", - "shortCode" : "NGJ", - "level" : "O", - "rank" : 11900, - "wordGroups" : [ { - "wordGroup" : [ "judge", "not", "guilty" ] - }, { - "wordGroup" : [ "prosecution", "no", "evidence" ] - }, { - "wordGroup" : [ "prosecution", "neo" ] - }, { - "wordGroup" : [ "no", "evidence" ] - }, { - "wordGroup" : [ "not", "guilty" ] - }, { - "wordGroup" : [ "NGJ" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2050", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "14d66587-8fbe-424f-a369-b1144f1684e3", - "label" : "Dismissed", - "shortCode" : "DISM", - "level" : "O", - "rank" : 12000, - "wordGroups" : [ { - "wordGroup" : [ "DISM" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2006", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "56e808c5-cd8f-4882-b8e2-c2f615e09c11", - "label" : "Criminal behaviour order", - "shortCode" : "CRIMBO", - "level" : "O", - "rank" : 12100, - "wordGroups" : [ { - "wordGroup" : [ "criminal", "behaviour", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6c3f5d58-d206-46ca-a652-23ee198b371a", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c3f5d58-d206-46ca-a652-23ee198b371a", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c3f5d58-d206-46ca-a652-23ee198b371a", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label" : "Start date of order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4461f7f5-f984-4b6d-9f60-3084e5071382", - "label" : "Requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label" : "Supervisor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label" : "Supervisor's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1177", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c2fa19f6-dabf-43fc-9f12-2347fc9b8cc5", - "label" : "Interim criminal behaviour order", - "shortCode" : "CRIMBI", - "level" : "O", - "rank" : 12200, - "wordGroups" : [ { - "wordGroup" : [ "interim", "criminal", "behaviour", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4461f7f5-f984-4b6d-9f60-3084e5071382", - "label" : "Requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label" : "Supervisor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label" : "Supervisor's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1178", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3cf4b38f-004d-4eb4-8fdb-5d285c11ab47", - "label" : "Criminal behaviour order variation", - "shortCode" : "CRIMBV", - "level" : "O", - "rank" : 12300, - "wordGroups" : [ { - "wordGroup" : [ "criminal", "behaviour", "Order", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "84f70920-235c-4747-a0d5-545a2f761b37", - "label" : "Name of person on criminal behaviour order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3e9e09fd-f512-4cd1-95ad-f4ddd06a0d41", - "label" : "Date original criminal behaviour order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d2b6a2eb-53e5-440b-991d-65ee4ef806a0", - "label" : "Requirements (added, varied or removed)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label" : "Supervisor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label" : "Supervisor's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd92da3a-193a-4b87-98ae-b8622f4148ce", - "label" : "Prohibitions (added, varied or removed)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d2ed5c6c-2ebc-421b-834b-6f66ecb90e4e", - "label" : "Is the person on the original order a youth?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b509d44-fb0e-463f-8b7f-675cb6903265", - "label" : "Parent's name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", - "label" : "Parent's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1177", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "23d744a1-d71c-4849-b6a3-b736d71ea438", - "label" : "No video link reason", - "shortCode" : "NOVID", - "level" : "O", - "rank" : 12400, - "wordGroups" : [ { - "wordGroup" : [ "no", "video", "link" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "318c9eb2-cf3c-4592-a353-1b2166c15f81", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7959646e-ce77-4862-b6fe-5fb3a953c427", - "label" : "Order discharged", - "shortCode" : "ODIS", - "level" : "O", - "rank" : 12500, - "wordGroups" : [ { - "wordGroup" : [ "Order", "discharged" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "27c32341-8aed-4ccc-8894-7adb6f5eaf55", - "label" : "Type of order discharged", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "44554ccd-9975-4e36-b06d-8f58aebe788c", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47f34fca-6355-4612-881a-07a2121b86ba", - "label" : "Supervising court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "204fc6b8-d6c9-4fb8-acd0-47d23c087625", - "label" : "No surcharge", - "shortCode" : "NOVS", - "level" : "D", - "rank" : 13100, - "wordGroups" : [ { - "wordGroup" : [ "no", "surcharge" ] - }, { - "wordGroup" : [ "no", "vs" ] - }, { - "wordGroup" : [ "no", "victim", "surcharge" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "042742a1-8d47-4558-9b3e-9f34b358e034", - "label" : "Reason for no surcharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9fdeff80-84c8-4dc0-8fcf-f8805d8e57ee", - "label" : "Surcharge reduced", - "shortCode" : "VSR", - "level" : "D", - "rank" : 13200, - "wordGroups" : [ { - "wordGroup" : [ "vs", "reduced" ] - }, { - "wordGroup" : [ "surcharge", "reduced" ] - }, { - "wordGroup" : [ "victim", "surcharge", "reduced" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "910d207e-29ac-4891-b0f8-4d0ade9ac224", - "label" : "Reason for reducing surcharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c3179e14-8754-4496-9190-3a9e47da0af7", - "label" : "Football banning order", - "shortCode" : "FBO", - "level" : "O", - "rank" : 13300, - "wordGroups" : [ { - "wordGroup" : [ "FBO" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", - "label" : "Police station name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "192c8ce6-57dd-463a-b588-bb7189f4c4c1", - "label" : "Police station address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "243f72af-801e-409e-b807-8878719d832a", - "label" : "Report within 5 days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", - "label" : "Reasons for making the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "164d3778-bb74-4bdb-b006-8df4cd05a905", - "label" : "Additional requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", - "label" : "Prison address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3068", - "adjournment" : false, - "convicted" : true, - "qualifier" : "FA", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "adf86eb7-2eb7-4575-bab5-63001eb23382", - "label" : "Football banning order terminated", - "shortCode" : "FBOT", - "level" : "O", - "rank" : 13400, - "wordGroups" : [ { - "wordGroup" : [ "FBO", "terminated" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", - "label" : "End date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", - "label" : "Prison address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "73265700-cb68-4a88-86a8-53fcc6f5d6ba", - "label" : "Football banning order varied", - "shortCode" : "FBOV", - "level" : "O", - "rank" : 13500, - "wordGroups" : [ { - "wordGroup" : [ "FBO", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f4ffbd41-eea5-4465-b910-b1eaf033d30e", - "label" : "Details of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "297a984c-71fa-436e-b9bd-068255e6d530", - "label" : "Original court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", - "label" : "Prison address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fefede3e-436b-4cd6-a967-7c63d1cb4bce", - "label" : "Football banning order termination refused", - "shortCode" : "FBOTR", - "level" : "O", - "rank" : 13600, - "wordGroups" : [ { - "wordGroup" : [ "fbo. terminated", "refused" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d14c2611-0b4c-478c-a1ec-53bf44bcaa1f", - "label" : "Football banning order arising from offence outside England and Wales", - "shortCode" : "FBOI", - "level" : "O", - "rank" : 13700, - "wordGroups" : [ { - "wordGroup" : [ "FBO", "England" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", - "label" : "Police station name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "192c8ce6-57dd-463a-b588-bb7189f4c4c1", - "label" : "Police station address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "243f72af-801e-409e-b807-8878719d832a", - "label" : "Report within 5 days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", - "label" : "Reasons for making the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "164d3778-bb74-4bdb-b006-8df4cd05a905", - "label" : "Additional requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3068", - "adjournment" : false, - "convicted" : false, - "qualifier" : "FB", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5e272729-a76b-485c-8784-bddef53f700e", - "label" : "No football banning order", - "shortCode" : "NFBO", - "level" : "O", - "rank" : 13800, - "wordGroups" : [ { - "wordGroup" : [ "no", "FBO" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "46afed44-cb35-43bb-9f7e-78c4d9be298f", - "label" : "Reasons for not making a football banning order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c4705a6b-7914-4fc8-bf1e-3553ff1cccf5", - "label" : "Declaration of relevance relating to football matches", - "shortCode" : "DRF", - "level" : "O", - "rank" : 13900, - "wordGroups" : [ { - "wordGroup" : [ "declaration", "football", "match" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e44817e6-cc08-464f-8c21-1f3ba0af562d", - "label" : "Type of football match", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "5ba4aaa6-04d9-4495-bcad-6d1006209ea6", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3099", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e2f51977-ea53-4ac8-8951-75975da06bc5", - "label" : "Bind over to keep the peace", - "shortCode" : "BOCOND", - "level" : "O", - "rank" : 14000, - "wordGroups" : [ { - "wordGroup" : [ "bind", "over" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label" : "Amount of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a8ca6ddf-6dbd-4cc8-9699-7902297157df", - "label" : "Conduct or activity to be refrained from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "516dbb2c-d9e1-4186-b458-e3b6f798db58", - "label" : "To keep the peace especially towards - name of person", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1016", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "label" : "Community requirement: Drug rehabilitation non-residential", - "shortCode" : "DRWR", - "level" : "O", - "rank" : 2100, - "wordGroups" : [ { - "wordGroup" : [ "Drug", "Rehabilitation", "Non-residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ - - { - "id" : "f092fe58-2297-4d10-818a-8b303692ac39", - "label" : "Under direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "underDirectionOf", - "courtExtract" : "Y", - "durationSequence" : null - }, - { - "id" : "10028ef8-efc7-4a40-9703-1e121a6fbc84", - "label" : "Period to provide samples", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodToProvideSamples", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0b74fb53-acb7-42db-b9b6-976ce74b59b5", - "label" : "Treatment place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "treatmentPlace", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6aaf3645-0806-4917-ada5-b019c6a606c5", - "label" : "Treatment intervals", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3109", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BS", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "76c0d994-decd-4a2a-93ca-958f4595181e", - "label" : "Bind over to come up for judgment when called on", - "shortCode" : "BOJ", - "level" : "O", - "rank" : 14100, - "wordGroups" : [ { - "wordGroup" : [ "bind", "over", "judgement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label" : "Amount of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "407bf65d-8be7-4996-b7e7-91d0ae7dfa75", - "label" : "Conditions of bind over to be complied with", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1016", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2c2bc8f2-4dd5-4670-b391-bdaca5b3e4f0", - "label" : "Bind over witness to keep the peace", - "shortCode" : "BOW", - "level" : "O", - "rank" : 14200, - "wordGroups" : [ { - "wordGroup" : [ "bind", "over", "witness", "peace" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", - "label" : "Witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e23c9dab-1dc4-4522-86db-2bcd29121134", - "label" : "Witness address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label" : "Amount of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a8ca6ddf-6dbd-4cc8-9699-7902297157df", - "label" : "Conduct or activity to be refrained from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "516dbb2c-d9e1-4186-b458-e3b6f798db58", - "label" : "To keep the peace especially towards - name of person", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1016", - "adjournment" : false, - "convicted" : false, - "qualifier" : "W", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "92a97bb2-adfe-42bd-a705-6f538b3145f9", - "label" : "Sexual harm prevention order for period", - "shortCode" : "shopp", - "level" : "O", - "rank" : 14300, - "wordGroups" : [ { - "wordGroup" : [ "shopp" ] - }, { - "wordGroup" : [ "sexual", "harm", "prevention", "Order", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4aee5e0c-959b-4ed9-b589-71c1fe28134d", - "label" : "Type of order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1179", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7fd3992e-c1dd-4fd1-abbc-a816f1250bae", - "label" : "Sexual harm prevention order until further order", - "shortCode" : "SHOPF", - "level" : "O", - "rank" : 14400, - "wordGroups" : [ { - "wordGroup" : [ "sexual", "harm", "prevention", "Order", "Further" ] - }, { - "wordGroup" : [ "shopo", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4aee5e0c-959b-4ed9-b589-71c1fe28134d", - "label" : "Type of order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1179", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2b418a7d-a48d-4c75-a912-8112f1010ab9", - "label" : "Sexual harm prevention order until end date", - "shortCode" : "SHOPE", - "level" : "O", - "rank" : 14500, - "wordGroups" : [ { - "wordGroup" : [ "shopo", "until" ] - }, { - "wordGroup" : [ "sexual", "harm", "prevention", "Order", "until" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4aee5e0c-959b-4ed9-b589-71c1fe28134d", - "label" : "Type of order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "eea72b76-275c-4eef-9021-a99c59d088cc", - "label" : "End date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "Date", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1179", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "69cf9e2e-f117-4311-952d-e286af84c3be", - "label" : "Sexual harm prevention order varied", - "shortCode" : "SHOPV", - "level" : "O", - "rank" : 14600, - "wordGroups" : [ { - "wordGroup" : [ "shopo", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "671e3bd7-0c84-461c-aada-7c73d6fad03b", - "label" : "Type of sexual harm prevention order varied", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label" : "Date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "Date", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94514093-d8de-4400-93de-9e3366f5af8c", - "label" : "Name of defendant on original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label" : "Name of court that made the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2def6a67-bdb7-4596-8544-53ebb5811880", - "label" : "Variation of prohibitions (other than foreign)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f0b5c085-202d-4b96-9409-959f950c6bf3", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label" : "Start date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03501a9a-2668-4587-acc1-b8e880f7c3f4", - "label" : "Parent's name (deft is a youth)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", - "label" : "Parent's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dc954e27-f35a-46e2-98a2-9e0ca1fbabb4", - "label" : "Total suspended detention", - "shortCode" : "STDET", - "level" : "D", - "rank" : 14700, - "wordGroups" : [ { - "wordGroup" : [ "Total", "SSO", "detention" ] - }, { - "wordGroup" : [ "STDET" ] - }, { - "wordGroup" : [ "Total", "suspended", "detention" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "699055ee-d41c-4311-91bd-b8ca38aaca84", - "label" : "Suspended period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 2 - }, { - "id" : "699055ee-d41c-4311-91bd-b8ca38aaca84", - "label" : "Suspended period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 2 - }, { - "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label" : "Supervision period", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label" : "Supervision period", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label" : "Supervision period", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label" : "Supervision period", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06a61bd3-ca3e-4871-b83e-000dfb6289e5", - "label" : "Judge reserves review hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : [ "Review" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1300, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc01db7c-d110-4d3c-9efa-d05a72742ddb", - "label" : "Review frequency", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc256fd1-dedd-43ab-8882-f9fbb448a62d", - "label" : "First review date", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", - "label" : "Time of hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dab2947a-9b21-450e-8fd1-d82ea3e0f42f", - "label" : "Courthouse", - "welshLabel" : "Adeilad llys", - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "335094b9-94ab-44de-b43e-8fcbc7600008", - "label" : "Courthouse", - "welshLabel" : "Adeilad llys", - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d6ac217f-6864-416e-89cf-3f31e1885cfc", - "label" : "Courtroom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ccb76b76-b883-41c3-bd5c-7723531a8909", - "label" : "Defendant to attend review", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6d72674d-1ca6-490a-a1c4-0a6404169f66", - "label" : "Disqualification from involvement as a director etc of a company", - "shortCode" : "DCO", - "level" : "O", - "rank" : 14800, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "director" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label" : "Duration of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label" : "Duration of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e7e298e3-4182-4e0a-b7d4-75f223a36549", - "label" : "Specify Section of Company Directors Disqualification Act 1986", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "350608f2-3deb-4c23-9643-1c7ad33a09f7", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "89cea994-e319-4a90-8899-8a4fd03e3afa", - "label" : "Disqualification start date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "21aadaea-89ef-424c-8606-b5d74811aeaf", - "label" : "Section 243 exemption applies", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0491c27e-7fdb-4e93-9358-620332372f25", - "label" : "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3002", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5fed2cbd-0d51-4848-8f9b-f0e574e9b0e7", - "label" : "Disqualification against a body corporate / firm", - "shortCode" : "DCOB", - "level" : "O", - "rank" : 14900, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "firm" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label" : "Duration of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label" : "Duration of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e7e298e3-4182-4e0a-b7d4-75f223a36549", - "label" : "Specify Section of Company Directors Disqualification Act 1986", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "350608f2-3deb-4c23-9643-1c7ad33a09f7", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "89cea994-e319-4a90-8899-8a4fd03e3afa", - "label" : "Disqualification start date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "543324ec-da1d-456b-8d9f-32300f8fe371", - "label" : "Company registration number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "64a61a50-ba04-46f8-b624-09494db4bb5a", - "label" : "Country of registration", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0491c27e-7fdb-4e93-9358-620332372f25", - "label" : "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bcf1b451-af1e-4603-9605-586310d0e61e", - "label" : "Community requirement: Drug rehabilitation residential", - "shortCode" : "DRRWR", - "level" : "O", - "rank" : 2200, - "wordGroups" : [ { - "wordGroup" : [ "Drug", "Rehabilitation", "Residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "10028ef8-efc7-4a40-9703-1e121a6fbc84", - "label" : "Period to provide samples", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "10028ef8-efc7-4a40-9703-1e121a6fbc84", - "label" : "Period to provide samples", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f092fe58-2297-4d10-818a-8b303692ac39", - "label" : "Under direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0b74fb53-acb7-42db-b9b6-976ce74b59b5", - "label" : "Treatment place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3109", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ccfc452e-ebe4-4cd7-b8a0-4f90768447b4", - "label" : "Discretionary with ordinary disqualification", - "shortCode" : "DDD", - "level" : "O", - "rank" : 15000, - "wordGroups" : [ { - "wordGroup" : [ "DDD" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", - "label" : "Starting from date (date of interim disqualification)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3071", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "a67b959b-b2e6-4741-b758-d7ef27f973a7", - "label" : "Discretionary with ordinary disqualification for life", - "shortCode" : "DDDL", - "level" : "O", - "rank" : 15100, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", - "label" : "Starting from date (date of interim disqualification)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3071", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "8c81d29b-5621-4f2c-9e05-297241822ba6", - "label" : "Obligatory but reduced disqualification for special reasons", - "shortCode" : "DDDR", - "level" : "O", - "rank" : 15200, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "special", "reasons" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", - "label" : "Starting from date (date of interim disqualification)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dcaf502b-44d2-4be0-acfc-2f7d29142da6", - "label" : "Special reasons", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3070", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "20a7e0f4-abc5-4beb-8af0-a327de1d6e7e", - "label" : "Discretionary with disqualification until ordinary test passed", - "shortCode" : "DDDT", - "level" : "O", - "rank" : 15300, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "test", "until" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", - "label" : "Starting from date (date of interim disqualification)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3071", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "cf8a3c59-63f5-4757-8783-88f1e31aa653", - "label" : "Discretionary disqualification until test passed only", - "shortCode" : "DDDTO", - "level" : "O", - "rank" : 15400, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "test", "until", "only" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3073", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "c2c346d1-dc13-48c8-b557-ef3dabcb1b9b", - "label" : "Obligatory disqualification until extended test passed", - "shortCode" : "DDOTE", - "level" : "O", - "rank" : 15500, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "until", "extended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", - "label" : "Starting from date (date of interim disqualification)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3070", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "73fe22ca-76bd-4aba-bdea-6dfef8ee03a2", - "label" : "Points disqualification", - "shortCode" : "DDP", - "level" : "O", - "rank" : 15600, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "points" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label" : "Notional penalty points", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3072", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "651cbf5b-b7f0-4921-ba01-e18ad2ac763b", - "label" : "Points disqualification for life", - "shortCode" : "DDPL", - "level" : "O", - "rank" : 15700, - "wordGroups" : [ { - "wordGroup" : [ "disqualificatiom", "ponts", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label" : "Notional penalty points", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3072", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "7b0933f8-405e-434a-9bfe-871f794260cb", - "label" : "Points but reduced disqualification for mitigating circumstance", - "shortCode" : "DDPR", - "level" : "O", - "rank" : 15800, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "points", "mitigating" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label" : "Notional penalty points", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a541edb8-fead-4a88-8665-79b5a59c183c", - "label" : "Mitigating circumstances", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "mitigatingCircumStances", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3072", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "097dfa33-6c62-4ed1-af46-6c6786b66d65", - "label" : "Points with disqualification until extended test passed", - "shortCode" : "DDPTE", - "level" : "O", - "rank" : 15900, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "points", "extended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label" : "Notional penalty points", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3072", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "a5aa694e-4729-40f5-814e-60a75d9429e0", - "label" : "Community requirement: Programme", - "shortCode" : "PR", - "level" : "O", - "rank" : 2300, - "wordGroups" : [ { - "wordGroup" : [ "PR" ] - }, { - "wordGroup" : [ "Programme", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "60e386e4-51df-4c91-81f7-9a25751de426", - "label" : "Number of days", - "welshLabel" : "Nifer o ddyddiau", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3103", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "90ef1e35-b19a-4ad9-a4e1-e511e9d1d00e", - "label" : "Driving Disq - Reduction for course (discretionary)", - "shortCode" : "DDRCD", - "level" : "O", - "rank" : 16000, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "course", "dicretionary" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7326f05d-54b3-450e-92dd-a5bc0710f8f7", - "label" : "Name of course", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "286cc674-a4f8-408e-aa6d-8dbc175ab968", - "label" : "Date by which course must be completed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label" : "Defendant's mobile number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e2ae845f-12f4-498e-bddf-a90c8cb499ba", - "label" : "Defendant's home telephone number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label" : "Special needs", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3071", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "990e8cad-c8e0-4ad9-ba86-13180338986d", - "label" : "Driving Disq - Reduction for course (obligatory)", - "shortCode" : "DDRCO", - "level" : "O", - "rank" : 16100, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "course", "obligatory" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7326f05d-54b3-450e-92dd-a5bc0710f8f7", - "label" : "Name of course", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "286cc674-a4f8-408e-aa6d-8dbc175ab968", - "label" : "Date by which course must be completed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label" : "Defendant's mobile number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e2ae845f-12f4-498e-bddf-a90c8cb499ba", - "label" : "Defendant's home telephone number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label" : "Special needs", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3070", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "7ee02b35-88ca-4acc-ab8b-70f3e95a32d0", - "label" : "Obligatory Disqualification until extended test passed - reduction for course", - "shortCode" : "DDRCOT", - "level" : "O", - "rank" : 16200, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "course", "obligatory", "extended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7326f05d-54b3-450e-92dd-a5bc0710f8f7", - "label" : "Name of course", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "286cc674-a4f8-408e-aa6d-8dbc175ab968", - "label" : "Date by which course must be completed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label" : "Defendant's mobile number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e2ae845f-12f4-498e-bddf-a90c8cb499ba", - "label" : "Defendant's home telephone number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label" : "Special needs", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3070", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "4414bffb-c62e-442c-841a-2ebed0e688b6", - "label" : "Interim disqualification", - "shortCode" : "DDRI", - "level" : "O", - "rank" : 16300, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "inerim" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3096", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "3ae7caf1-d5ff-4534-9fbb-17a3a04cb9ab", - "label" : "Disqualification for non-endorsable offence", - "shortCode" : "DDRN", - "level" : "O", - "rank" : 16400, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "non-endorsable" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3094", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "3fa139cc-efe0-422b-93d6-190a5be50953", - "label" : "Driving record endorsed with additional points (points on more than one offence)", - "shortCode" : "LEA", - "level" : "O", - "rank" : 16500, - "wordGroups" : [ { - "wordGroup" : [ "endorsed", "Additional", "points" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a8719de4-7783-448a-b792-e3f94e670ad0", - "label" : "Penalty points for this offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PENPT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bbbb47bb-3418-463c-bfc3-43c6f72bb7c9", - "label" : "Reasons for imposing penalty points on more than one offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3008", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "b0aeb4fc-df63-4e2f-af88-97e3f23e847f", - "label" : "Driving record endorsed (no points)", - "shortCode" : "LEN", - "level" : "O", - "rank" : 16600, - "wordGroups" : [ { - "wordGroup" : [ "endorsed", "no", "points" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3008", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "cee54856-4450-4f28-a8a9-72b688726201", - "label" : "Driving record endorsed with penalty points", - "shortCode" : "LEP", - "level" : "O", - "rank" : 16700, - "wordGroups" : [ { - "wordGroup" : [ "endorsed", "points" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a8719de4-7783-448a-b792-e3f94e670ad0", - "label" : "Penalty points for this offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PENPT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3008", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "af322d0a-ba2a-47f1-8d46-7b3ea423d689", - "rollUpPrompts": true, - "publishedForNows": true, - "label" : "No disqualification - Mitigating Circumstances", - "shortCode" : "NDMC", - "level" : "C", - "rank" : 16800, - "wordGroups" : [ { - "wordGroup" : [ "no", "disqualification", "mitigating" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a541edb8-fead-4a88-8665-79b5a59c183c", - "label" : "Mitigating circumstances", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "mitigatingCircumStances", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3509", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "808313d1-f450-4410-b2f1-97409d7b4074", - "label" : "No disqualification - Special Reasons", - "shortCode" : "NDSR", - "level" : "O", - "rank" : 16900, - "wordGroups" : [ { - "wordGroup" : [ "no", "disqualification", "special", "reason" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dcaf502b-44d2-4be0-acfc-2f7d29142da6", - "label" : "Special reasons", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3509", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "label" : "Community requirement: Rehabilitation activity", - "shortCode" : "RAR", - "level" : "O", - "rank" : 2400, - "wordGroups" : [ { - "wordGroup" : [ "Rehabilitation", "Activity" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1bc7246f-89f2-4b2f-b765-d01297d7b4aa", - "label" : "Max number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3149", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f121db73-57fb-4f74-9ab1-0843aabe4605", - "label" : "No endorsement - Special Reasons", - "shortCode" : "NESR", - "level" : "O", - "rank" : 17000, - "wordGroups" : [ { - "wordGroup" : [ "no", "endorsement", "special", "reason" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "dcaf502b-44d2-4be0-acfc-2f7d29142da6", - "label" : "Special reasons", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3508", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b5ee3936-2cd5-47f4-9192-3737c7093a7f", - "label" : "Removal of Driving Disqualification", - "shortCode" : "RDD", - "level" : "O", - "rank" : 17100, - "wordGroups" : [ { - "wordGroup" : [ "remove", "disqualification" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fb28be9c-0f74-4c02-a70e-0fffa9b0614b", - "label" : "Date disqualification imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7a6d9bb9-a042-4234-8b92-d871437fd15a", - "label" : "Date disqualification ends", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "73f005c6-11e7-4d45-a378-85ea5919e553", - "label" : "Original date of conviction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "37ee2b08-1950-4b04-bea5-f6f66b768bb0", - "label" : "Original offence date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5813ddb2-e987-44fd-bdcf-4148e6fb9cda", - "label" : "DVLA offence code", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "84a42b46-f384-410d-a4d9-46fe0cb74678", - "label" : "Applicant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c70597c0-a333-4828-959f-e6c8174a311c", - "label" : "Original convicting court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "663d9c78-0e56-4931-9f3a-5301a7e94147", - "label" : "Disqualification for non-endorsable offence (assault by driving a motor vehicle)", - "shortCode" : "DDRA", - "level" : "O", - "rank" : 17200, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "non-endorsable", "assault" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7a353b75-acd8-4a69-b779-d14c194fa3fd", - "label" : "Extension period section 147A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "975c0985-7ee4-4560-85fc-5eecf97f9b34", - "label" : "Extension period section 147B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3095", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "6ef33dcf-3fd3-46d6-bc41-f7bfb7f5ced6", - "label" : "Disqualification for non-endorsable offence (vehicle used for purposes of crime)", - "shortCode" : "DDRV", - "level" : "O", - "rank" : 17300, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "non-endorsable", "crime" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7a353b75-acd8-4a69-b779-d14c194fa3fd", - "label" : "Extension period section 147A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "975c0985-7ee4-4560-85fc-5eecf97f9b34", - "label" : "Extension period section 147B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3095", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "238fc228-f948-430e-b0a1-7c9bdcafac46", - "label" : "Disqualification suspended pending appeal", - "shortCode" : "DSPA", - "level" : "O", - "rank" : 17400, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "suspended", "appeal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3075", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d3ca848c-ab33-4650-a0e6-36f1b86998a2", - "label" : "Disqualification suspended pending appeal in a later session", - "shortCode" : "DSPAS", - "level" : "O", - "rank" : 17500, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "suspended", "appeal", "later" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", - "label" : "Convicting court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "00ff3bf4-a872-4c16-a671-f05b8aa147f3", - "label" : "Sentencing court if different from convicting court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e3764c59-4e25-4864-a3af-1c2e3390af99", - "label" : "Date of conviction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9c1c1ba5-eb13-45be-a7d3-dcc83debe0ba", - "label" : "Date of offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "71b1cc98-8b41-4d65-906a-3b4940c4ce1d", - "label" : "Date of sentence if different from conviction date", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9dc27662-6953-4acf-a7ac-9b9165e12e2d", - "label" : "DVLA code for offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "72faf2d6-b362-4e7a-9f89-102c7e820868", - "label" : "Court contact (SPOC)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "84a42b46-f384-410d-a4d9-46fe0cb74678", - "label" : "Applicant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3076", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "39988e30-159a-442e-bb83-7f6df78fea34", - "label" : "Driving licence disposal", - "shortCode" : "DLDIS", - "level" : "D", - "rank" : 17600, - "wordGroups" : [ { - "wordGroup" : [ "driving", "license", "disposal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ff701645-f700-48d0-a247-19f177b0e976", - "label" : "Driving licence type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5fe6673d-24ff-445b-b247-03c71e95fb2c", - "label" : "Driving licence destination", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0556c55a-439b-4020-8bff-ad0d5c0bb7fa", - "label" : "Reason driving licence sent to DVLA", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dd3ef017-5020-4fec-832a-98028ebf3097", - "label" : "Driving licence suspended pending production", - "shortCode" : "DLSUS", - "level" : "C", - "rank" : 17700, - "wordGroups" : [ { - "wordGroup" : [ "driving", "license", "suspended", "production" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3510", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3bfd5af4-b80a-405c-9089-1a533aec0ace", - "label" : "Licensed Premises - Exclusion Order", - "shortCode" : "LPEX", - "level" : "O", - "rank" : 17800, - "wordGroups" : [ { - "wordGroup" : [ "licensed", "premises", "exclusion" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "04446df0-88b9-4f3b-97cd-cf663346c6d0", - "label" : "Duration of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "04446df0-88b9-4f3b-97cd-cf663346c6d0", - "label" : "Duration of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "57d0b15c-746a-4376-a4d8-5917ecd5e8eb", - "label" : "Name of licensed premises excluded from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c70d64d-9c95-48bc-b8d2-5c38643e7d65", - "label" : "Reason for exclusion", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3041", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0ced3039-579c-48a3-9274-cee8c68ba608", - "label" : "Contingent destruction order for dog (proper control)", - "shortCode" : "DCDO", - "level" : "O", - "rank" : 18000, - "wordGroups" : [ { - "wordGroup" : [ "dog", "destruction", "control" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e8a64fc3-081f-4461-84e8-65774cce7021", - "label" : "Details of dog", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "31abd0a3-c2e2-4e15-91de-f2917b4fbadd", - "label" : "To be securely held on a lead by a person who is not less than 16 years old", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2e674f8b-dc14-4731-8ff4-a13c85be7318", - "label" : "To be securely fitted with a muzzle sufficient to prevent it biting any person", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0879a258-7feb-4675-ba94-abc679b23aa9", - "label" : "Places excluded from", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a8548173-c4a4-43a6-adbc-364fbdfcef58", - "label" : "Other directions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3082", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bbc3f8e9-b29c-40d2-8564-0e918693ed89", - "label" : "Order for dog to be neutered", - "shortCode" : "DN", - "level" : "O", - "rank" : 18100, - "wordGroups" : [ { - "wordGroup" : [ "dog", "neutered" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e8a64fc3-081f-4461-84e8-65774cce7021", - "label" : "Details of dog", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "75ae5570-cdc0-42c7-9024-68985fd3bf73", - "label" : "Date by which dog is to be neutered", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3020", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b6eeca33-a188-4d00-a470-391b245c45a4", - "label" : "Order for deprivation of animal", - "shortCode" : "ADEP", - "level" : "O", - "rank" : 18200, - "wordGroups" : [ { - "wordGroup" : [ "deprivation", "animal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0f52987f-309d-4357-95e1-8f4da8effb60", - "label" : "This order also deprives the defendant of the animal's dependent offspring and provides for its disposal. The offspring are", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0949b347-3c72-4688-9ecb-deabb17ee175", - "label" : "Directions regarding the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a795188-50e5-4587-9097-610219269455", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3055", - "adjournment" : false, - "convicted" : true, - "qualifier" : "YZ", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cf10ee96-c82c-46c7-8a34-0c9d08aca134", - "label" : "Order for destruction in the interests of the animal made under Section 37 Animal Welfare Act 2006", - "shortCode" : "ADES", - "level" : "O", - "rank" : 18300, - "wordGroups" : [ { - "wordGroup" : [ "destruction", "interest", "animal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0949b347-3c72-4688-9ecb-deabb17ee175", - "label" : "Directions regarding the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a795188-50e5-4587-9097-610219269455", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3116", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "852cf8c1-bb0f-444f-97f1-64ff8561413d", - "label" : "Destruction of animals involved in fighting made under Section 38 Animal Welfare Act 2006", - "shortCode" : "ADESF", - "level" : "O", - "rank" : 18400, - "wordGroups" : [ { - "wordGroup" : [ "destruction", "animal", "fighting" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "03934cce-feb2-43b5-aaf8-20aeccb3336d", - "label" : "Animal to be destroyed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0949b347-3c72-4688-9ecb-deabb17ee175", - "label" : "Directions regarding the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a795188-50e5-4587-9097-610219269455", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3116", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "26eec36f-7bdc-4b1a-9b46-ba161f52a4e2", - "label" : "Disqualified from keeping animal stated for a defined period", - "shortCode" : "ANI", - "level" : "O", - "rank" : 18500, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "keeping", "animal", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e07c6156-730e-4b66-a913-edc7366b13c0", - "label" : "Specify the animal to which the order applies", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a795188-50e5-4587-9097-610219269455", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3025", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "577acd37-0473-4ad8-ac06-adbf7e9beb2c", - "label" : "Disqualified from keeping stated animal for life", - "shortCode" : "ANIL", - "level" : "O", - "rank" : 18600, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "keeping", "animal", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e07c6156-730e-4b66-a913-edc7366b13c0", - "label" : "Specify the animal to which the order applies", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a795188-50e5-4587-9097-610219269455", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3025", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", - "label" : "Foreign travel prohibition", - "shortCode" : "FTPN", - "level" : "O", - "rank" : 100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "63ff5f8d-07ac-4b2d-ae61-fbb75613dfab", - "label" : "Not to travel to any country outside the United Kingdom", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "63173301-f05d-4bb3-8ca0-2fefd8f9e84d", - "label" : "Not to travel to the following countries outside the United Kingdom", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3333058f-1977-4fcb-a70a-98d1510898b5", - "label" : "Not to travel to any country outside the United Kingdom other than", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5d2dd546-d773-44d6-b030-0de2d049b245", - "label" : "Period of foreign travel prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "67de7451-2805-40ee-9d4c-6e75aa04069c", - "label" : "Foreign travel prohibition removed", - "shortCode" : "FTPR", - "level" : "O", - "rank" : 18700, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "removed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e86b1bce-49f5-46db-8c2e-3df6321ecfdb", - "label" : "Date removed with effect from", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2a9ff8a6-c0cf-45eb-b9e5-252238a5140c", - "label" : "Foreign travel prohibition extended", - "shortCode" : "FTPE", - "level" : "O", - "rank" : 18800, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "extended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "32b624af-30b4-4ef9-8eae-cb178a64e2be", - "label" : "Date foreign travel prohibition made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3332ddb2-2c45-496a-8306-92ab4ddc726d", - "label" : "Foreign travel prohibition extended until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "label" : "Community requirement: Prohibited activity for period", - "shortCode" : "PARP", - "level" : "O", - "rank" : 2600, - "wordGroups" : [ { - "wordGroup" : [ "prohibited", "Activity", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": false - }, { - "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": false - }, { - "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": false - }, { - "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": false - }, { - "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label" : "Prohibited activities", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": false - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3104", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dcdcd240-3ebe-4e80-b84c-a06a2a4a17ae", - "label" : "Sexual harm prevention order discharged", - "shortCode" : "SHPOD", - "level" : "O", - "rank" : 18900, - "wordGroups" : [ { - "wordGroup" : [ "shopo", "discharged" ] - }, { - "wordGroup" : [ "sexual", "harm", "prevention", "discharged" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "471d4d9d-b267-410a-be01-7c8c5e762992", - "label" : "Sexual harm prevention order type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label" : "Date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "Date", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94514093-d8de-4400-93de-9e3366f5af8c", - "label" : "Name of defendant on original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label" : "Name of court that made the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bb09512f-3d01-4f3d-ab7e-fefa5a7ccba4", - "label" : "Sexual harm prevention order renewed", - "shortCode" : "SHPOR", - "level" : "O", - "rank" : 19000, - "wordGroups" : [ { - "wordGroup" : [ "shopo", "renewed" ] - }, { - "wordGroup" : [ "sexual", "harm", "prevention", "renewed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "471d4d9d-b267-410a-be01-7c8c5e762992", - "label" : "Sexual harm prevention order type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label" : "Date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "Date", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94514093-d8de-4400-93de-9e3366f5af8c", - "label" : "Name of defendant on original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label" : "Name of court that made the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "35dd25e2-0017-46fd-ae5f-0ed8eb67d545", - "label" : "Foreign travel prohibition varied", - "shortCode" : "FTPV", - "level" : "O", - "rank" : 19100, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "32b624af-30b4-4ef9-8eae-cb178a64e2be", - "label" : "Date foreign travel prohibition made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", - "label" : "Details of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cd612502-9cf9-4365-b6db-bf70022c40e5", - "label" : "Foreign travel prohibition added", - "shortCode" : "FTPA", - "level" : "O", - "rank" : 19200, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "added" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label" : "Period of foreign travel prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label" : "Period of foreign travel prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label" : "Period of foreign travel prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label" : "Period of foreign travel prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "137b456b-1f56-42f6-9b5a-e45a3171724e", - "label" : "Not to travel to any country outside the United Kingdom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a8b1ab81-4ef1-40bc-9aa8-ccdba9a6efca", - "label" : "Not to travel to the following countries outside the United Kingdom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e9b15a52-c842-4e33-b779-537360158228", - "label" : "Not to travel to any country outside the United Kingdom other than", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "23fff13d-9741-4209-88ce-83e14c8c3388", - "label" : "Slavery and trafficking prevention order for period", - "shortCode" : "SATPO", - "level" : "O", - "rank" : 19300, - "wordGroups" : [ { - "wordGroup" : [ "slavery", "prevention", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3285", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "17bcc2c7-51f3-4449-aeed-3e7c65a0854d", - "label" : "Slavery and trafficking prevention order until further order", - "shortCode" : "SATPOFO", - "level" : "O", - "rank" : 19400, - "wordGroups" : [ { - "wordGroup" : [ "slavery", "prevention", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3285", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dcdbe62e-ff8f-48d9-acf9-6b6b86b3487d", - "label" : "Slavery and trafficking prevention order until end date", - "shortCode" : "SATPOED", - "level" : "O", - "rank" : 19500, - "wordGroups" : [ { - "wordGroup" : [ "slavery", "prevention", "end" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3285", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ee94aaf8-5152-4a6e-b17e-63891e6209c4", - "label" : "Slavery and trafficking prevention order varied", - "shortCode" : "SATPOV", - "level" : "O", - "rank" : 19700, - "wordGroups" : [ { - "wordGroup" : [ "slavery", "prevention", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label" : "Date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "Date", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94514093-d8de-4400-93de-9e3366f5af8c", - "label" : "Name of defendant on original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label" : "Name of court that made the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2def6a67-bdb7-4596-8544-53ebb5811880", - "label" : "Variation of prohibitions (other than foreign)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f0b5c085-202d-4b96-9409-959f950c6bf3", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label" : "Start date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "381648c7-ca3e-4368-a75d-dbdebbf22bcd", - "label" : "Interim slavery and trafficking prevention order", - "shortCode" : "SATPOI", - "level" : "O", - "rank" : 19800, - "wordGroups" : [ { - "wordGroup" : [ "interim", "slavery", "prevention" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3284", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", - "ruleType" : "optional" - }, { - "childResultDefinitionId" : "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", - "ruleType" : "optional" - }, { - "childResultDefinitionId" : "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", - "ruleType" : "optional" - } ] - }, { - "id" : "0021c162-50ee-4769-b30c-c15be2202427", - "label" : "Travel restriction order", - "shortCode" : "TRO", - "level" : "O", - "rank" : 19900, - "wordGroups" : [ { - "wordGroup" : [ "travel", "restriction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef4db11b-fc46-44a3-b96d-07df138200bf", - "label" : "Direction to deliver up passport to Court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3078", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1c40353b-a3b8-4437-8691-6b54d5842010", - "label" : "Community requirement: Prohibited activity for dates", - "shortCode" : "PARD", - "level" : "O", - "rank" : 2700, - "wordGroups" : [ { - "wordGroup" : [ "prohibited", "Activity", "dates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label" : "Prohibited activities", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96a36529-f9ff-4804-86d1-361bc9c12910", - "label" : "Dates", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3104", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e513f78d-6ba3-45b2-a3f9-668c9543f76c", - "label" : "No travel restriction order", - "shortCode" : "NOTRO", - "level" : "O", - "rank" : 20000, - "wordGroups" : [ { - "wordGroup" : [ "no", "travel", "restriction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "88d784e0-e85f-47ac-9c04-a96a9862056e", - "label" : "Reasons for not making a travel restriction order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0f1dce52-dfe0-4ed9-ba4e-ca0f30cfb30f", - "label" : "Travel restriction order revoked", - "shortCode" : "TROR", - "level" : "O", - "rank" : 20100, - "wordGroups" : [ { - "wordGroup" : [ "travel", "restriction", "revoked" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc5bb638-52c0-4815-9816-a473f7503684", - "label" : "Date travel prohibition revoked with effect from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d624b709-013b-4865-8de8-e91dc00957af", - "label" : "Travel restriction order suspended", - "shortCode" : "TROS", - "level" : "O", - "rank" : 20200, - "wordGroups" : [ { - "wordGroup" : [ "travel", "restriction", "suspended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label" : "Duration of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label" : "Duration of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label" : "Duration of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label" : "Duration of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc28ef15-b7ce-4be0-98ca-342e0b8df374", - "label" : "Original order contained a direction to surrender passport", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "af519666-bd10-423a-8f4b-9173a5daafca", - "label" : "Psychoactive Substances Prohibition Order", - "shortCode" : "PSPO", - "level" : "O", - "rank" : 20400, - "wordGroups" : [ { - "wordGroup" : [ "psychoactive", "subatance" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a2984926-eec3-4a76-8c47-ac6d708ca853", - "label" : "General prohibitions and restrictions", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4bc401db-3334-4b50-9e4b-df2068e9a675", - "label" : "Describe item to be disposed of", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "54d27556-06bb-411c-80e6-cb8cc82908f8", - "label" : "Specify who is to dispose of item", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3288", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "08f9b07e-ed90-4522-9d14-7d9162186758", - "label" : "Psychoactive Substances Prohibition Order with premises access prohibition", - "shortCode" : "PSPOA", - "level" : "O", - "rank" : 20500, - "wordGroups" : [ { - "wordGroup" : [ "psychoactive", "subatance", "premises", "prohibited" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b037d41d-d72c-4dcb-a3f0-37adc12aae52", - "label" : "Prohibition duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b037d41d-d72c-4dcb-a3f0-37adc12aae52", - "label" : "Prohibition duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b037d41d-d72c-4dcb-a3f0-37adc12aae52", - "label" : "Prohibition duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a2984926-eec3-4a76-8c47-ac6d708ca853", - "label" : "General prohibitions and restrictions", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4bc401db-3334-4b50-9e4b-df2068e9a675", - "label" : "Describe item to be disposed of", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "54d27556-06bb-411c-80e6-cb8cc82908f8", - "label" : "Specify who is to dispose of item", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "01c2bbdc-5765-4952-8575-cca2077349e7", - "label" : "Prohibition applies to whole or part of premises", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0335a74d-2142-413f-9bbc-753581a43707", - "label" : "Prohibited premises", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f9704321-7770-467e-a94b-3e8544c857bc", - "label" : "Describe the part of premises", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bcaf62cd-7270-4e86-b41e-7fcfa3aae1eb", - "label" : "Persons times and circumstances of access prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3288", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f0395277-4d26-4785-acb5-5be597d97ae6", - "label" : "Criminal behaviour order until further order", - "shortCode" : "CRIMBOF", - "level" : "O", - "rank" : 20600, - "wordGroups" : [ { - "wordGroup" : [ "criminal", "behaviour", "Order", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label" : "Start date of order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4461f7f5-f984-4b6d-9f60-3084e5071382", - "label" : "Requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label" : "Supervisor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label" : "Supervisor's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1177", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "187f05c9-8467-4741-8b9e-7a3a5b06f6f6", - "label" : "No evidence offered (summary offence in the Crown Court)", - "shortCode" : "NOEVS", - "level" : "O", - "rank" : 20700, - "wordGroups" : [ { - "wordGroup" : [ "no", "evidence", "offered" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2050", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f8bd4d1f-1467-4903-b1e6-d2249ccc8c25", - "label" : "Dismissed (No evidence offered)", - "shortCode" : "DINE", - "level" : "O", - "rank" : 20800, - "wordGroups" : [ { - "wordGroup" : [ "Dismissed", "no", "evidence" ] - }, { - "wordGroup" : [ "no evidence", "offered", "Dismissed" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Gwrthod (Dim tystiolaeth wedi’i chyflwyno)", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2050", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5edd3a3a-8dc7-43e4-96c4-10fed16278ac", - "label" : "Vehicle Excise Back Duty", - "shortCode" : "FVEBD", - "level" : "O", - "rank" : 20900, - "wordGroups" : [ { - "wordGroup" : [ "vehicle", "back", "duty" ] - }, { - "wordGroup" : [ "FVEBD" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f7c7c088-f88e-4c28-917c-78571517aca1", - "label" : "Amount of back duty", - "welshLabel" : "Swm yr ôl-doll", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOBD", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Ôl-doll Treth Car", - "isAvailableForCourtExtract" : true, - "financial" : true, - "category" : "F", - "cjsCode" : "3014", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "label" : "Community requirement: Prohibited activity for days of week", - "shortCode" : "PARW", - "level" : "O", - "rank" : 2800, - "wordGroups" : [ { - "wordGroup" : [ "prohibited", "Activity", "days" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label" : "Prohibited activities", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "53f817cd-0070-455e-9826-a103bd4a4a26", - "label" : "Days", - "welshLabel" : "Diwrnod", - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "e652a90a-31cf-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3104", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b81ac80b-81a9-48b6-87b0-cc34610eec97", - "label" : "Restraining order for period", - "shortCode" : "RESTRAOP", - "level" : "O", - "rank" : 700, - "wordGroups" : [ { - "wordGroup" : [ "Restraining", "Order", "Period" ] - }, { - "wordGroup" : [ "RESTRAOP" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", - "label" : "Protected person", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "8df0ec7e-5985-4998-af1a-5da293d9cb3c", - "label" : "Order details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47337f1c-e343-4093-884f-035ba96c4db0", - "label" : "Conviction / acquittal", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8dc70c95-fb09-4842-9138-bc579fceb605", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ea26f773-0a91-4526-b4ad-84d07b5bf940", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3047", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "920183ea-c82a-4110-a937-6a2e7071d908", - "label" : "Certificate of conviction under Section 113 of the Powers of Criminal Courts (Sentencing) Act 2000", - "shortCode" : "QCON", - "level" : "O", - "rank" : 21000, - "wordGroups" : [ { - "wordGroup" : [ "certificate", "conviction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e3764c59-4e25-4864-a3af-1c2e3390af99", - "label" : "Date of conviction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", - "label" : "Convicting court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "59828fc1-e8f2-46be-866c-4c8c1d165273", - "label" : "Type of offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bfb02d14-243f-4450-9c20-4c0ed9c5d64c", - "label" : "No further review of order required", - "shortCode" : "REVUE", - "level" : "O", - "rank" : 21100, - "wordGroups" : [ { - "wordGroup" : [ "no", "Further", "Review" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9bb5d310-0fef-450d-91d6-117f894001bb", - "label" : "Offences taken into consideration", - "shortCode" : "TIC", - "level" : "D", - "rank" : 21200, - "wordGroups" : [ { - "wordGroup" : [ "TIC" ] - }, { - "wordGroup" : [ "taken", "into", "consideration" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a292fb05-4b6b-43b3-8fdc-1ce5c1114a45", - "label" : "Number of offences admitted and taken into consideration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3118", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "87eed0b7-b141-4a3c-b7b0-ea8bb23ec3b2", - "label" : "Warrant not executed", - "shortCode" : "WNE", - "level" : "O", - "rank" : 21300, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "not", "executed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9565f244-bef4-43a0-b32c-0d12faceb5de", - "label" : "Reason for warrant not executed", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "381cb2bd-4993-476d-9c8f-3bd19f288120", - "label" : "Reason warrant not executed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "2509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4d5f25a5-9102-472f-a2da-c58d1eeb9c93", - "label" : "Warrant withdrawn", - "shortCode" : "WWDN", - "level" : "O", - "rank" : 21400, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "withdrawn" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "81aaac7d-84c3-45cb-a845-69b7f3fb20fe", - "label" : "Reason for withdrawing warrant", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "2509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8e7f7ffd-eceb-44ea-8efd-bc6c99913d85", - "label" : "Restraining order discharged", - "shortCode" : "RESTRAD", - "level" : "O", - "rank" : 21500, - "wordGroups" : [ { - "wordGroup" : [ "Restraining", "Order", "discharged" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8a11df41-cc91-4b67-80c4-6108c9b5e324", - "label" : "Third party's name (victim or police)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a06952c1-4bfe-4004-b6ac-6908afefdd6a", - "label" : "Third party's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2ade6e72-ee41-4718-87a0-1a396579ac56", - "label" : "Original order made by", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c2200b1d-a47d-4d02-9b88-58f8bbed7ea9", - "label" : "Restraining order varied", - "shortCode" : "RESTRAV", - "level" : "O", - "rank" : 21600, - "wordGroups" : [ { - "wordGroup" : [ "Restraining", "Order", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8a11df41-cc91-4b67-80c4-6108c9b5e324", - "label" : "Third party's name (victim or police)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a06952c1-4bfe-4004-b6ac-6908afefdd6a", - "label" : "Third party's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2ade6e72-ee41-4718-87a0-1a396579ac56", - "label" : "Original order made by", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2da599de-da03-492e-b66f-e7aad32fcfa5", - "label" : "Terms of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49a85507-8a96-4201-965d-a11879c73f8c", - "label" : "Order now expires", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c32b9ca1-78da-4c7c-bde6-8218aed2bb80", - "label" : "Adjournment refused", - "shortCode" : "ADR", - "level" : "O", - "rank" : 21700, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "refused" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "61d8be36-adac-4a47-aa65-a46962f2bd8b", - "label" : "Reason for refusal", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Bydd y gwrandawiad nesaf yn y llys ynadon", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bc4bb54f-1fa8-43d8-8021-c1e07994d5f6", - "label" : "Racially aggravated offence", - "shortCode" : "RA", - "level" : "O", - "rank" : 21800, - "wordGroups" : [ { - "wordGroup" : [ "racially", "aggravated" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "07f5229c-cf4c-45f2-a49b-703d11bf5b41", - "label" : "Racially and religiously aggravated offence", - "shortCode" : "RARE", - "level" : "O", - "rank" : 21900, - "wordGroups" : [ { - "wordGroup" : [ "racially", "religious", "aggravated" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "label" : "Community requirement: Foreign travel prohibition any country for period", - "shortCode" : "FTPCP", - "level" : "O", - "rank" : 2900, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "any", "country", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bcd4f58f-c53e-420f-8d54-c42f125522f9", - "label" : "Religiously aggravated offence", - "shortCode" : "RE", - "level" : "O", - "rank" : 22000, - "wordGroups" : [ { - "wordGroup" : [ "religious", "aggravated" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f25de68a-e719-42dd-9153-6687af843434", - "label" : "Aggravated due to transgender", - "shortCode" : "TGG", - "level" : "O", - "rank" : 22100, - "wordGroups" : [ { - "wordGroup" : [ "transgender", "aggravated" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6fcb509f-1343-46df-a79b-7f650d84d3f2", - "label" : "Aggravated due to transgender of victim", - "shortCode" : "TGV", - "level" : "O", - "rank" : 22200, - "wordGroups" : [ { - "wordGroup" : [ "transgender", "aggravated", "victim" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cfe8ea34-4461-42e1-836c-2319924b4ea6", - "label" : "General disqualification for a period", - "shortCode" : "DGEN", - "level" : "O", - "rank" : 22300, - "wordGroups" : [ { - "wordGroup" : [ "general", "disqualification", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label" : "Period of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label" : "Period of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label" : "Period of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label" : "Period of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b7eacb5-af56-4f40-b808-40270fb900cd", - "label" : "Nature of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "db41c015-10b7-4947-9524-ce61344c8d6a", - "label" : "Reason for disqualification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "95d8d079-3680-4819-9bf7-5e268aae8ff0", - "label" : "General disqualification for life", - "shortCode" : "DGENL", - "level" : "O", - "rank" : 22400, - "wordGroups" : [ { - "wordGroup" : [ "general", "disqualification", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1b7eacb5-af56-4f40-b808-40270fb900cd", - "label" : "Nature of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "db41c015-10b7-4947-9524-ce61344c8d6a", - "label" : "Reason for disqualification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "49297a56-1d57-4f3a-862a-351a9c7372a7", - "label" : "Female genital mutilation protection order until further order", - "shortCode" : "FGMPO", - "level" : "O", - "rank" : 22500, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "Further" ] - }, { - "wordGroup" : [ "fgm", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0987a7f2-c628-43f4-b978-1a4db2e4c45b", - "label" : "Terms of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b3c338ee-3a15-4f46-bf51-4ed3dd9fa831", - "label" : "Female genital mutilation protection order for period", - "shortCode" : "FGMPOP", - "level" : "O", - "rank" : 22600, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "Period" ] - }, { - "wordGroup" : [ "fgm", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0987a7f2-c628-43f4-b978-1a4db2e4c45b", - "label" : "Terms of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3f6ea21a-1e7a-4fbf-b6bd-a1d0d59d9636", - "label" : "Female genital mutilation protection order until end date", - "shortCode" : "FGMPOE", - "level" : "O", - "rank" : 22700, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "end" ] - }, { - "wordGroup" : [ "fgm", "end" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", - "label" : "End date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0987a7f2-c628-43f4-b978-1a4db2e4c45b", - "label" : "Terms of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a9ec3d80-c37a-4f51-9706-e33b6feb6d2d", - "label" : "Female genital mutilation protection order varied (until further order)", - "shortCode" : "FGMPOV", - "level" : "O", - "rank" : 22800, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "varied", "Further" ] - }, { - "wordGroup" : [ "fgm", "varied", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f7d348da-6f8b-4170-9660-55ee16453865", - "label" : "Terms of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9f707be3-97fb-4ea8-984b-41547adc189c", - "label" : "Female genital mutilation protection order varied (for period)", - "shortCode" : "FGMPOVP", - "level" : "O", - "rank" : 22900, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "varied", "Period" ] - }, { - "wordGroup" : [ "fgm", "varied", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f7d348da-6f8b-4170-9660-55ee16453865", - "label" : "Terms of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "label" : "Community requirement: Foreign travel prohibition with list of countries for period", - "shortCode" : "FTPLP", - "level" : "O", - "rank" : 3000, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "country", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f77b3b14-91b2-41b7-966b-0f0bad2664e2", - "label" : "Countries", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "694af16b-9c84-42a4-a659-3f9ce4cf7d02", - "label" : "Female genital mutilation protection order varied (until end date)", - "shortCode" : "FGMPOVE", - "level" : "O", - "rank" : 23000, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "varied", "end" ] - }, { - "wordGroup" : [ "fgm", "varied", "end" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f7d348da-6f8b-4170-9660-55ee16453865", - "label" : "Terms of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", - "label" : "End date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f0d12a39-5c34-43c4-8816-968a9b9e3b60", - "label" : "Female genital mutilation protection order discharged", - "shortCode" : "FGMPOD", - "level" : "O", - "rank" : 23100, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "discharged" ] - }, { - "wordGroup" : [ "fgm", "discharged" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", - "label" : "Passport surrender", - "shortCode" : "PASSS", - "level" : "O", - "rank" : 600, - "wordGroups" : [ { - "wordGroup" : [ "passport", "surrender" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "68077602-7fa8-4645-9bc6-bc59ed409f6f", - "label" : "Name of Police Station to surrender passport", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b87786ca-5112-4841-9c3e-a131186b1762", - "label" : "Passport to be surrendered on or before", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0cee6bf5-21e4-403f-ba45-73e029ab0c73", - "label" : "Specify how many days to surrender passport in", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e0294281-d95d-48e2-8bd0-d7af53740ac9", - "label" : "Passport surrender variation", - "shortCode" : "PASSSV", - "level" : "O", - "rank" : 23200, - "wordGroups" : [ { - "wordGroup" : [ "passport", "surrender", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "68077602-7fa8-4645-9bc6-bc59ed409f6f", - "label" : "Name of Police Station to surrender passport", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b87786ca-5112-4841-9c3e-a131186b1762", - "label" : "Passport to be surrendered on or before", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0cee6bf5-21e4-403f-ba45-73e029ab0c73", - "label" : "Specify how many days to surrender passport in", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "62eb1129-38b8-43aa-855c-bec3569bd17f", - "label" : "Specify date passport originally surrendered on date (now to be returned)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "63f54361-69dd-4d8e-aece-8d87a6064d20", - "label" : "Disqualified for having custody of a dog for period", - "shortCode" : "DCUST", - "level" : "O", - "rank" : 23300, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "dog", "custody", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3023", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a59be074-10ea-4552-bc83-51d069304402", - "label" : "Disqualified for having custody of a dog for life", - "shortCode" : "DCUSTL", - "level" : "O", - "rank" : 23400, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "dog", "custody", "Life" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3023", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "95d2a99a-d8ce-43ae-b5d0-d0dfd8d850f1", - "label" : "Order to keep dog under proper control", - "shortCode" : "DKPC", - "level" : "O", - "rank" : 23500, - "wordGroups" : [ { - "wordGroup" : [ "dog", "control" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bfbb887-7b2d-4423-b80f-f55b19224806", - "label" : "Dog to be fitted with a muzzle sufficient to prevent it biting any person", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e71dd017-100f-4fbc-aa8f-07cc33837375", - "label" : "Dog to be securely held on a lead by a person who is not less than 16 years old", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4c38a549-71e8-40d2-be69-9309653905c3", - "label" : "Dog excluded from", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cdca7321-e930-480a-80bb-60064432f8d1", - "label" : "Specify terms", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "690bddca-7264-4e3d-9d64-ac7a00fca7c7", - "label" : "Describe dog eg name, breed, colour", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3034", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6bd5d409-d656-4829-9ebd-f795e4564c7c", - "label" : "Aggravated due to sexual orientation", - "shortCode" : "SEXO", - "level" : "O", - "rank" : 23600, - "wordGroups" : [ { - "wordGroup" : [ "aggravted", "sexual", "orientation" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AW", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0bfb5f42-062b-4473-9c10-bf98315f8117", - "label" : "Aggravated due to sexual orientation of victim", - "shortCode" : "SEXOV", - "level" : "O", - "rank" : 23700, - "wordGroups" : [ { - "wordGroup" : [ "aggravted", "sexual", "orientation", "victiim" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AV", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "98dc94c8-45f0-4961-bb34-cd979dcc2874", - "label" : "Order that dog be destroyed", - "shortCode" : "DDES", - "level" : "O", - "rank" : 23800, - "wordGroups" : [ { - "wordGroup" : [ "dog", "destroyed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a3ea06d8-b297-4ccc-ac1f-f37bd3054388", - "label" : "Details of dog", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "783e2975-f9aa-4c7e-90a8-2dd6b16144a4", - "label" : "Further information about destruction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3021", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c1b0dedf-1380-4889-9d31-1816b850e348", - "label" : "Community requirement: Foreign travel prohibition with list of countries for dates", - "shortCode" : "FTPLD", - "level" : "O", - "rank" : 3100, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "country", "any", "dates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f77b3b14-91b2-41b7-966b-0f0bad2664e2", - "label" : "Countries", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "464b2a25-dfe4-42b2-8cc7-29a66edf9743", - "label" : "Dates of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "datesOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0b4fee38-ee9b-4aef-9179-cda3e1dbc607", - "label" : "Disqualified from keeping a dog for period", - "shortCode" : "DDIS", - "level" : "O", - "rank" : 23900, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "dog", "keeping", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3022", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e715521c-a4ae-40b3-b127-7612a0b6f32e", - "label" : "Disqualified from keeping a dog for life", - "shortCode" : "DDISL", - "level" : "O", - "rank" : 24000, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "dog", "keeping", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3022", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "29c0a838-14ac-42c0-870c-ee1a133601e3", - "label" : "Aggravated due to hostility based on disability of victim", - "shortCode" : "DISV", - "level" : "O", - "rank" : 24100, - "wordGroups" : [ { - "wordGroup" : [ "aggravated", "disability", "victim" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AX", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a395f8db-9473-4172-8474-c0fb5e1bbefb", - "label" : "Motivated by hostility towards persons who have a disability or a particular disability", - "shortCode" : "DISG", - "level" : "O", - "rank" : 24200, - "wordGroups" : [ { - "wordGroup" : [ "motivated", "disability" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AY", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e7ef0248-fe71-4733-8749-ff0c23a04f95", - "label" : "Shotgun Certificate cancelled", - "shortCode" : "CSHOC", - "level" : "O", - "rank" : 24300, - "wordGroups" : [ { - "wordGroup" : [ "shotgun", "cancelled" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3035", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "19026543-7d59-467b-9649-35ddf89b30cc", - "label" : "Firearm Certificate Cancelled", - "shortCode" : "CFIRC", - "level" : "O", - "rank" : 24400, - "wordGroups" : [ { - "wordGroup" : [ "firearm", "cancelled" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3035", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0b472a9c-5bef-4de7-bbd9-20d22e6d07eb", - "label" : "Defendant's costs payable from central funds - sum assessed", - "shortCode" : "DCCFSA", - "level" : "O", - "rank" : 24500, - "wordGroups" : [ { - "wordGroup" : [ "defendant", "Costs", "central", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "672c8f19-2f64-4720-8638-1d7c7e66deda", - "label" : "Sum assessed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label" : "Creditor's name and address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b2fb2c0e-5c71-4a07-a870-506030f2d5ce", - "label" : "Defendant's costs payable from central funds - sum to be assessed", - "shortCode" : "DCCFSTA", - "level" : "O", - "rank" : 24600, - "wordGroups" : [ { - "wordGroup" : [ "defendant", "Costs", "central", "to", "be", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b17f9f16-20d4-4bb0-8872-5ab4878245c2", - "label" : "Legal / defendant's personal costs", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5609ef92-3d72-4106-915a-aa83401bcaa3", - "label" : "Percentage reduction ordered", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "feb9ebe0-b9bf-4b71-92e3-dcf5ceeeeada", - "label" : "Other party's costs from central funds - sum assessed", - "shortCode" : "CFCAOA", - "level" : "O", - "rank" : 24700, - "wordGroups" : [ { - "wordGroup" : [ "other", "Costs", "central", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", - "label" : "Payment type", - "welshLabel" : "Math o daliad", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label" : "Creditor's name and address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "672c8f19-2f64-4720-8638-1d7c7e66deda", - "label" : "Sum assessed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ed37c314-3700-4646-94f7-b2ec2cf8cef2", - "label" : "Other party's costs from central funds - sum to be assessed", - "shortCode" : "CFCAOTA", - "level" : "O", - "rank" : 24800, - "wordGroups" : [ { - "wordGroup" : [ "other", "Costs", "central", "to", "be", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", - "label" : "Payment type", - "welshLabel" : "Math o daliad", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label" : "Creditor's name and address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "label" : "Community requirement: Foreign travel prohibition any country for dates", - "shortCode" : "FTPCD", - "level" : "O", - "rank" : 3200, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "any", "dates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "464b2a25-dfe4-42b2-8cc7-29a66edf9743", - "label" : "Dates of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "datesOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5ab30f3f-ef9a-46d0-8ccc-ddd2be8f4eee", - "label" : "Prosecutor's costs from central funds - sum assessed", - "shortCode" : "CFCAPA", - "level" : "O", - "rank" : 24900, - "wordGroups" : [ { - "wordGroup" : [ "prosecution", "Costs", "central", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label" : "Creditor's name and address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "672c8f19-2f64-4720-8638-1d7c7e66deda", - "label" : "Sum assessed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ab3df821-8a0b-408e-802d-ea04e3a1a8c5", - "label" : "Prosecutor's costs from central funds - sum to be assessed", - "shortCode" : "CFCAPTA", - "level" : "O", - "rank" : 25000, - "wordGroups" : [ { - "wordGroup" : [ "prosecution", "Costs", "central", "to", "be", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label" : "Creditor's name and address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5609ef92-3d72-4106-915a-aa83401bcaa3", - "label" : "Percentage reduction ordered", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6d2cd232-d38f-413f-bbec-5f83ef379b90", - "label" : "Debtor to be searched", - "shortCode" : "SRCH", - "level" : "D", - "rank" : 25100, - "wordGroups" : [ { - "wordGroup" : [ "debtor", "searched" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d1f3066a-2d42-432a-9531-4194c42c9759", - "label" : "Money found to be applied to debt", - "shortCode" : "APMONEY", - "level" : "D", - "rank" : 25200, - "wordGroups" : [ { - "wordGroup" : [ "money", "applied", "debt" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8d72d822-d3e2-4c30-b089-ab36f58ebefe", - "label" : "Amount to be applied", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "57bec156-6591-4449-8bc4-4981d71b4e8c", - "label" : "Money found not to be taken", - "shortCode" : "NTMONEY", - "level" : "D", - "rank" : 25300, - "wordGroups" : [ { - "wordGroup" : [ "money", "not", "taken" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "dc0a94ae-d212-44ab-b350-8a566533eeb4", - "label" : "Amount of money court directs should not be taken", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d1aa9b8b-2aca-49a0-9f04-99eba9fd8491", - "label" : "Reason for not taking money", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "261c0c09-d9ef-4422-b30e-248461d777ee", - "label" : "Imprisonment in default of payment - on same date as imposition", - "shortCode" : "IMPDP", - "level" : "O", - "rank" : 25400, - "wordGroups" : [ { - "wordGroup" : [ "imprisonment", "default", "payment" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8849cbc-f083-465b-af48-528ba436b90f", - "label" : "Imprisonment reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f2cff709-d97f-4a59-b971-c9adba389319", - "label" : "Further reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label" : "Total amount enforced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "TOTENF", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "96cab958-f6f1-460b-875a-2b1e80a8b1e4", - "label" : "Detention in default of payment - on same date as imposition", - "shortCode" : "DETDP", - "level" : "O", - "rank" : 25500, - "wordGroups" : [ { - "wordGroup" : [ "detention", "default", "payment" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8849cbc-f083-465b-af48-528ba436b90f", - "label" : "Imprisonment reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f2cff709-d97f-4a59-b971-c9adba389319", - "label" : "Further reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "e36171b4-d3fb-4260-88f3-deca99288512", - "label" : "Total amount enforced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1510", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "85c75b3b-18c4-460b-8e06-6358ae410536", - "label" : "Notification of driver's disability to DVLA", - "shortCode" : "DRDIS", - "level" : "D", - "rank" : 25600, - "wordGroups" : [ { - "wordGroup" : [ "notification", "disability", "dvla" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "c00d52fa-2c76-4681-ae67-94d0a9cec02c", - "label" : "Defendant told DVLA would be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9c5e9397-6c28-4484-b075-fd0d08143dd4", - "label" : "Defendant not told DVLA would be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4f97544b-1c9b-4350-8dcb-62e2017e3f8c", - "label" : "Nature and source of disability information", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "58a92700-b229-4b6d-bf63-d9df9cbc59af", - "label" : "Court contact (SPOC)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a96c1135-3057-453e-80c8-602a7f79013a", - "label" : "Hospital order", - "shortCode" : "MHHO", - "level" : "O", - "rank" : 25700, - "wordGroups" : [ { - "wordGroup" : [ "hospital", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "701b27ad-c54a-4011-a605-8c438ff685c9", - "label" : "Name of hospital where defendant will be admitted or detained", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39001635-2dc8-4a58-9934-eeb60fa4d93b", - "label" : "Name of hospital unit", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", - "label" : "Hospital address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "611a9bc2-4a25-438c-90cc-bf86fdd30d86", - "label" : "Mental health conviction status", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label" : "Place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label" : "Conveyor/custodian", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96949d0c-a59c-4a6f-a563-97456c985987", - "label" : "Further directions regarding conveyance to place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1008", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ef1f6633-3c0b-4adc-b5b8-8ef21e91417f", - "label" : "Guardianship Order", - "shortCode" : "MHGO", - "level" : "O", - "rank" : 25800, - "wordGroups" : [ { - "wordGroup" : [ "guardianship", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "440b778c-98c6-4764-b627-8851b5ef0834", - "label" : "Name of the guardian with whom defendant will be placed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "85e500c7-5cf4-4e23-8dcf-1e413c805031", - "label" : "Guardian's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "611a9bc2-4a25-438c-90cc-bf86fdd30d86", - "label" : "Mental health conviction status", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1014", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a19714a0-5d58-4666-bc15-3d9dd2692f77", - "label" : "Community requirement: Foreign travel with list of countries for dates", - "shortCode" : "FTCD", - "level" : "O", - "rank" : 3300, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "country", "dates" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "37853bb7-8844-4cc1-8a34-fa7e4d89d87f", - "label" : "Restitution Order", - "shortCode" : "RESTIT", - "level" : "O", - "rank" : 25900, - "wordGroups" : [ { - "wordGroup" : [ "restitution", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d71816c-6972-4a50-9493-719295a99ac8", - "label" : "Person to recover goods / money", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "eb3a82b0-b56b-4341-977d-9b76a377ce91", - "label" : "Specify stolen goods to be restored to victim", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "43627e85-4cc4-4e2c-8fb6-95a70cd378d1", - "label" : "Specify goods representing stolen goods (proceeds) to be transferred to victim", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c26d561-9275-4406-b38e-26c1e6f22d6e", - "label" : "Specify sum to be paid out of money taken out of offender's possession on apprehension", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3013", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "62510cc8-7dd6-4c98-bc3a-fa24c730f91c", - "label" : "Proceedings stayed", - "shortCode" : "STAYP", - "level" : "O", - "rank" : 26000, - "wordGroups" : [ { - "wordGroup" : [ "proceedings", "stayed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8e36cc12-aabc-485d-bda7-76230bab0399", - "label" : "Circumstances leading to staying proceedings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fde3814-b542-4623-8bf6-8db5fcb86b11", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2061", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ef2eb362-dae5-4ad7-87c6-d1262d55533e", - "label" : "Disqualification order relating to animals for period", - "shortCode" : "ADISQ", - "level" : "O", - "rank" : 26100, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "animal", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", - "label" : "Type of animal", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "db46c413-91e0-46d9-9b56-9eb54232761e", - "label" : "Type of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ce6cdc61-03af-4807-bc55-17e57e263434", - "label" : "All animals kept in contravention of this disqualifciation to be seized", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "269324e9-52a1-4b7c-a023-b41f57b4b811", - "label" : "Directions regarding seizure", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "01431fda-56cf-4447-89b4-64b0777d791d", - "label" : "Minimum period before defendant may apply to terminate order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label" : "Order suspended pending appeal", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", - "label" : "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3115", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "94f2989a-f4fd-4a39-a67f-71a4c0828f9d", - "label" : "Disqualification order relating to animals for life", - "shortCode" : "ADISQL", - "level" : "O", - "rank" : 26200, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "animal", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", - "label" : "Type of animal", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "db46c413-91e0-46d9-9b56-9eb54232761e", - "label" : "Type of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ce6cdc61-03af-4807-bc55-17e57e263434", - "label" : "All animals kept in contravention of this disqualifciation to be seized", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "269324e9-52a1-4b7c-a023-b41f57b4b811", - "label" : "Directions regarding seizure", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "01431fda-56cf-4447-89b4-64b0777d791d", - "label" : "Minimum period before defendant may apply to terminate order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label" : "Order suspended pending appeal", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", - "label" : "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3115", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a05f96e2-d36f-48aa-b6f4-1daefd10bca3", - "label" : "Surety discharged", - "shortCode" : "SURDIS", - "level" : "O", - "rank" : 26300, - "wordGroups" : [ { - "wordGroup" : [ "surety", "discharged" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a3cd0c91-9d16-446a-94a7-7d3db6216587", - "label" : "Surety's Name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a22f62fa-b9c5-45be-bd79-07d3ae7418f9", - "label" : "Payment terms - no payment term set - defendant serving custodial sentence", - "shortCode" : "PTNC", - "level" : "D", - "rank" : 26500, - "wordGroups" : [ { - "wordGroup" : [ "no", "payment", "terms" ] - }, { - "wordGroup" : [ "payment", "custody" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "851e2be3-1436-47a4-824d-ca3168647f0c", - "label" : "Collecting Magistrates' Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e26940b7-2534-42f2-9c44-c70072bf6ad2", - "label" : "Remanded In custody with bail direction", - "shortCode" : "RIB", - "level" : "O", - "rank" : 26600, - "wordGroups" : [ { - "wordGroup" : [ "remand", "conditional", "bail", "direction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label" : "Remand basis", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : "prison", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9ecac6aa-a205-481f-b67d-e2425ad074cf", - "label" : "Bail date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e200e964-628a-4284-bd4e-fab9c819f7f1", - "label" : "Bail time", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", - "label" : "Bail condition reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual" : null, - "reference" : "bailConditionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "680e4cfd-36e0-4b22-8a30-4142bd42bf16", - "label" : "BASS provider", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4046", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand conditional bail", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "16a25613-487d-4359-8fc6-9a3968ff669f", - "label" : "Remanded in custody for medical reports", - "shortCode" : "REMMED", - "level" : "O", - "rank" : 26700, - "wordGroups" : [ { - "wordGroup" : [ "remand", "medical" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3c16ae6f-a6cf-4adc-b483-67875213d4f2", - "label" : "Remanded under Section number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a74b54d3-a8f9-49bf-b2d7-edd991d1537a", - "label" : "Type of medical report required", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "febc23f3-db6f-41ae-8ed7-37920638f597", - "label" : "Reason for report", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8fa194e5-6d5f-41f1-9315-14a779586727", - "label" : "Medical History", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "34b5e96c-ae6c-4b38-91ee-2a04349b8871", - "label" : "Offence Details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c3bcc21e-48e1-43f0-9546-4223f223e7a7", - "label" : "Criminal Record", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8061b2b3-ca56-4002-a76b-6d452bbfa61f", - "label" : "Home Circumstances", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "749a0db6-4186-4f82-935d-d8084f353d19", - "label" : "Officer in case", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7f5235bc-673b-47a7-97d3-616d9095f606", - "label" : "Probation/Probation Services Officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4ddda002-526e-4d70-9df7-eeaae75cfab7", - "label" : "Pre-release bail condition: Passport - give to the court any passport held", - "shortCode" : "PRBCP1", - "level" : "O", - "rank" : 26800, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "passport", "court" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JL", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d85486c4-06f1-4813-859b-5495ca578bde", - "label" : "Pre-release bail condition: Passport - give to HM Revenue and Customs any passport held", - "shortCode" : "PRBCP2", - "level" : "O", - "rank" : 27000, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "passport", "hmrc" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "rollUpPrompts": false, - "publishedForNows": false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "label" : "Community requirement: Foreign travel prohibition with excepted country for period", - "shortCode" : "FTPEP", - "level" : "O", - "rank" : 3400, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "except", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", - "label" : "Country allowed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "countryAllowed", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "rollUpPrompts": false, - "publishedForNows": false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bb0a2862-a565-46aa-96ed-1e6f972949d0", - "label" : "Pre-release bail condition: Passport - give to Police Station", - "shortCode" : "PRBCP3", - "level" : "O", - "rank" : 27100, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "passport", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label" : "Police Station Name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1ebd5ca1-866d-43a0-ad9a-464e8a228235", - "label" : "Pre-release bail condition: Passport - surrender to Police Station during football control period", - "shortCode" : "PRBCP4", - "level" : "O", - "rank" : 27200, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "football", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label" : "Police Station Name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "279fd36e-17c5-42b2-b56b-a6ab27b9b592", - "label" : "Pre-release bail condition: Passport - give to the court any identity card held which could be used as a travel document within the European Economic Area", - "shortCode" : "PRBCP5", - "level" : "O", - "rank" : 27300, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "travel", "document", "European", "court" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JL", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", - "label" : "Pre-release bail condition: Passport - give to HM Revenue and Customs any identity card held which could be used as a travel document within the European Economic Area", - "shortCode" : "PRBCP6", - "level" : "O", - "rank" : 27400, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "travel", "document", "European", "hmrc" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e5864697-640a-47be-9289-9e6205bbe579", - "label" : "Pre-release bail condition: Passport - give to police station any identity card held which could be used as a travel document within the European Economic Area", - "shortCode" : "PRBCP7", - "level" : "O", - "rank" : 27500, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "travel", "document", "European", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label" : "Police Station Name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] + "id": "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", + "label": "Adjournment reason: Unexpected circumstances meant that the case could not be heard", + "shortCode": "UNF", + "level": "O", + "rank": 11100, + "canBeSubjectOfBreach": true, + "canBeSubjectOfVariation": true, + "wordGroups": [ + { + "wordGroup": [ + "unexpected", + "circumstances" + ] + }, + { + "wordGroup": [ + "adjournment", + "unforseen" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rheswm dros ohirio: Gwrthodwyd gohirio’r achos", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "KU", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "alwaysPublished": true, + "resultDefinitionRules": [] }, { - "id": "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", - "label": "Pre-release bail condition: Passport - surrender identity card to police station during football control period", - "shortCode": "PRBCP8", + "id": "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", + "label": "Adjournment reason: Insufficient court time to hear the case", + "shortCode": "INSUF", "level": "O", - "rank": 83800, - "isBooleanResult": false, + "rank": 11200, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "insufficient", + "Time" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio: Nid oedd digon o amser i wrando'r achos", "isAvailableForCourtExtract": true, - "financial": "N", - "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "KQ", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, "publishedAsAPrompt": true, "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9fd6a4ef-1055-4e54-b035-f1130a524388", + "label": "Adjournment reason: Non-standard reason", + "shortCode": "NSR", + "level": "O", + "rank": 11300, "wordGroups": [ { "wordGroup": [ - "PRBCP8" + "adjournment", + "reason", + "other" ] }, { "wordGroup": [ - "pre-release", - "travel", - "document", - "European", - "police", - "football" + "adjournment", + "reason", + "non-standard" ] } ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Pre-release bail conditions", - "qualifier": "JM", - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "resultTextTemplate": "Passport - surrender identity card to {policeStationName} police station during football control period", - "terminatesOffenceProceedings": false, + "userGroups": [], "prompts": [ { - "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label": "Police Station Name", + "id": "28a271c5-aff0-4e60-b599-88e441960699", + "label": "Reason for adjournment", + "welshLabel": "Rheswm dros ohirio", "resultPromptRule": "mandatory", "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, "sequence": 100, - "userGroups": [], + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "NSR", "courtExtract": "Y", - "financial": "N", - "jurisdiction": "B", - "min": "1", - "max": "70", - "reference": "policeStationName" + "durationSequence": null } - ] + ], + "welshLabel": "Rheswm dros ohirio: Rheswm ansafonol", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] }, { - "id" : "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", - "label" : "Pre-release bail condition: Surety - find a surety", - "shortCode" : "PRBCS1", - "level" : "O", - "rank" : 27700, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "surety" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", - "label" : "In the sum of", - "welshLabel" : "Y swm o", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JU", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", - "label" : "Pre-release bail condition: Surety - find a continuous surety", - "shortCode" : "PRBCS2", - "level" : "O", - "rank" : 27800, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "surety", "conditional" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", - "label" : "In the sum of", - "welshLabel" : "Y swm o", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JV", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4558f9b2-47f8-4430-a0f8-684df5d55761", - "label" : "Pre-release bail condition: Surety - find sureties", - "shortCode" : "PRBCS3", - "level" : "O", - "rank" : 27900, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "sureties" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5139e711-b645-4b1c-af81-84f5887abdf6", - "label" : "Number of sureties", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", - "label" : "In the sum of", - "welshLabel" : "Y swm o", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JW", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b9581c12-81c9-434d-8851-03d9638547fa", - "label" : "Pre-release bail condition: Security - lodge with Court", - "shortCode" : "PRBCSE1", - "level" : "O", - "rank" : 28000, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "security", "lodge" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e18066ab-1dd0-4bee-a43d-30417de4c3c3", - "label" : "Specify what is to be lodged", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "364d3065-0699-4df1-a68f-a69c429d0867", - "label" : "Community requirement: Foreign travel prohibition with excepted country for dates", - "shortCode" : "FTPED", - "level" : "O", - "rank" : 3500, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "except", "dates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", - "label" : "Country allowed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "countryAllowed", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "464b2a25-dfe4-42b2-8cc7-29a66edf9743", - "label" : "Dates of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "datesOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "rollUpPrompts": false, - "publishedForNows": true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b922e6bd-70a4-4b28-b583-165179af6162", - "label" : "Pre-release bail condition: Security - pay a deposit to Court", - "shortCode" : "PRBCSE2", - "level" : "O", - "rank" : 28100, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "security", "deposit" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "04d4075d-b306-44f4-9200-db9ad9577ea2", - "label" : "Amount", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", - "label" : "Pre-release bail condition: Other - give the court a telephone number and tell the court immediately if the number changes or you can no longer be contacted on that number", - "shortCode" : "PRBCT", - "level" : "O", - "rank" : 28200, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "telephone", "number" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "68972040-55eb-42c8-aac6-975f88d64511", - "label" : "Date by which must give telephone number", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JG", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c51e3522-5363-4af0-b5af-97a5f9eb5462", - "label" : "Pre-release bail condition: Other", - "shortCode" : "PRBCO", - "level" : "O", - "rank" : 28300, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "other" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad5ad2de-35e5-4395-b5e7-913d0fc09349", - "label" : "Specify", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "525c4660-9a0b-4a86-80fc-0efce539d6a5", - "label" : "Bail condition: Assessments/Reports - undergo an assessment for dependency on Class A drugs and participate in any follow-up assessment, assistance or treatment considered appropriate", - "shortCode" : "PORAR1", - "level" : "O", - "rank" : 28400, - "wordGroups" : [ { - "wordGroup" : [ "bail", "assessment", "Drug" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fc5fe29-28f8-47dc-86f9-7b3221a71975", - "label" : "Specify qualified person to conduct assessments/reports", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "specifyQualifiedPersonToConductAssessmentsreports", - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": true - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "GT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e073f3ba-2585-4c0d-8c31-e51a1662d143", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Bail condition: Assessments/Reports - participate in any assistance or treatment considered appropriate for misuse of class A drugs", - "shortCode" : "PORAR2", - "level" : "O", - "rank" : 28500, - "wordGroups" : [ { - "wordGroup" : [ "bail", "treatment", "Drug" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7656ce22-8bee-497c-8e27-c7718a743652", - "label" : "Specify qualified person who will decide treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "specifyQualifiedPersonWhowillDecideTreatment", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "GT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1aa6a828-fedb-43bd-89e8-bc74586d5e85", - "label" : "Bail condition: Assessments/Reports - provide pre-sentence drug test samples", - "shortCode" : "PORAR3", - "level" : "O", - "rank" : 28600, - "wordGroups" : [ { - "wordGroup" : [ "bail", "Drug", "test" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2e4bf9d6-5184-45bf-bd33-b4e2d1430e2f", - "label" : "Date to provide samples by", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a124724e-2348-41fc-a4b6-6f22c8ef421e", - "label" : "Specify details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "GT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "136725da-5b0a-43d3-adac-54f916bcf2bb", - "label" : "Bail condition: Assessments/Reports - report to the local probation office for a report to be made", - "shortCode" : "PORAR4", - "level" : "O", - "rank" : 28700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "probation", "office", "report" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f4da7a9c-a52e-4fbc-a21b-ce1a1d7c6b5d", - "label" : "Probation office", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d351e768-f0f8-4e14-a042-f8306981b1c8", - "label" : "Time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "55be2d17-7b95-4cc9-b8f0-290f84e66d85", - "label" : "Date", - "welshLabel" : "Dyddiad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "919ca489-f98d-4776-8b44-2e42958247d4", - "label" : "Provider of probation services", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JZ", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", - "label" : "Bail condition: Assessments/Reports - report to the local office of a provider of probation services for a report to be made", - "shortCode" : "PORAR5", - "level" : "O", - "rank" : 28800, - "wordGroups" : [ { - "wordGroup" : [ "bail", "probation", "provider", "report" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JZ", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Bail condition: Assessments/Reports - make available for reports to be prepared", - "shortCode" : "PORAR6", - "level" : "O", - "rank" : 28900, - "wordGroups" : [ { - "wordGroup" : [ "bail", "available", "report" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JZ", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", - "label" : "Bail condition: Assessments/Reports - report to a youth justice team for a report to be made", - "shortCode" : "PORAR7", - "level" : "O", - "rank" : 29000, - "wordGroups" : [ { - "wordGroup" : [ "bail", "report", "yjt" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ae2e98c1-1b4b-4b19-8f60-22bd56aaed72", - "label" : "Youth Justice Team Location", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d351e768-f0f8-4e14-a042-f8306981b1c8", - "label" : "Time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "55be2d17-7b95-4cc9-b8f0-290f84e66d85", - "label" : "Date", - "welshLabel" : "Dyddiad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RE", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "label" : "Community requirement: Alcohol treatment", - "shortCode" : "ATR", - "level" : "O", - "rank" : 3600, - "wordGroups" : [ { - "wordGroup" : [ "Alcohol", "treatment", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f092fe58-2297-4d10-818a-8b303692ac39", - "label" : "Under direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3110", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", - "label" : "Bail condition: Computer - not to use any device capable of accessing the internet unless it can retain and display a history of internet use and it is made available to police for inspection upon request", - "shortCode" : "PORCO1", - "level" : "O", - "rank" : 29100, - "wordGroups" : [ { - "wordGroup" : [ "bail", "device", "internet", "history" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RF", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "rollUpPrompts": false, - "publishedForNows": true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6889288e-5e4a-4523-be2c-cc993a00af29", - "label" : "Bail condition: Computer - not to delete any history of computer use", - "shortCode" : "PORCO2", - "level" : "O", - "rank" : 29200, - "wordGroups" : [ { - "wordGroup" : [ "bail", "delete", "history" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RG", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0649851f-01f8-48fb-928d-6fe100042b2a", - "label" : "Bail condition: Computer - not to use", - "shortCode" : "PORCO3", - "level" : "O", - "rank" : 29300, - "wordGroups" : [ { - "wordGroup" : [ "bail", "computer", "not", "use" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b862676c-a945-4fa4-b0fc-551a2d043593", - "label" : "Specify device / service", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4f585f53-f68c-41f1-9734-e88aa1e91f14", - "label" : "Specify restriction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", - "label" : "Bail condition: Computer - not to possess any device capable of storing digital images unless you make it available on request", - "shortCode" : "PORCO4", - "level" : "O", - "rank" : 29400, - "wordGroups" : [ { - "wordGroup" : [ "bail. device", "images" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", - "label" : "Bail condition: Curfew", - "shortCode" : "PORCU1", - "level" : "O", - "rank" : 29500, - "wordGroups" : [ { - "wordGroup" : [ "bail", "Curfew" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JD", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "03edddce-c188-4b38-9832-988d9d1ee802", - "label" : "Bail condition: Curfew with electronic monitoring - first notification", - "shortCode" : "PORCU2", - "level" : "O", - "rank" : 29600, - "wordGroups" : [ { - "wordGroup" : [ "bail", "Electronic", "Monitoring", "first" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5c02ff4c-6a33-4089-8c9e-f120a688b018", - "label" : "Bail condition: Curfew with electronic monitoring - variation notification", - "shortCode" : "PORCU2V", - "level" : "O", - "rank" : 29700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "Electronic", "Monitoring", "variation" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b271650b-0203-4d68-bcef-307038acfdf0", - "label" : "Date of original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "afc73f23-3308-40a1-ae8e-c00a8f282699", - "label" : "Original case number if different", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d45c8150-3095-4cb3-a55e-b4fd094af560", - "label" : "Bail condition: Curfew with electronic monitoring - additional notification", - "shortCode" : "PORCU2A", - "level" : "O", - "rank" : 29800, - "wordGroups" : [ { - "wordGroup" : [ "bail electronic", "Monitoring", "Additional" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b271650b-0203-4d68-bcef-307038acfdf0", - "label" : "Date of original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "afc73f23-3308-40a1-ae8e-c00a8f282699", - "label" : "Original case number if different", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "922386e1-bdc2-403e-8902-af1da14e1fd8", - "label" : "Bail condition: Curfew with electronic monitoring - continuation notification", - "shortCode" : "PORCU2C", - "level" : "O", - "rank" : 29900, - "wordGroups" : [ { - "wordGroup" : [ "bail", "Electronic", "Monitoring", "continuation" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d34b643e-74d5-4288-a4b9-bce14d0069d5", - "label" : "Bail condition: Curfew - and present him/herself to a police officer who asks to see them between these times", - "shortCode" : "PORCU3", - "level" : "O", - "rank" : 30000, - "wordGroups" : [ { - "wordGroup" : [ "bail", "present", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JE", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "label" : "Community requirement: Alcohol treatment non-residential", - "shortCode" : "ATRNR", - "level" : "O", - "rank" : 3700, - "wordGroups" : [ { - "wordGroup" : [ "Alcohol", "treatment", "Non-residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "62882318-42b3-4bf9-8bc5-e724aeaaa19a", - "label" : "Treatment institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f092fe58-2297-4d10-818a-8b303692ac39", - "label" : "Under direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6aaf3645-0806-4917-ada5-b019c6a606c5", - "label" : "Treatment intervals", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3110", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BS", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fb9b273e-06c3-4a4a-940c-3c053c559abe", - "label" : "Bail condition: Exclusion - not drive a motor vehicle on any road or in any other public place", - "shortCode" : "PORE1", - "level" : "O", - "rank" : 30100, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "drive" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JF", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "481547e6-9099-475e-8028-2bce2c52ff5f", - "label" : "Bail condition: Exclusion - not to associate with", - "shortCode" : "PORE2", - "level" : "O", - "rank" : 30200, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "associate" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", - "label" : "Names", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JK", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", - "label" : "Bail condition: Exclusion - not to contact directly or indirectly", - "shortCode" : "PORE3", - "level" : "O", - "rank" : 30300, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "contact" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", - "label" : "Names", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JK", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dfa19118-e944-43f4-93b2-2ed49df5553f", - "label" : "Bail condition: Exclusion - not to enter a place except to attend court or pre-arranged appointment with solicitor", - "shortCode" : "PORE4", - "level" : "O", - "rank" : 30400, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "enter", "court", "solicitor" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1559b30a-b931-4e3d-86e9-88ab8b116a81", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JO", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c1d490ed-1754-43b8-a485-fdab1a25f8cb", - "label" : "Bail condition: Exclusion - not to enter a place", - "shortCode" : "PORE5", - "level" : "O", - "rank" : 30500, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "enter" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1559b30a-b931-4e3d-86e9-88ab8b116a81", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JO", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "90146942-b1b9-4a2e-af2b-141f50d45e5c", - "label" : "Bail condition: Exclusion - not go to any public house, licensed club or off licence", - "shortCode" : "PORE6", - "level" : "O", - "rank" : 30600, - "wordGroups" : [ { - "wordGroup" : [ "bail", "public", "house" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JN", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9da5909e-d715-4f79-a1b8-34780c57acf1", - "label" : "Bail condition: Exclusion - not go within a radius", - "shortCode" : "PORE7", - "level" : "O", - "rank" : 30700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "radius" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ef055240-4c06-45f3-961a-1344ebd56ea5", - "label" : "Radius", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JO", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d709a455-02cc-40d9-b3d2-e4194dc46792", - "label" : "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer", - "shortCode" : "PORE8", - "level" : "O", - "rank" : 30800, - "wordGroups" : [ { - "wordGroup" : [ "bail", "radius", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ce3ef725-44bf-480c-954a-a2f5cbf75daf", - "label" : "Radius", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JP", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", - "label" : "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer. One visit only", - "shortCode" : "PORE9", - "level" : "O", - "rank" : 30900, - "wordGroups" : [ { - "wordGroup" : [ "bail", "radius", "police", "visit" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ce3ef725-44bf-480c-954a-a2f5cbf75daf", - "label" : "Radius", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JP", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, - { - "id" : "99586f43-5b18-45da-87f7-1764ad149985", - "label" : "Community requirement: Alcohol treatment residential", - "shortCode" : "ATRR", - "level" : "O", - "rank" : 3800, - "wordGroups" : [ { - "wordGroup" : [ "Alcohol", "treatment", "Residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "62882318-42b3-4bf9-8bc5-e724aeaaa19a", - "label" : "Treatment institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f092fe58-2297-4d10-818a-8b303692ac39", - "label" : "Under direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3110", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "74046e6e-ecb8-4f1f-b210-c5731f080913", - "label" : "Restraining order until further order", - "shortCode" : "RESTRAOF", - "level" : "O", - "rank" : 1000, - "wordGroups" : [ { - "wordGroup" : [ "Restraining", "Order", "Further" ] - }, { - "wordGroup" : [ "RESTRAOF" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", - "label" : "Protected person", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "8df0ec7e-5985-4998-af1a-5da293d9cb3c", - "label" : "Order details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47337f1c-e343-4093-884f-035ba96c4db0", - "label" : "Conviction / acquittal", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8dc70c95-fb09-4842-9138-bc579fceb605", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ea26f773-0a91-4526-b4ad-84d07b5bf940", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3047", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", - "label" : "Bail condition: Exclusion - not to leave", - "shortCode" : "PORE11", - "level" : "O", - "rank" : 31100, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "leave" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", - "label" : "Place or area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", - "label" : "Bail condition: Exclusion - not to go more than a specified radius from a specified place", - "shortCode" : "PORE12", - "level" : "O", - "rank" : 31200, - "wordGroups" : [ { - "wordGroup" : [ "bail", "radius", "place" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ce3ef725-44bf-480c-954a-a2f5cbf75daf", - "label" : "Radius", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", - "label" : "Place or area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4c79ea50-6e14-4c47-8836-c0d0f647e45a", - "label" : "Bail condition: Exclusion - the exclusion condition to be electronically monitored with a GPS tag", - "shortCode" : "PORE13", - "level" : "O", - "rank" : 31300, - "wordGroups" : [ { - "wordGroup" : [ "bail", "exclusion", "GPS" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "834ed20a-d7d8-419b-b72d-61b30db36560", - "label" : "Bail condition: Other", - "shortCode" : "PORO1", - "level" : "O", - "rank" : 31400, - "wordGroups" : [ { - "wordGroup" : [ "bail", "other" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9be3658b-f425-4673-8c17-b2407badb8c2", - "label" : "Specify post-release bail condition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "46051d94-0e60-4010-b86d-cf65e1a464d8", - "label" : "Bail condition: Other - to keep mobile phone switched on, fully charged and on your person 24 hours a day", - "shortCode" : "PORO2", - "level" : "O", - "rank" : 31500, - "wordGroups" : [ { - "wordGroup" : [ "bail", "mobile", "phone" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0163061b-ac29-4d49-9491-13168ac60f82", - "label" : "Mobile number", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RH", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", - "label" : "Bail condition: Other - report to police station", - "shortCode" : "PORO3", - "level" : "O", - "rank" : 31600, - "wordGroups" : [ { - "wordGroup" : [ "bail", "report", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b9bc8c23-dc0b-433d-b9e4-4b957fd1b7d4", - "label" : "Police Station Name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e834e96c-f300-4da9-b781-51d38204deb5", - "label" : "Reporting days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JQ", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", - "label" : "Bail condition: Other - see solicitor", - "shortCode" : "PORO4", - "level" : "O", - "rank" : 31700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "see", "solicitor" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", - "label" : "Bail condition: Other - see barrister", - "shortCode" : "PORO5", - "level" : "O", - "rank" : 31800, - "wordGroups" : [ { - "wordGroup" : [ "bail", "see", "barrister" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", - "label" : "Bail condition: Residence - live, and sleep each night, at bail hostel", - "shortCode" : "PORR1", - "level" : "O", - "rank" : 31900, - "wordGroups" : [ { - "wordGroup" : [ "bail", "live", "sleep", "hostel" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "16816060-7454-460c-a177-c8da502e18ab", - "label" : "Hostel name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JR", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a50ad03e-d299-4da7-874c-0f233d7d503d", - "label" : "Bail condition: Residence - live, and sleep each night, at bail hostel or at any other place where you may be told to go by specified person", - "shortCode" : "PORR2", - "level" : "O", - "rank" : 32000, - "wordGroups" : [ { - "wordGroup" : [ "bail", "live", "sleep", "hostel", "other" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "16816060-7454-460c-a177-c8da502e18ab", - "label" : "Hostel name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "713e61b8-4899-408f-b6e4-77cc33abbb1a", - "label" : "Supervisor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JS", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "label" : "Community requirement: Attendance centre", - "shortCode" : "ACR", - "level" : "O", - "rank" : 3900, - "wordGroups" : [ { - "wordGroup" : [ "attendance", "centre", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6724800d-3f2d-4503-a078-3a50497a3a20", - "label" : "Number of hours", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Hours", - "wordGroup" : [ "Hours" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "28e2f7e0-8886-4cf6-a828-776849f8d3d4", - "label" : "Additional / concurrent to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3111", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c18dd89d-e057-42aa-b071-0a91226da3bf", - "label" : "Bail condition: Residence - live and sleep each night at address", - "shortCode" : "PORR3", - "level" : "O", - "rank" : 32100, - "wordGroups" : [ { - "wordGroup" : [ "bail", "live", "sleep" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", - "label" : "Address", - "welshLabel" : "Cyfeiriad", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RB", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "795079ed-4b5a-4750-b077-d653180d43ae", - "label" : "Bail condition: Residence - not to live in the same household", - "shortCode" : "PORR4", - "level" : "O", - "rank" : 32200, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "live" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4f585f53-f68c-41f1-9734-e88aa1e91f14", - "label" : "Specify restriction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "HC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "71efa12c-a68e-4537-ac7d-27ebf91557a6", - "label" : "Bail condition: Residence BASS - live and sleep each night at specified address and comply with the conditions of BASS", - "shortCode" : "PORR5", - "level" : "O", - "rank" : 32300, - "wordGroups" : [ { - "wordGroup" : [ "bail", "live", "sleep", "bass" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0dbf39c0-02e9-498f-87cd-c1221270c535", - "label" : "BASS address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RB", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "36951b36-de01-45bc-91a7-1c68f5989ed5", - "label" : "Bail condition: Residence BASS - take part in additional mandatory support sessions (more than the minimum of one session per week)", - "shortCode" : "PORR6", - "level" : "O", - "rank" : 32400, - "wordGroups" : [ { - "wordGroup" : [ "bail", "support", "sessions" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "91141263-7f27-494f-95e9-04a113952974", - "label" : "Bail condition: Surety - find continuous surety / sureties", - "shortCode" : "PORS", - "level" : "O", - "rank" : 32500, - "wordGroups" : [ { - "wordGroup" : [ "bail", "continuous", "surety" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5139e711-b645-4b1c-af81-84f5887abdf6", - "label" : "Number of sureties", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "088ef869-d7f9-4184-b624-6c1e9fab8bee", - "label" : "In the sum of", - "welshLabel" : "Y swm o", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JX", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", - "label" : "Bail condition: Travel - not to apply for international travel documents or be in possession of any", - "shortCode" : "PORT1", - "level" : "O", - "rank" : 32600, - "wordGroups" : [ { - "wordGroup" : [ "bail", "travel", "documents" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", - "label" : "Bail condition: Travel - not to leave England and Wales", - "shortCode" : "PORT2", - "level" : "O", - "rank" : 32700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "leave", "England", "Wales" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JY", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fbed768b-ee95-4434-87c8-e81cbc8d24c8", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Next hearing in Crown Court", - "shortCode" : "NHCCS", - "level" : "O", - "rank" : 500, - "wordGroups" : [ { - "wordGroup" : [ "NHCCS" ] - }, { - "wordGroup" : [ "adjournment", "Crown" ] - }, { - "wordGroup" : [ "next", "hearing", "Crown" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : "Hours", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : "Minutes", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dfac671c-5b85-42a1-bb66-9aeee388a08d", - "label" : "Time of hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTIME", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f507153-6dc9-4ec0-94db-c821eff333f1", - "label" : "Courtroom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HCROOM", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7746831a-d5dd-4fa8-ac13-528573948c8a", - "label" : "Courthouse name", - "welshLabel" : "Enw’r adeilad llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HCHOUSE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9403f0d7-90b5-4377-84b4-f06a77811362", - "label" : "Remand Status", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "c82897b8-7e25-4b5d-9cd3-dbf3e1cb7c0c", - "qual" : null, - "reference" : "remandStatus", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "42962373-587c-4324-9ae6-7c99171d1c69", - "label" : "Week commencing", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HDATE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7e72e671-295a-4e56-a419-2a59a14863b0", - "label" : "Fixed date", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : null, - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : "fixedDate", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Next hearing", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3a529001-2f43-45ba-a0a8-d3ced7e9e7ad", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Remanded on conditional bail", - "shortCode" : "RC", - "reference" : "", - "level" : "O", - "rank" : 32800, - "wordGroups" : [ { - "wordGroup" : [ "remanded", "conditional", "bail" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label" : "Is the defendant excused attendance?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantExcusedAttendance", - "courtExtract" : "Y", - "durationSequence" : null, - "hidden" : false - }, { - "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", - "label" : "Bail condition reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual" : null, - "reference" : "bailConditionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dec5104c-3342-4544-b287-31ea969e0f15", - "label" : "BASS provider", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bassProvider", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4027", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand conditional bail", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "mandatory" - }, { - "childResultDefinitionId" : "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "ruleType" : "mandatory" - }, { - "childResultDefinitionId" : "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "ruleType" : "optional" - } ] - }, { - "id" : "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", - "label" : "Remanded on unconditional bail", - "shortCode" : "RU", - "level" : "O", - "rank" : 33000, - "wordGroups" : [ { - "wordGroup" : [ "remand", "unconditional" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label" : "Is the defendant excused attendance?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantExcusedAttendance", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4047", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand unconditional bail", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "label" : "Community requirement: Alcohol abstinence", - "shortCode" : "AAR", - "level" : "O", - "rank" : 4000, - "wordGroups" : [ { - "wordGroup" : [ "Alcohol", "abstinence", "Requirement" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3146", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d0a369c9-5a28-40ec-99cb-da7943550b18", - "label" : "Remanded in custody", - "shortCode" : "RI", - "level" : "O", - "rank" : 33300, - "wordGroups" : [ { - "wordGroup" : [ "remand", "custody" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "21ecdc07-7397-4eac-9c26-e66dfeb32d01", - "label" : "TV link at next hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "tvLinkAtNextHearing", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "343de039-f33b-4770-b61c-4d6db4ae369c", - "label" : "TV link pre-hearing conference time", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "tVLinkPrehearingConferenceTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label" : "Remand basis", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual" : null, - "reference" : "remandBasis", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "7b2e6219-ddcb-4afa-8615-8de978e60af1", - "label" : "Bail exception", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "10a769e8-1b1c-430d-844b-8948942cf353", - "qual" : null, - "reference" : "bailException", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", - "label" : "Bail exception reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "c0fb2ca5-7702-4f01-b344-33029cfdcd47", - "qual" : null, - "reference" : "bailExceptionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4028", - "drivingTestStipulation":1, - "pointsDisqualificationCode":"TT99", - "dvlaCode": "C", - "secondaryCJSCodes": [ - { - "cjsCode":"1234", - "text":"SecondaryCjsCode text1" - }, - { - "cjsCode":"5678", - "text":"SecondaryCjsCode text2" - } - ], - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "C", - "resultDefinitionGroup" : "Remand in custody", - "policeSubjectLineTitle" : "Final Sentence", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6af22d8d-6157-460e-b641-e6db90d15289", - "label" : "Remanded in custody pending receipt of Prosecutor's written notice of appeal", - "shortCode" : "RIBA2", - "level" : "O", - "rank" : 33500, - "wordGroups" : [ { - "wordGroup" : [ "remand", "appeal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e1b8b750-af91-466a-acf8-c7f6685d3b26", - "label" : "Time when oral notice of appeal was given", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "timeOfOralNotice", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8b0bf6d4-e48a-425c-bc0d-fed8948010e5", - "label" : "Custodian name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "custodianName", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand appeal", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7a0932f5-8264-412e-a83c-2b6d1dce1506", - "label" : "Prosecutor's notice of appeal received. Remanded in custody", - "shortCode" : "RIBA48", - "level" : "O", - "rank" : 33600, - "wordGroups" : [ { - "wordGroup" : [ "remand", "custody", "appeal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "66f338f2-6c3b-4511-b224-97cbc1eab1c0", - "label" : "Time when written notice of appeal was received", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "timeofWrtittenNotice", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "de91870f-f1e3-4dcd-a8ee-fa409ee34beb", - "label" : "Crown Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "crownCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6730aae5-9e6b-45e6-8a2e-0e06cc70c7ca", - "label" : "Date otherwise bailed to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4049", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "C", - "resultDefinitionGroup" : "Remand appeal", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "074124d5-b07a-4b73-8b9a-792e8462138a", - "label" : "Prosecutor's bail appeal withdrawn. (D in local custody). Release in accordance with earlier decision", - "shortCode" : "RIBAWL", - "level" : "O", - "rank" : 33700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "appeal", "wthdrawn" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7af5471c-34c1-4176-b595-8f9a796ac455", - "label" : "Basis of appeal being withdrawn", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand appeal", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6511006f-b40d-4fcb-8372-bc38fde69b64", - "label" : "Remitted to youth court for trial", - "shortCode" : "REMYCT", - "level" : "O", - "rank" : 33800, - "wordGroups" : [ { - "wordGroup" : [ "remit", "youth", "trial" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "44e3bc06-0c07-422a-84a1-bcca57f898f4", - "label" : "Youth Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7f2d58f4-ca3d-4059-9df5-19f7cb744676", - "label" : "Remitted to youth court for sentence", - "shortCode" : "REMYCS", - "level" : "O", - "rank" : 33900, - "wordGroups" : [ { - "wordGroup" : [ "remit", "youth", "sentence" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "44e3bc06-0c07-422a-84a1-bcca57f898f4", - "label" : "Youth Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fcbf777d-1a73-47e7-ab9b-7c51091a022c", - "label" : "Direction made under Section 45 of the Youth Justice and Criminal Evidence Act 1999", - "shortCode" : "D45", - "level" : "O", - "rank" : 34000, - "wordGroups" : [ { - "wordGroup" : [ "direction", "45", "youth" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "03983f51-f937-4dd8-9656-276b1ca86785", - "label" : "Restricting publicity in respect of youth - Specify name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label" : "Further details", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4510", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", - "label" : "Direction under Section 45A of the Youth Justice and Criminal Evidence Act 1999", - "shortCode" : "D45A", - "level" : "O", - "rank" : 34200, - "wordGroups" : [ { - "wordGroup" : [ "direction", "45a", "youth" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "03983f51-f937-4dd8-9656-276b1ca86785", - "label" : "Restricting publicity in respect of youth - Specify name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label" : "Further details", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4510", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "89e3c24b-acbf-42fb-9eee-169b83423035", - "label" : "Direction made under Section 46 of the Youth Justice and Criminal Evidence Act 1999", - "shortCode" : "D46", - "level" : "O", - "rank" : 34300, - "wordGroups" : [ { - "wordGroup" : [ "direction", "46", "youth" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "27247b35-5013-41cb-9b24-26d38332e547", - "label" : "Restricting publicity in respect of adult witness - specify name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label" : "Further details", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4510", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c265d589-fcc0-451b-be43-7856e32524ba", - "label" : "Direction made under Section 39 of the Children and Young Persons Act 1933", - "shortCode" : "D39", - "level" : "O", - "rank" : 34400, - "wordGroups" : [ { - "wordGroup" : [ "direction", "39", "children" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ff5f8083-5413-467f-b359-9abfb49ecbb2", - "label" : "State if youth is defendant, witness or victim or combination of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label" : "Further details", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4510", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d683f73c-488e-4d8e-a685-d37049c2a3e5", - "label" : "Community requirement: Alcohol abstinence with alcohol limit", - "shortCode" : "AARAL", - "level" : "O", - "rank" : 4100, - "wordGroups" : [ { - "wordGroup" : [ "Alcohol", "abstinence", "limit" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2d340f59-2b74-437b-8d7d-6b316613021c", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fac82e4b-7c37-4a46-a689-3f1defe2474a", - "label" : "Alcohol limit", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3146", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "393c5be8-dadb-484b-ab39-0f1eb57aeae5", - "label" : "Order made under Section 11 of the Contempt of Court Act 1981 until date", - "shortCode" : "D11", - "level" : "O", - "rank" : 34500, - "wordGroups" : [ { - "wordGroup" : [ "11", "contempt", "until" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a73b3f21-1978-45fc-b413-0299c60e07ad", - "label" : "Details of the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3ea2cb5c-397e-4dd3-8328-d375135f3191", - "label" : "Date of expiry", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", - "label" : "Purpose of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9647428f-0946-4a09-aec1-7bdfcd324ac6", - "label" : "Order made under Section 11 of the Contempt of Court Act 1981 until further order", - "shortCode" : "D11FO", - "level" : "O", - "rank" : 34600, - "wordGroups" : [ { - "wordGroup" : [ "11", "contempt", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a73b3f21-1978-45fc-b413-0299c60e07ad", - "label" : "Details of the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", - "label" : "Purpose of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "21271525-76f4-4134-9c93-1be012a574c8", - "label" : "Order made under Section 4 of the Contempt of Court Act 1981", - "shortCode" : "D4", - "level" : "O", - "rank" : 34700, - "wordGroups" : [ { - "wordGroup" : [ "Order", "4", "contempt" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a73b3f21-1978-45fc-b413-0299c60e07ad", - "label" : "Details of the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "318c9eb2-cf3c-4592-a353-1b2166c15f81", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4510", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d023e3a7-33ef-45b4-a19b-5137afecbf1f", - "label" : "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until date - derogatory assertions", - "shortCode" : "D58", - "level" : "O", - "rank" : 34800, - "wordGroups" : [ { - "wordGroup" : [ "Order", "58", "until" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", - "label" : "Assertions", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", - "label" : "Witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3ea2cb5c-397e-4dd3-8328-d375135f3191", - "label" : "Date of expiry", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2c18aff1-b535-47b6-8415-8841e85eac49", - "label" : "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until further order - derogatory assertions", - "shortCode" : "D58FO", - "level" : "O", - "rank" : 34900, - "wordGroups" : [ { - "wordGroup" : [ "Order", "58", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", - "label" : "Assertions", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", - "label" : "Witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2e725ba6-0e29-4ffb-a5c7-31b67344c211", - "label" : "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity in respect of youth", - "shortCode" : "D49Y", - "level" : "O", - "rank" : 35100, - "wordGroups" : [ { - "wordGroup" : [ "Order", "49", "publicity", "youth" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "788bb732-5467-4c0b-ba88-96a0ef8aaeb4", - "label" : "Name of youth", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94084f13-fa2f-4d24-938b-0656292edd59", - "label" : "Details of reporting restriction lifted", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "98366b12-b70a-4e66-b71d-a5bbd39bd595", - "label" : "Order made allowing reporting", - "shortCode" : "DALLOW", - "level" : "O", - "rank" : 35200, - "wordGroups" : [ { - "wordGroup" : [ "allow", "reporting" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "42711aff-3d3a-4d85-8e68-f03065823422", - "label" : "Details of directions allowed to be reported", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", - "label" : "Direction restricting publicity revoked", - "shortCode" : "DPR", - "level" : "O", - "rank" : 35300, - "wordGroups" : [ { - "wordGroup" : [ "publicity", "revoked" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1a7da720-a95a-46e4-b2ee-6b8e9db430cc", - "label" : "Date direction allowing publicity made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", - "label" : "Excepting direction varied", - "shortCode" : "DV", - "level" : "O", - "rank" : 35400, - "wordGroups" : [ { - "wordGroup" : [ "exception", "direction", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "851f11ed-99d5-4d2a-96c0-227df6743250", - "label" : "Date excepting direction made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", - "label" : "Details of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "label" : "Community requirement: Mental health treatment", - "shortCode" : "MHTR", - "level" : "O", - "rank" : 4200, - "wordGroups" : [ { - "wordGroup" : [ "Mental", "Health", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HG", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", - "label" : "Excepting direction revoked", - "shortCode" : "DR", - "level" : "O", - "rank" : 35500, - "wordGroups" : [ { - "wordGroup" : [ "exception", "direction", "revoked" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "851f11ed-99d5-4d2a-96c0-227df6743250", - "label" : "Date excepting direction made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b3035ace-15d4-44ca-9d79-c83a57dc0e30", - "label" : "Excepting direction made dispensing with publicity restrictions", - "shortCode" : "DP", - "level" : "O", - "rank" : 35600, - "wordGroups" : [ { - "wordGroup" : [ "dispense", "publicity" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5b4ddad9-db87-43b4-a127-cc8312a7d56c", - "label" : "Date publicity restriction made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7d61ec4e-f75a-489d-9950-5584e354659c", - "label" : "Extent of dispensation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "84222bcb-05ac-4c67-82df-cc8742a850d1", - "label" : "The Court directs that information relating to the complainant may be published in connection with the summary trial of the case", - "shortCode" : "DST", - "level" : "O", - "rank" : 35700, - "wordGroups" : [ { - "wordGroup" : [ "complainant", "published", "trial" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1ffa4f8d-2e22-4226-8f29-fe09b0ef00f6", - "label" : "Complainant information", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "07d8fab1-366d-43c5-bdb4-223f8c1229f5", - "label" : "Complainant's anonymity protected by virtue of Section 1 of the Sexual Offences Amendment Act 1992", - "shortCode" : "DSOA", - "level" : "O", - "rank" : 35800, - "wordGroups" : [ { - "wordGroup" : [ "anonymity", "protrected", "sexual" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2e83102c-a262-4bb3-a48d-c2107a094a66", - "label" : "Order revoked", - "shortCode" : "OREV", - "level" : "O", - "rank" : 35900, - "wordGroups" : [ { - "wordGroup" : [ "Order", "revoked" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7e8ec1d3-e8fb-4116-9e37-842120700c48", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "917a6802-ef7e-4449-8df9-6f9a49fcbe91", - "label" : "Order revoked", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "50f095ad-e289-433a-817a-6d79c567a5fa", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0eba630e-a486-439f-8d76-b49b1363067c", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94fbf012-b9a6-4b3c-8743-0803aff0e25c", - "label" : "Date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "14f22747-685e-4bd9-91e7-fb372d8c3b72", - "label" : "Order to continue", - "shortCode" : "OTC", - "level" : "O", - "rank" : 36000, - "wordGroups" : [ { - "wordGroup" : [ "Order", "continue" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1040", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c98cb51f-8639-49c1-91f0-a7e820c34355", - "label" : "Warrant for arrest without bail", - "shortCode" : "WOFN", - "level" : "O", - "rank" : 36100, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "without", "bail" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label" : "Grounds for warrant", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label" : "Process server name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4576", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b4f7c223-b9d1-4409-b6d3-039f66eb9645", - "label" : "Warrant for arrest with bail (dated)", - "shortCode" : "WOFD", - "level" : "O", - "rank" : 36300, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "with", "bail", "dated" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label" : "Grounds for warrant", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label" : "Process server name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "507c4249-d897-43bb-b64d-5c156ef6ba85", - "label" : "Bail to be allowed on these conditions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4575", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "optional" - } ] - }, { - "id" : "671df737-9901-4fa5-b245-aeff0c4c7495", - "label" : "Warrant for arrest with bail (undated)", - "shortCode" : "WOFU", - "level" : "O", - "rank" : 36400, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "with", "bail", "undated" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label" : "Grounds for warrant", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8ef9613e-f19c-11e8-904a-f2801f1b9fd1", - "label" : "Bail allowed on conditions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label" : "Process server name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4577", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c8c962df-e28c-4ea8-8496-721badb77b7b", - "label" : "Warrant for arrest redated", - "shortCode" : "WOFR", - "level" : "O", - "rank" : 36500, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "redated" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4575", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "optional" - } ] - }, { - "id" : "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "label" : "Community requirement: Mental health treatment residential patient", - "shortCode" : "MHTRR", - "level" : "O", - "rank" : 4300, - "wordGroups" : [ { - "wordGroup" : [ "Mental", "Health", "Non-residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fb580537-9d36-4139-811b-77af09547b0d", - "label" : "Care home / Hospital", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HE", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "73242763-44db-4d57-a855-44a6cf4f6226", - "label" : "Warrant for arrest without bail executed on day of issue", - "shortCode" : "WOFEX", - "level" : "O", - "rank" : 36600, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "issue" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label" : "Grounds for warrant", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b9d81454-a565-4a86-bcf9-e7c58bb89dba", - "label" : "Anti-social behaviour order varied", - "shortCode" : "ASBOV", - "level" : "O", - "rank" : 36700, - "wordGroups" : [ { - "wordGroup" : [ "asbo", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7e8ec1d3-e8fb-4116-9e37-842120700c48", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3f441b7c-e9ac-4f1c-b731-babfd2fa94d9", - "label" : "Anti-social order type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2da599de-da03-492e-b66f-e7aad32fcfa5", - "label" : "Terms of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c491a47d-b167-467b-b2f4-f9e567bd4da0", - "label" : "Start of date of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "90d8268d-cc6a-4a09-bdb3-ddf8ea8ef2f9", - "label" : "Variation of bail conditions", - "shortCode" : "RCBV", - "level" : "O", - "rank" : 36800, - "wordGroups" : [ { - "wordGroup" : [ "bail", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "77eb185c-03e7-4971-8dcc-77089d048731", - "label" : "Date bail previously granted", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "21541638-82dd-4a9f-a05c-67589dc8dce9", - "label" : "Court which previously granted bail", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label" : "Is the defendant excused attendance?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", - "label" : "Bail condition reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual" : null, - "reference" : "bailConditionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f7995d94-bf13-41df-a599-79ead4123aad", - "label" : "BASS provider", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4574", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand conditional bail", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bb90e801-0066-4bdf-85e6-8d64bc683f0c", - "label" : "Reporting restriction continues", - "shortCode" : "REPC", - "level" : "O", - "rank" : 36900, - "wordGroups" : [ { - "wordGroup" : [ "reporting", "restrictions", "continue" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "18f255dd-103f-494f-81d0-82db5b5ee7bd", - "label" : "Date restriction imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "961962dd-70c3-463c-89d9-a2b2a393b165", - "label" : "Remitted from Crown Court to magistrates' court for trial", - "shortCode" : "REMITMC", - "level" : "O", - "rank" : 37000, - "wordGroups" : [ { - "wordGroup" : [ "remittal", "trial" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b09fdfef-bde4-4804-8731-f1c2632fbfcc", - "label" : "Local Justice Area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8542b0d9-27f0-4df3-a4a3-0ac0a85c33ad", - "label" : "Notice to magistrates' court that summary offence dismissed", - "shortCode" : "SUMD", - "level" : "O", - "rank" : 37100, - "wordGroups" : [ { - "wordGroup" : [ "summary", "Dismissed", "magistrates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b09fdfef-bde4-4804-8731-f1c2632fbfcc", - "label" : "Local Justice Area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "306c1775-ec96-4e1d-b35e-bcea099ce10a", - "label" : "Notice to magistrates' court that Crown Court powers regarding summary offence have ceased", - "shortCode" : "SUMC", - "level" : "O", - "rank" : 37200, - "wordGroups" : [ { - "wordGroup" : [ "magistrates", "powers", "ceased" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b09fdfef-bde4-4804-8731-f1c2632fbfcc", - "label" : "Local Justice Area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3fdf077e-92b3-4b58-abd1-040a42c35a45", - "label" : "Remanded to hospital for treatment", - "shortCode" : "RHT", - "level" : "O", - "rank" : 37300, - "wordGroups" : [ { - "wordGroup" : [ "remanded", "hospital" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f8ff8214-14b0-4425-94eb-64e6ae320f80", - "label" : "Specify hospital", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label" : "Remand basis", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual" : null, - "reference" : "remandBasis", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "7b2e6219-ddcb-4afa-8615-8de978e60af1", - "label" : "Bail exception", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "10a769e8-1b1c-430d-844b-8948942cf353", - "qual" : null, - "reference" : "bailException", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", - "label" : "Bail exception reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "c0fb2ca5-7702-4f01-b344-33029cfdcd47", - "qual" : null, - "reference" : "bailExceptionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label" : "Place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "placeOfSafety", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label" : "Conveyor/custodian", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96949d0c-a59c-4a6f-a563-97456c985987", - "label" : "Further directions regarding conveyance to place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4051", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "C", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "68c97f89-1672-417d-8513-74cded9d2322", - "label" : "Restriction order", - "shortCode" : "RISTO", - "level" : "O", - "rank" : 37400, - "wordGroups" : [ { - "wordGroup" : [ "restriction", "Order" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1004", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "04437aef-8b44-424e-9cd0-75a10a00f256", - "label" : "Hospital direction and limitation direction", - "shortCode" : "DHA", - "level" : "O", - "rank" : 37500, - "wordGroups" : [ { - "wordGroup" : [ "hospital", "limitation" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1000, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label" : "Early release provisions apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : [ "Early", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label" : "Early release provisions do not apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : [ "Early", "not", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1500, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ff8214-14b0-4425-94eb-64e6ae320f80", - "label" : "Specify hospital", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "specifyHospital", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6baa9e89-7d7d-47b4-bb99-3e3d22cbb011", - "label" : "Name of hospital unit", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label" : "Place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "placeOfSafety", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label" : "Conveyor/custodian", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96949d0c-a59c-4a6f-a563-97456c985987", - "label" : "Further directions regarding conveyance to place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1088", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "label" : "Community requirement: Mental health treatment non-residential patient", - "shortCode" : "MHTRNR", - "level" : "O", - "rank" : 4400, - "wordGroups" : [ { - "wordGroup" : [ "Mental", "Health", "Residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HF", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cb0842d5-9b42-4930-99b3-ae835b56aa56", - "label" : "Conditional discharge (no notice produced)", - "shortCode" : "CDN", - "level" : "O", - "rank" : 37600, - "wordGroups" : [ { - "wordGroup" : [ "conditional", "discharge", "notice" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label" : "Duration of conditional discharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label" : "Duration of conditional discharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label" : "Duration of conditional discharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label" : "Duration of conditional discharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1018", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7dcc9315-917f-408c-bb77-df8b978f503d", - "label" : "Deferred sentence", - "shortCode" : "DS", - "level" : "O", - "rank" : 37700, - "wordGroups" : [ { - "wordGroup" : [ "deferred", "sentence" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2e93862b-2412-41ca-be12-5321815294f2", - "label" : "Requirements that must be carried out", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49806ee4-d2d8-40ce-b651-5fee1510aff4", - "label" : "The court has appointed a supervisor to supervise you", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1ab4b20a-9421-494f-8b17-843450050a6e", - "label" : "Name of victim involved in restorative justice", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e76ed20a-768a-41ad-8b95-921539ac3550", - "label" : "Address of victim involved in restorative justice", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4005", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "mandatory" - } ] - }, { - "id" : "b91a9688-6542-4132-84f2-a3ffff60edfa", - "label" : "Deferred sentence with restorative justice activity involving victim", - "shortCode" : "DEFRJ", - "level" : "O", - "rank" : 37800, - "wordGroups" : [ { - "wordGroup" : [ "deferred", "sentence", "victim" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2e93862b-2412-41ca-be12-5321815294f2", - "label" : "Requirements that must be carried out", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1ab4b20a-9421-494f-8b17-843450050a6e", - "label" : "Name of victim involved in restorative justice", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e76ed20a-768a-41ad-8b95-921539ac3550", - "label" : "Address of victim involved in restorative justice", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49806ee4-d2d8-40ce-b651-5fee1510aff4", - "label" : "The court has appointed a supervisor to supervise you", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4005", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2e3cdfca-8bce-4ad4-93c9-075bead61b0d", - "label" : "Notification of requirement to register with police until case dealt with", - "shortCode" : "NORRDW", - "level" : "O", - "rank" : 37900, - "wordGroups" : [ { - "wordGroup" : [ "register", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7780ed3c-ab05-4a53-acce-316b5486d3ec", - "label" : "Parent's name if parental direction required", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "859b99d5-de74-4a84-b160-c914467af86d", - "label" : "Name of police station to report to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", - "label" : "Conviction / finding / insanity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3052", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c4c7db1f-673b-4633-8400-4739f483c68e", - "label" : "Notification of requirement to register with police for a period", - "shortCode" : "NORR", - "level" : "O", - "rank" : 38000, - "wordGroups" : [ { - "wordGroup" : [ "register", "police", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label" : "Notification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label" : "Notification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label" : "Notification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label" : "Notification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7780ed3c-ab05-4a53-acce-316b5486d3ec", - "label" : "Parent's name if parental direction required", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "859b99d5-de74-4a84-b160-c914467af86d", - "label" : "Name of police station to report to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", - "label" : "Conviction / finding / insanity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3052", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "55b91429-8dda-4a8f-8b84-d4cd1a398ab5", - "label" : "Notification of requirement to register with police indefinately", - "shortCode" : "NORRI", - "level" : "O", - "rank" : 38100, - "wordGroups" : [ { - "wordGroup" : [ "register", "police", "indefinately" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7780ed3c-ab05-4a53-acce-316b5486d3ec", - "label" : "Parent's name if parental direction required", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "859b99d5-de74-4a84-b160-c914467af86d", - "label" : "Name of police station to report to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", - "label" : "Conviction / finding / insanity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3052", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9ea0d845-5096-44f6-9ce0-8ae801141eac", - "rollUpPrompts": false, - "publishedForNows": false, - "label" : "Collection order", - "shortCode" : "COLO", - "level" : "C", - "rank" : 38200, - "wordGroups" : [ { - "wordGroup" : [ "COLO" ] - }, { - "wordGroup" : [ "collection", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6b36e5ff-e116-4dc3-b438-8c02d493959e", - "label" : "Collection order type", - "welshLabel" : "Math o orchymyn casglu", - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "d7d75420-aace-11e8-98d0-529269fb1459", - "qual" : null, - "reference" : "collectionOrderType", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "369b6e22-4678-4b04-9fe9-5bb53bed5067", - "label" : "Reason for not making an attachment of earnings order or deduction from benefit application", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "reasonForNotMakingAnAttachment", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dc44f589-6dd2-4a8d-9164-c1796c6b0e36", - "label" : "Reason for making an attachment of earnings order", - "welshLabel" : "Rheswm dros wneud gorchymyn atafaelu enillion", - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "1fa26fa6-da67-48f7-9bb4-9b55d825854e", - "qual" : null, - "reference" : "reasonForMakingAnAttachment", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "16ade3fb-9f0f-4ce4-a6c8-fa96277e1519", - "label" : "Reason for making an application for deductions from benefit", - "welshLabel" : "Rheswm dros wneud cais i ddidynnu o fudd-dal", - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "1fa26fa6-da67-48f7-9bb4-9b55d825854e", - "qual" : null, - "reference" : "reasonForMakingAnApplication", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Gorchymyn Casglu", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "76b02133-4927-4f21-9f79-1ce361a17b0f", - "label" : "Confiscation order where Court decides the available amount - makes a statement of findings", - "shortCode" : "CONFAA", - "level" : "O", - "rank" : 38400, - "wordGroups" : [ { - "wordGroup" : [ "confiscation", "Order", "decide" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1700, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1700, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1700, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1700, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b613add5-2657-4a13-ad6f-cf01079f1f1a", - "label" : "The benefit is a result of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e9e6e941-db50-4eed-b388-f6dafe09f9d5", - "label" : "Value of the benefit", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "97ba9a67-9cf9-4357-bed9-1c38b9a037c0", - "label" : "Available amount that may be realised", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5a954d49-da57-4952-893c-82f57d2dbed8", - "label" : "The defendant's assets are those described in the schedule (form 5050A) and were a matter relevant to the Court's decision", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6275de58-7ba0-4141-b872-19e49707a0e2", - "label" : "Total value of assets presented in the schedule (form 5050A)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "CURR", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b2281817-6d7f-48f2-a27c-a61ba506a007", - "label" : "Total value of assets decided by the Court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "CURR", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "52b9ac44-e6d5-4494-a94c-16b23b5a890b", - "label" : "The statement of the prosecutor was a matter relevant to the Court's decision", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5d3e131-3031-4c92-ba48-a2d132767476", - "label" : "Matters in the defendant's response to the statement of the prosecutor were relevant to the Court's decision", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8fdf6804-ac49-42c4-9ffe-a1c35b76f8ca", - "label" : "Matters in the defendant's response to a court order requiring the defendant to give infomation specified in the order were relevant to the Court's decision", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "42d8c319-ddda-4af6-bc84-53450378b77f", - "label" : "Total value of assets presented to Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b2281817-6d7f-48f2-a27c-a61ba506a007", - "label" : "Total value of assets decided by the Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9e2ea5fd-b373-43e4-81ae-04f1b0b9ed2c", - "label" : "Amount ordered to pay", - "welshLabel" : "Swm a orchmynnwyd i’w dalu", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6ca8afa4-ec62-4ca1-a914-181418db8961", - "label" : "Description of amount to be paid", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cef4a3b2-b279-404c-a6ae-3552f2a9151d", - "label" : "Amount of confiscation sum to be paid as compensation", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "CURR", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "851e2be3-1436-47a4-824d-ca3168647f0c", - "label" : "Collecting Magistrates' Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", - "label" : "Confiscation unit to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 1600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5437f354-b075-4dd0-87cb-260c4fd8dd1f", - "label" : "Defendant's custody location", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "869beaee-71bd-4e33-8ea6-3e5554fcb6c8", - "label" : "Priority order directions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3056", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Confiscation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "733545c5-5612-40b8-bd81-df1a6a154182", - "label" : "Confiscation order where Court does not decide the available amount", - "shortCode" : "CONF", - "level" : "O", - "rank" : 38500, - "wordGroups" : [ { - "wordGroup" : [ "confiscation", "Order", "not", "decide" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d1142456-f354-42ec-ba25-1556d99230c6", - "label" : "The benefit is a result of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "de6587cb-7892-48ef-bf6c-3b63471a0422", - "label" : "Value of the benefit", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "587ba904-51cc-4284-9883-6724acc55531", - "label" : "Available amount that may be realised", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7798fac0-1e5a-4e53-ae3f-e49d825ac560", - "label" : "Total value of assets presented to Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a7fc546f-ca75-4aed-98b4-4cdce26238ba", - "label" : "Total value of assets decided by the Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fdd30c91-11d4-4511-b1f8-dfd1b9fbcc5d", - "label" : "Amount ordered to pay", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b838babb-4b10-4534-ad6e-794da31d6976", - "label" : "Description of amount to be paid", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4ceb1e93-25ce-4f6e-aaf6-195083faadb6", - "label" : "Amount of confiscation sum to be paid as compensation", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "CURR", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "851e2be3-1436-47a4-824d-ca3168647f0c", - "label" : "Collecting Magistrates' Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", - "label" : "Confiscation unit to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5437f354-b075-4dd0-87cb-260c4fd8dd1f", - "label" : "Defendant's custody location", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c66d10aa-b197-49d8-87e5-28eb356fde1e", - "label" : "Priority order directions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3056", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Confiscation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "label" : "Community requirement: Exclusion not to enter for a period", - "shortCode" : "ERP", - "level" : "O", - "rank" : 4500, - "wordGroups" : [ { - "wordGroup" : [ "exclusion", "Requirement", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6d322ff1-1d95-4053-ac79-19d1b7874f2d", - "label" : "End date of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "adbdbb76-8ff7-4a22-881f-6b95adbf915b", - "label" : "Electronic Monitoring End - notify contractor", - "shortCode" : "EMONE", - "level" : "O", - "rank" : 38600, - "wordGroups" : [ { - "wordGroup" : [ "EM", "end" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6bc0a7e8-ecd6-4607-896c-e8e8e88bd616", - "label" : "Electronic monitoring type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7946cf86-d0f6-4611-815f-fc4d6fc05e34", - "label" : "Date last electronic monitoring order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fef836f8-cae7-410f-b006-989d884a8d14", - "label" : "Name of court that imposed electronic monitoring", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "83aef1c6-1246-4894-b44b-6a76d1e4d99b", - "label" : "Name of prison defendant remanded or committed to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a0b426c1-74b8-43cd-9885-f0f31625352e", - "label" : "Payment terms - on release", - "shortCode" : "PTFOR", - "level" : "D", - "rank" : 38700, - "wordGroups" : [ { - "wordGroup" : [ "payment", "on", "release" ] - }, { - "wordGroup" : [ "payment", "full" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", - "label" : "Remanded in custody - to hospital", - "shortCode" : "RIH", - "level" : "O", - "rank" : 38800, - "wordGroups" : [ { - "wordGroup" : [ "remanded", "hospital", "custody" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label" : "Remand basis", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual" : null, - "reference" : "remandBasis", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ff8214-14b0-4425-94eb-64e6ae320f80", - "label" : "Specify hospital", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "specifyHospital", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "7b2e6219-ddcb-4afa-8615-8de978e60af1", - "label" : "Bail exception", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "10a769e8-1b1c-430d-844b-8948942cf353", - "qual" : null, - "reference" : "bailException", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", - "label" : "Bail exception reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "c0fb2ca5-7702-4f01-b344-33029cfdcd47", - "qual" : null, - "reference" : "bailExceptionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label" : "Place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "placeOfSafety", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4051", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "C", - "resultDefinitionGroup" : "Remand in custody", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9be66be8-58d2-430c-a0b7-7f759ab0e48a", - "label" : "Interim hospital order", - "shortCode" : "MHHI", - "level" : "O", - "rank" : 38900, - "wordGroups" : [ { - "wordGroup" : [ "hospital", "Order", "interim" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "701b27ad-c54a-4011-a605-8c438ff685c9", - "label" : "Name of hospital where defendant will be admitted or detained", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39001635-2dc8-4a58-9934-eeb60fa4d93b", - "label" : "Name of hospital unit", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", - "label" : "Hospital address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label" : "Place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "placeOfSafety", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label" : "Conveyor/custodian", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96949d0c-a59c-4a6f-a563-97456c985987", - "label" : "Further directions regarding conveyance to place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "3132", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "C", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cf50fa81-671e-4598-b42b-721e45288240", - "label" : "Interim hospital order extended", - "shortCode" : "MHHIC", - "level" : "O", - "rank" : 39000, - "wordGroups" : [ { - "wordGroup" : [ "hospital", "Order", "extended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "701b27ad-c54a-4011-a605-8c438ff685c9", - "label" : "Name of hospital where defendant will be admitted or detained", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39001635-2dc8-4a58-9934-eeb60fa4d93b", - "label" : "Name of hospital unit", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", - "label" : "Hospital address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "48648c9f-4553-4d01-8eaa-91af63353a26", - "label" : "Date on which original interim order was made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "3132", - "adjournment" : false, - "convicted" : false, - "qualifier" : "E", - "postHearingCustodyStatus" : "C", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b993d756-e5a8-4204-9d58-b344b79998e1", - "label" : "Notice of Custodial Sentence to Border and Immigration Agency regarding Deportation", - "shortCode" : "DEPN", - "level" : "O", - "rank" : 39100, - "wordGroups" : [ { - "wordGroup" : [ "deportation", "borders" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "099bd432-cf4e-4274-861d-4a665e2f4314", - "label" : "Deportation power", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "16bb9f17-d3c3-42f1-a4dc-2d953114a214", - "label" : "Nationality", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7610d8a1-07fe-4e69-812d-22f821d3f334", - "label" : "Forfeiture order (cash)", - "shortCode" : "FORFC", - "level" : "O", - "rank" : 39200, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "cash" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9bc76b55-37b4-42eb-b16d-52e83f86b8a2", - "label" : "Amount of cash forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "48d71903-ce47-432a-8706-3619355f7738", - "label" : "Currency of cash forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "98a562ee-7583-405a-ab05-3f922ada4872", - "label" : "Type of forfeiture", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "26d4c112-a7ae-11e8-98d0-529269fb1459", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3134", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6532b8f4-7794-420a-9f30-8aced3e41517", - "label" : "Forfeiture of personal licence to sell alcohol", - "shortCode" : "FLIC", - "level" : "O", - "rank" : 39300, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "licence", "Alcohol" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label" : "Order suspended pending appeal", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3136", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "661bdce3-ce01-4cb6-a152-6424540bbbce", - "label" : "Suspension of personal licence to sell alcohol", - "shortCode" : "SLIC", - "level" : "O", - "rank" : 39400, - "wordGroups" : [ { - "wordGroup" : [ "suspension", "licence", "Alcohol" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "60a23936-2446-4813-945c-7b42548f526b", - "label" : "Period of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "60a23936-2446-4813-945c-7b42548f526b", - "label" : "Period of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "60a23936-2446-4813-945c-7b42548f526b", - "label" : "Period of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label" : "Order suspended pending appeal", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3119", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cebb3aa8-fed4-4784-b8bd-57901452344b", - "label" : "Order to give date of birth", - "shortCode" : "DOB", - "level" : "D", - "rank" : 39500, - "wordGroups" : [ { - "wordGroup" : [ "Order", "dob" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4b055468-4534-4ded-b866-2895afae3f49", - "label" : "Date the information must be returned by", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3503", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "label" : "Community requirement: Exclusion not to enter with between dates", - "shortCode" : "ERBD", - "level" : "O", - "rank" : 4600, - "wordGroups" : [ { - "wordGroup" : [ "exclusion", "Requirement", "dates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ac46c9c8-976d-40ef-a913-85c64a6859bc", - "label" : "From date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9e41b95c-c776-4d95-b057-05b7fcb155aa", - "label" : "Until date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a0a0f576-5f6c-4924-ac60-f4d289f15938", - "label" : "Order to give statement of person's sex", - "shortCode" : "SPS", - "level" : "D", - "rank" : 39600, - "wordGroups" : [ { - "wordGroup" : [ "Order", "sex" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4b055468-4534-4ded-b866-2895afae3f49", - "label" : "Date the information must be returned by", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3503", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8fce92ff-22af-4d33-999f-e9c5b9b0f429", - "label" : "No further action taken in respect of conduct (contempt)", - "shortCode" : "NFAC", - "level" : "O", - "rank" : 39700, - "wordGroups" : [ { - "wordGroup" : [ "nfa", "contempt" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8c858e3e-1ade-4e90-869a-160c2bb5da90", - "label" : "Postponement of enquiry into contempt", - "shortCode" : "POSTC", - "level" : "O", - "rank" : 39800, - "wordGroups" : [ { - "wordGroup" : [ "postpone", "enquiry", "contempt" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "30d79db7-37fa-4c89-9129-926aa633d186", - "label" : "Contempt of court findings", - "shortCode" : "CONTF", - "level" : "O", - "rank" : 39900, - "wordGroups" : [ { - "wordGroup" : [ "contempt", "findings" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "66388542-24fa-475b-8af0-18183ac282e9", - "label" : "Findings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3169a020-99f3-4ff8-a76b-c3be37a60b71", - "label" : "Committed to prison for refusal to produce items", - "shortCode" : "P", - "level" : "O", - "rank" : 40000, - "wordGroups" : [ { - "wordGroup" : [ "commit", "prison", "refuse" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "18084ac5-1158-49f5-94b6-9ca619f2374b", - "label" : "Document or item to be produced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8a4d068d-ca0f-4056-848e-b55b343f1090", - "label" : "Witness summons withdrawn", - "shortCode" : "WSW", - "level" : "C", - "rank" : 40100, - "wordGroups" : [ { - "wordGroup" : [ "witness", "summons", "withdrawn" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", - "label" : "Witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "18084ac5-1158-49f5-94b6-9ca619f2374b", - "label" : "Document or item to be produced", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4eb18e66-67e9-43df-8ed6-4b02c486dcc2", - "label" : "No parental bind over made", - "shortCode" : "NPARBOR", - "level" : "D", - "rank" : 40200, - "wordGroups" : [ { - "wordGroup" : [ "no", "parental", "bind" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3657fa70-aec5-4009-99c0-9e5bcab7319f", - "label" : "Reason why court did not make the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d89d0e29-1cc8-4bac-8ff2-80c052398ca6", - "label" : "No parenting order made", - "shortCode" : "NPAROR", - "level" : "D", - "rank" : 40300, - "wordGroups" : [ { - "wordGroup" : [ "no", "parenting", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3657fa70-aec5-4009-99c0-9e5bcab7319f", - "label" : "Reason why court did not make the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1628d7d4-b9ec-4680-88dd-0483ee20ed48", - "label" : "No reparation order made", - "shortCode" : "NREPOR", - "level" : "D", - "rank" : 40400, - "wordGroups" : [ { - "wordGroup" : [ "no", "reparation", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3657fa70-aec5-4009-99c0-9e5bcab7319f", - "label" : "Reason why court did not make the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "66a52d4d-7ec6-430d-a2fe-5963fe9ba095", - "label" : "Detention and training order", - "shortCode" : "DTO", - "level" : "O", - "rank" : 40500, - "wordGroups" : [ { - "wordGroup" : [ "detention", "training", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", - "label" : "Period of detention and training", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", - "label" : "Period of detention and training", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49f8c150-93ea-48e7-ae86-f1a467c72a3a", - "label" : "DTO reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7f1c407a-8d1b-40ce-9720-66467e723d5c", - "label" : "Why the reason for DTO applies", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1003078-ca9c-43ba-a131-8fa755c3a9f4", - "label" : "Defendant is a persistent offender", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81ed0c6f-7a58-4d4c-b8a0-6425de4f1d29", - "label" : "Detention centre", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1081", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "091cd45b-4312-476e-a122-18cc02fd1699", - "label" : "Community requirement: Exclusion not to enter for a period with electronic monitoring", - "shortCode" : "ERPEM", - "level" : "O", - "rank" : 4700, - "wordGroups" : [ { - "wordGroup" : [ "exclusion", "electronic monitoring", "Period", "first" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", - "label" : "Start date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f02e3b28-83e7-4650-a8e1-810bbb464bb4", - "label" : "Start time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", - "label" : "End date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "487358be-eccc-46e4-aa8e-e41495638a2c", - "label" : "End time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f9d43a8f-dd19-4c0f-9fad-a3d339fd09b4", - "label" : "Total detention and training order", - "shortCode" : "TDTO", - "level" : "D", - "rank" : 40600, - "wordGroups" : [ { - "wordGroup" : [ "Total", "detention", "training" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0a1207ad-d35d-478f-a77d-c0277c463507", - "label" : "Total detention and training order period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6ab74bbd-3b3b-4658-a6f7-b2be94bd3baa", - "label" : "Reparation order", - "shortCode" : "REPO", - "level" : "O", - "rank" : 40700, - "wordGroups" : [ { - "wordGroup" : [ "reparation", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8a044676-c316-4d4c-81bf-b52af663be85", - "label" : "Number of reparation hours", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30d0efcf-41df-48e8-891d-ebec2d0ef8fc", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8636315-3ef2-4b2e-ae42-92c249c19a49", - "label" : "Local authority", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "57227a07-3b72-4f96-907c-fe13b5d7847f", - "label" : "Order details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47f34fca-6355-4612-881a-07a2121b86ba", - "label" : "Supervising court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1083", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4feb6756-ffe5-4c38-8c90-e3c94f81b359", - "label" : "Certificate that the case is fit for appeal to the Court of Appeal Criminal Division", - "shortCode" : "CERTA", - "level" : "O", - "rank" : 40800, - "wordGroups" : [ { - "wordGroup" : [ "case", "fit", "appeal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fae932b8-99cd-45d5-856e-14226aaa67a1", - "label" : "Certificate granted Criminal Appeal Act 1968", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4067c886-1d7f-4079-874e-d798c11a8429", - "label" : "Conviction / sentence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e5a86c23-5e4f-49e7-8ab0-1827bb77a253", - "label" : "Bail granted unconditionally pending appeal to the Court of Appeal Criminal Division", - "shortCode" : "UCBCA", - "level" : "O", - "rank" : 40900, - "wordGroups" : [ { - "wordGroup" : [ "unconditional", "bail", "appeal" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "4047", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9b816cc1-7836-44b2-a706-b09ab110f790", - "label" : "Bail granted conditionally pending appeal to the Court of Appeal Criminal Division", - "shortCode" : "CBBCA", - "level" : "O", - "rank" : 41000, - "wordGroups" : [ { - "wordGroup" : [ "conditional", "bail", "appeal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f7995d94-bf13-41df-a599-79ead4123aad", - "label" : "BASS provider", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "4027", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "75fc296e-d16a-44ec-a04c-c0affb549952", - "label" : "Bind over surety", - "shortCode" : "BOS", - "level" : "O", - "rank" : 41100, - "wordGroups" : [ { - "wordGroup" : [ "bind", "surety" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc717d96-41ce-43bd-b0ac-33830c52eea6", - "label" : "Surety name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e449e677-80fd-4037-8e84-34e40bba95cd", - "label" : "Surety address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label" : "Amount of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "440ad312-35f7-42c5-bbae-899a60457abb", - "label" : "Defendant or respondent", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1a235ff2-a76f-414c-be31-58db18360810", - "label" : "Basis of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "33bdd72c-430b-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a8ca6ddf-6dbd-4cc8-9699-7902297157df", - "label" : "Conduct or activity to be refrained from", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "516dbb2c-d9e1-4186-b458-e3b6f798db58", - "label" : "To keep the peace especially towards - name of person", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9b35f4f5-531e-48b4-858d-d81e15e77c23", - "label" : "Warrant of arrest without bail on sentence of imprisonment in absence", - "shortCode" : "WABSN", - "level" : "O", - "rank" : 41200, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "without", "bail", "imprisonment" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label" : "Process server name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e498ec52-0adf-41cf-89e2-40955a418393", - "label" : "Courthouse name", - "welshLabel" : "Enw’r adeilad llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label" : "Courtroom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "4576", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2360acdb-4667-4f64-ab40-c2383271ea18", - "label" : "Surety", - "shortCode" : "suret", - "level" : "C", - "rank" : 41300, - "wordGroups" : [ { - "wordGroup" : [ "suret" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b20eb2e5-a012-4805-9713-8868579a8ec2", - "label" : "Surety's name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9f4821b8-a160-40a0-b01e-0b0ba4f4c39e", - "label" : "Surety's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "921cd8cc-0af1-46a7-8bfe-403a3e831a85", - "label" : "Amount of recognisance", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e498ec52-0adf-41cf-89e2-40955a418393", - "label" : "Courthouse name", - "welshLabel" : "Enw’r adeilad llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "19d80e10-7792-4988-bfed-3bb09cd287b5", - "label" : "Date of next court hearing", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8f8965c6-fe32-445c-9752-65b36d6f7e08", - "label" : "Time of next court hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f6125c7b-0f0d-4cae-a98f-54b1e230c485", - "label" : "This applies at each time and place until the conclusion of the case", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3e43af75-59bd-457e-a22a-1f61215a42df", - "label" : "Surety declared forfeit (to pay)", - "shortCode" : "SFOP", - "level" : "O", - "rank" : 41400, - "wordGroups" : [ { - "wordGroup" : [ "surety", "forfeit" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e88fae27-272b-4ab0-b10f-af26d5951c19", - "label" : "Date recognizance forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1289c3f-b81b-4abb-93cc-546b340312b0", - "label" : "Amount to pay", - "welshLabel" : "Swm i’w dalu", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3016", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "673d90bc-e8d7-40fd-8ad1-39517526452d", - "label" : "Principal declared forfeit (to pay)", - "shortCode" : "PFOP", - "level" : "O", - "rank" : 41500, - "wordGroups" : [ { - "wordGroup" : [ "principal", "forfeit" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e88fae27-272b-4ab0-b10f-af26d5951c19", - "label" : "Date recognizance forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1289c3f-b81b-4abb-93cc-546b340312b0", - "label" : "Amount to pay", - "welshLabel" : "Swm i’w dalu", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3016", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "label" : "Community requirement: Exclusion not to leave a place for a period with electronic monitoring", - "shortCode" : "ERLPEM", - "level" : "O", - "rank" : 4800, - "wordGroups" : [ { - "wordGroup" : [ "exclusion", "electronic monitoring", "residence", "Period", "first" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", - "label" : "Start date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f02e3b28-83e7-4650-a8e1-810bbb464bb4", - "label" : "Start time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", - "label" : "End date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "487358be-eccc-46e4-aa8e-e41495638a2c", - "label" : "End time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", - "version": "2021-11-04T13:58:39.210Z", - "startDate": "2021-11-05", - "label": "Community order England / Wales", - "shortCode": "co", + "id": "29e02fa1-42ce-4eec-914e-e62508397a16", + "label": "No compensation reason", + "shortCode": "NCR", "level": "O", - "rank": 27300, + "rank": 11400, "wordGroups": [ { "wordGroup": [ - "co", - "Community" + "compensation", + "no" ] } ], + "userGroups": [], "prompts": [ { - "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", - "label": "Judge reserves breach proceedings", - "welshLabel": "Barnwr yn neilltuo achos torri amodau", - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 500, - "financial": "N", - "reference": "judgeReservesBreachProceedings", - "wordGroup": [ - "reserved" - ], + "id": "e263de82-47ca-433a-bb41-cad2e1c5bb72", + "label": "Reason for no compensation", + "welshLabel": "Rheswm dros beidio â rhoi iawndal", + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 100, + "duration": null, + "wordGroup": null, "userGroups": [ - + "Court Clerks", + "Legal Advisers" ], + "fixedListId": "5f29ba24-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": "reasonForNoCompensation", "courtExtract": "Y", - "jurisdiction": "C", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, + "durationSequence": null + } + ], + "welshLabel": "Rheswm dros beidio â dyfarnu iawndal", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "baf94928-04ae-4609-8e96-efc9f081b2be", + "label": "No order for costs", + "shortCode": "NCOSTS", + "level": "O", + "rank": 11500, + "wordGroups": [ { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", + "wordGroup": [ + "no", + "Costs" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "be2a46db-709d-4e0d-9b63-aeb831564c1d", + "label": "Reason for no costs", + "welshLabel": "", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedOrganisationName", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, "userGroups": [ - + "Court Clerks", + "Legal Advisers" ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "OrganisationName", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null + "fixedListId": null, + "qual": null, + "reference": "reasonForNoCosts", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "52770cf4-41a8-4c04-a41c-2b12a95cb8dd", + "label": "Defendant has died", + "shortCode": "dead", + "level": "O", + "rank": 11600, + "wordGroups": [ + { + "wordGroup": [ + "dead" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2065", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8f9539a0-bd05-4002-9146-d55920cbab9e", + "label": "Defendant committed suicide", + "shortCode": "deads", + "level": "O", + "rank": 11700, + "wordGroups": [ + { + "wordGroup": [ + "deads" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2503", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4632d712-6cf7-4929-af0d-9bf4a4436ee3", + "label": "The Court did not proceed with the trial in the defendant's absence", + "shortCode": "NOTRIAL", + "level": "O", + "rank": 11800, + "wordGroups": [ + { + "wordGroup": [ + "trial", + "adjourned" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "reason", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "88fd00c6-d63c-4f4e-9a86-4628856a9557", + "label": "No evidence offered - verdict of not guilty by order of Judge", + "shortCode": "NGJ", + "level": "O", + "rank": 11900, + "wordGroups": [ + { + "wordGroup": [ + "judge", + "not", + "guilty" + ] + }, + { + "wordGroup": [ + "prosecution", + "no", + "evidence" + ] + }, + { + "wordGroup": [ + "prosecution", + "neo" + ] + }, + { + "wordGroup": [ + "no", + "evidence" + ] + }, + { + "wordGroup": [ + "not", + "guilty" + ] + }, + { + "wordGroup": [ + "NGJ" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2050", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "14d66587-8fbe-424f-a369-b1144f1684e3", + "label": "Dismissed", + "shortCode": "DISM", + "level": "O", + "rank": 12000, + "wordGroups": [ + { + "wordGroup": [ + "DISM" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2006", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "56e808c5-cd8f-4882-b8e2-c2f615e09c11", + "label": "Criminal behaviour order", + "shortCode": "CRIMBO", + "level": "O", + "rank": 12100, + "wordGroups": [ + { + "wordGroup": [ + "criminal", + "behaviour", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6c3f5d58-d206-46ca-a652-23ee198b371a", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c3f5d58-d206-46ca-a652-23ee198b371a", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c3f5d58-d206-46ca-a652-23ee198b371a", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label": "Start date of order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4461f7f5-f984-4b6d-9f60-3084e5071382", + "label": "Requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label": "Supervisor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label": "Supervisor's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1177", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c2fa19f6-dabf-43fc-9f12-2347fc9b8cc5", + "label": "Interim criminal behaviour order", + "shortCode": "CRIMBI", + "level": "O", + "rank": 12200, + "wordGroups": [ + { + "wordGroup": [ + "interim", + "criminal", + "behaviour", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4461f7f5-f984-4b6d-9f60-3084e5071382", + "label": "Requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label": "Supervisor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label": "Supervisor's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1178", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3cf4b38f-004d-4eb4-8fdb-5d285c11ab47", + "label": "Criminal behaviour order variation", + "shortCode": "CRIMBV", + "level": "O", + "rank": 12300, + "wordGroups": [ + { + "wordGroup": [ + "criminal", + "behaviour", + "Order", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "84f70920-235c-4747-a0d5-545a2f761b37", + "label": "Name of person on criminal behaviour order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3e9e09fd-f512-4cd1-95ad-f4ddd06a0d41", + "label": "Date original criminal behaviour order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d2b6a2eb-53e5-440b-991d-65ee4ef806a0", + "label": "Requirements (added, varied or removed)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label": "Supervisor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label": "Supervisor's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd92da3a-193a-4b87-98ae-b8622f4148ce", + "label": "Prohibitions (added, varied or removed)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d2ed5c6c-2ebc-421b-834b-6f66ecb90e4e", + "label": "Is the person on the original order a youth?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b509d44-fb0e-463f-8b7f-675cb6903265", + "label": "Parent's name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", + "label": "Parent's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1177", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "23d744a1-d71c-4849-b6a3-b736d71ea438", + "label": "No video link reason", + "shortCode": "NOVID", + "level": "O", + "rank": 12400, + "wordGroups": [ + { + "wordGroup": [ + "no", + "video", + "link" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "318c9eb2-cf3c-4592-a353-1b2166c15f81", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7959646e-ce77-4862-b6fe-5fb3a953c427", + "label": "Order discharged", + "shortCode": "ODIS", + "level": "O", + "rank": 12500, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "discharged" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "27c32341-8aed-4ccc-8894-7adb6f5eaf55", + "label": "Type of order discharged", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "44554ccd-9975-4e36-b06d-8f58aebe788c", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47f34fca-6355-4612-881a-07a2121b86ba", + "label": "Supervising court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "204fc6b8-d6c9-4fb8-acd0-47d23c087625", + "label": "No surcharge", + "shortCode": "NOVS", + "level": "D", + "rank": 13100, + "wordGroups": [ + { + "wordGroup": [ + "no", + "surcharge" + ] + }, + { + "wordGroup": [ + "no", + "vs" + ] + }, + { + "wordGroup": [ + "no", + "victim", + "surcharge" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "042742a1-8d47-4558-9b3e-9f34b358e034", + "label": "Reason for no surcharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9fdeff80-84c8-4dc0-8fcf-f8805d8e57ee", + "label": "Surcharge reduced", + "shortCode": "VSR", + "level": "D", + "rank": 13200, + "wordGroups": [ + { + "wordGroup": [ + "vs", + "reduced" + ] + }, + { + "wordGroup": [ + "surcharge", + "reduced" + ] + }, + { + "wordGroup": [ + "victim", + "surcharge", + "reduced" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "910d207e-29ac-4891-b0f8-4d0ade9ac224", + "label": "Reason for reducing surcharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c3179e14-8754-4496-9190-3a9e47da0af7", + "label": "Football banning order", + "shortCode": "FBO", + "level": "O", + "rank": 13300, + "wordGroups": [ + { + "wordGroup": [ + "FBO" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", + "label": "Police station name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "192c8ce6-57dd-463a-b588-bb7189f4c4c1", + "label": "Police station address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "243f72af-801e-409e-b807-8878719d832a", + "label": "Report within 5 days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", + "label": "Reasons for making the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "164d3778-bb74-4bdb-b006-8df4cd05a905", + "label": "Additional requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", + "label": "Prison address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3068", + "adjournment": false, + "convicted": true, + "qualifier": "FA", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "adf86eb7-2eb7-4575-bab5-63001eb23382", + "label": "Football banning order terminated", + "shortCode": "FBOT", + "level": "O", + "rank": 13400, + "wordGroups": [ + { + "wordGroup": [ + "FBO", + "terminated" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", + "label": "End date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", + "label": "Prison address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "73265700-cb68-4a88-86a8-53fcc6f5d6ba", + "label": "Football banning order varied", + "shortCode": "FBOV", + "level": "O", + "rank": 13500, + "wordGroups": [ + { + "wordGroup": [ + "FBO", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f4ffbd41-eea5-4465-b910-b1eaf033d30e", + "label": "Details of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "297a984c-71fa-436e-b9bd-068255e6d530", + "label": "Original court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", + "label": "Prison address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fefede3e-436b-4cd6-a967-7c63d1cb4bce", + "label": "Football banning order termination refused", + "shortCode": "FBOTR", + "level": "O", + "rank": 13600, + "wordGroups": [ + { + "wordGroup": [ + "fbo. terminated", + "refused" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d14c2611-0b4c-478c-a1ec-53bf44bcaa1f", + "label": "Football banning order arising from offence outside England and Wales", + "shortCode": "FBOI", + "level": "O", + "rank": 13700, + "wordGroups": [ + { + "wordGroup": [ + "FBO", + "England" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", + "label": "Police station name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "192c8ce6-57dd-463a-b588-bb7189f4c4c1", + "label": "Police station address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "243f72af-801e-409e-b807-8878719d832a", + "label": "Report within 5 days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", + "label": "Reasons for making the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "164d3778-bb74-4bdb-b006-8df4cd05a905", + "label": "Additional requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3068", + "adjournment": false, + "convicted": false, + "qualifier": "FB", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5e272729-a76b-485c-8784-bddef53f700e", + "label": "No football banning order", + "shortCode": "NFBO", + "level": "O", + "rank": 13800, + "wordGroups": [ + { + "wordGroup": [ + "no", + "FBO" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "46afed44-cb35-43bb-9f7e-78c4d9be298f", + "label": "Reasons for not making a football banning order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c4705a6b-7914-4fc8-bf1e-3553ff1cccf5", + "label": "Declaration of relevance relating to football matches", + "shortCode": "DRF", + "level": "O", + "rank": 13900, + "wordGroups": [ + { + "wordGroup": [ + "declaration", + "football", + "match" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e44817e6-cc08-464f-8c21-1f3ba0af562d", + "label": "Type of football match", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "5ba4aaa6-04d9-4495-bcad-6d1006209ea6", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3099", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e2f51977-ea53-4ac8-8951-75975da06bc5", + "label": "Bind over to keep the peace", + "shortCode": "BOCOND", + "level": "O", + "rank": 14000, + "wordGroups": [ + { + "wordGroup": [ + "bind", + "over" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label": "Amount of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a8ca6ddf-6dbd-4cc8-9699-7902297157df", + "label": "Conduct or activity to be refrained from", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "516dbb2c-d9e1-4186-b458-e3b6f798db58", + "label": "To keep the peace especially towards - name of person", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1016", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "label": "Community requirement: Drug rehabilitation non-residential", + "shortCode": "DRWR", + "level": "O", + "rank": 2100, + "wordGroups": [ + { + "wordGroup": [ + "Drug", + "Rehabilitation", + "Non-residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "underDirectionOf", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10028ef8-efc7-4a40-9703-1e121a6fbc84", + "label": "Period to provide samples", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodToProvideSamples", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0b74fb53-acb7-42db-b9b6-976ce74b59b5", + "label": "Treatment place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "treatmentPlace", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6aaf3645-0806-4917-ada5-b019c6a606c5", + "label": "Treatment intervals", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3109", + "adjournment": false, + "convicted": true, + "qualifier": "BS", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "76c0d994-decd-4a2a-93ca-958f4595181e", + "label": "Bind over to come up for judgment when called on", + "shortCode": "BOJ", + "level": "O", + "rank": 14100, + "wordGroups": [ + { + "wordGroup": [ + "bind", + "over", + "judgement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label": "Amount of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "407bf65d-8be7-4996-b7e7-91d0ae7dfa75", + "label": "Conditions of bind over to be complied with", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1016", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2c2bc8f2-4dd5-4670-b391-bdaca5b3e4f0", + "label": "Bind over witness to keep the peace", + "shortCode": "BOW", + "level": "O", + "rank": 14200, + "wordGroups": [ + { + "wordGroup": [ + "bind", + "over", + "witness", + "peace" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", + "label": "Witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e23c9dab-1dc4-4522-86db-2bcd29121134", + "label": "Witness address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label": "Amount of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a8ca6ddf-6dbd-4cc8-9699-7902297157df", + "label": "Conduct or activity to be refrained from", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "516dbb2c-d9e1-4186-b458-e3b6f798db58", + "label": "To keep the peace especially towards - name of person", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1016", + "adjournment": false, + "convicted": false, + "qualifier": "W", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "92a97bb2-adfe-42bd-a705-6f538b3145f9", + "label": "Sexual harm prevention order for period", + "shortCode": "shopp", + "level": "O", + "rank": 14300, + "wordGroups": [ + { + "wordGroup": [ + "shopp" + ] + }, + { + "wordGroup": [ + "sexual", + "harm", + "prevention", + "Order", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4aee5e0c-959b-4ed9-b589-71c1fe28134d", + "label": "Type of order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1179", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7fd3992e-c1dd-4fd1-abbc-a816f1250bae", + "label": "Sexual harm prevention order until further order", + "shortCode": "SHOPF", + "level": "O", + "rank": 14400, + "wordGroups": [ + { + "wordGroup": [ + "sexual", + "harm", + "prevention", + "Order", + "Further" + ] + }, + { + "wordGroup": [ + "shopo", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4aee5e0c-959b-4ed9-b589-71c1fe28134d", + "label": "Type of order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1179", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2b418a7d-a48d-4c75-a912-8112f1010ab9", + "label": "Sexual harm prevention order until end date", + "shortCode": "SHOPE", + "level": "O", + "rank": 14500, + "wordGroups": [ + { + "wordGroup": [ + "shopo", + "until" + ] + }, + { + "wordGroup": [ + "sexual", + "harm", + "prevention", + "Order", + "until" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4aee5e0c-959b-4ed9-b589-71c1fe28134d", + "label": "Type of order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "eea72b76-275c-4eef-9021-a99c59d088cc", + "label": "End date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "Date", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1179", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "69cf9e2e-f117-4311-952d-e286af84c3be", + "label": "Sexual harm prevention order varied", + "shortCode": "SHOPV", + "level": "O", + "rank": 14600, + "wordGroups": [ + { + "wordGroup": [ + "shopo", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "671e3bd7-0c84-461c-aada-7c73d6fad03b", + "label": "Type of sexual harm prevention order varied", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label": "Date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "Date", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94514093-d8de-4400-93de-9e3366f5af8c", + "label": "Name of defendant on original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label": "Name of court that made the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2def6a67-bdb7-4596-8544-53ebb5811880", + "label": "Variation of prohibitions (other than foreign)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f0b5c085-202d-4b96-9409-959f950c6bf3", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label": "Start date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03501a9a-2668-4587-acc1-b8e880f7c3f4", + "label": "Parent's name (deft is a youth)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", + "label": "Parent's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dc954e27-f35a-46e2-98a2-9e0ca1fbabb4", + "label": "Total suspended detention", + "shortCode": "STDET", + "level": "D", + "rank": 14700, + "wordGroups": [ + { + "wordGroup": [ + "Total", + "SSO", + "detention" + ] + }, + { + "wordGroup": [ + "STDET" + ] + }, + { + "wordGroup": [ + "Total", + "suspended", + "detention" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "699055ee-d41c-4311-91bd-b8ca38aaca84", + "label": "Suspended period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 2 + }, + { + "id": "699055ee-d41c-4311-91bd-b8ca38aaca84", + "label": "Suspended period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 2 + }, + { + "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label": "Supervision period", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label": "Supervision period", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label": "Supervision period", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label": "Supervision period", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06a61bd3-ca3e-4871-b83e-000dfb6289e5", + "label": "Judge reserves review hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": [ + "Review" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1300, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc01db7c-d110-4d3c-9efa-d05a72742ddb", + "label": "Review frequency", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", + "label": "First review date", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", + "label": "Time of hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dab2947a-9b21-450e-8fd1-d82ea3e0f42f", + "label": "Courthouse", + "welshLabel": "Adeilad llys", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "335094b9-94ab-44de-b43e-8fcbc7600008", + "label": "Courthouse", + "welshLabel": "Adeilad llys", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d6ac217f-6864-416e-89cf-3f31e1885cfc", + "label": "Courtroom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ccb76b76-b883-41c3-bd5c-7723531a8909", + "label": "Defendant to attend review", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6d72674d-1ca6-490a-a1c4-0a6404169f66", + "label": "Disqualification from involvement as a director etc of a company", + "shortCode": "DCO", + "level": "O", + "rank": 14800, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "director" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label": "Duration of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label": "Duration of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e7e298e3-4182-4e0a-b7d4-75f223a36549", + "label": "Specify Section of Company Directors Disqualification Act 1986", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "350608f2-3deb-4c23-9643-1c7ad33a09f7", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "89cea994-e319-4a90-8899-8a4fd03e3afa", + "label": "Disqualification start date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "21aadaea-89ef-424c-8606-b5d74811aeaf", + "label": "Section 243 exemption applies", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0491c27e-7fdb-4e93-9358-620332372f25", + "label": "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3002", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5fed2cbd-0d51-4848-8f9b-f0e574e9b0e7", + "label": "Disqualification against a body corporate / firm", + "shortCode": "DCOB", + "level": "O", + "rank": 14900, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "firm" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label": "Duration of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label": "Duration of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e7e298e3-4182-4e0a-b7d4-75f223a36549", + "label": "Specify Section of Company Directors Disqualification Act 1986", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "350608f2-3deb-4c23-9643-1c7ad33a09f7", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "89cea994-e319-4a90-8899-8a4fd03e3afa", + "label": "Disqualification start date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "543324ec-da1d-456b-8d9f-32300f8fe371", + "label": "Company registration number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "64a61a50-ba04-46f8-b624-09494db4bb5a", + "label": "Country of registration", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0491c27e-7fdb-4e93-9358-620332372f25", + "label": "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bcf1b451-af1e-4603-9605-586310d0e61e", + "label": "Community requirement: Drug rehabilitation residential", + "shortCode": "DRRWR", + "level": "O", + "rank": 2200, + "wordGroups": [ + { + "wordGroup": [ + "Drug", + "Rehabilitation", + "Residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "10028ef8-efc7-4a40-9703-1e121a6fbc84", + "label": "Period to provide samples", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10028ef8-efc7-4a40-9703-1e121a6fbc84", + "label": "Period to provide samples", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0b74fb53-acb7-42db-b9b6-976ce74b59b5", + "label": "Treatment place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3109", + "adjournment": false, + "convicted": true, + "qualifier": "BM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ccfc452e-ebe4-4cd7-b8a0-4f90768447b4", + "label": "Discretionary with ordinary disqualification", + "shortCode": "DDD", + "level": "O", + "rank": 15000, + "wordGroups": [ + { + "wordGroup": [ + "DDD" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03fe43ad-1857-4ba1-8481-6c660744b617", + "label": "Starting from date (date of interim disqualification)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3071", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "a67b959b-b2e6-4741-b758-d7ef27f973a7", + "label": "Discretionary with ordinary disqualification for life", + "shortCode": "DDDL", + "level": "O", + "rank": 15100, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "03fe43ad-1857-4ba1-8481-6c660744b617", + "label": "Starting from date (date of interim disqualification)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3071", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "8c81d29b-5621-4f2c-9e05-297241822ba6", + "label": "Obligatory but reduced disqualification for special reasons", + "shortCode": "DDDR", + "level": "O", + "rank": 15200, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "special", + "reasons" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03fe43ad-1857-4ba1-8481-6c660744b617", + "label": "Starting from date (date of interim disqualification)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dcaf502b-44d2-4be0-acfc-2f7d29142da6", + "label": "Special reasons", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3070", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "20a7e0f4-abc5-4beb-8af0-a327de1d6e7e", + "label": "Discretionary with disqualification until ordinary test passed", + "shortCode": "DDDT", + "level": "O", + "rank": 15300, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "test", + "until" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03fe43ad-1857-4ba1-8481-6c660744b617", + "label": "Starting from date (date of interim disqualification)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3071", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "cf8a3c59-63f5-4757-8783-88f1e31aa653", + "label": "Discretionary disqualification until test passed only", + "shortCode": "DDDTO", + "level": "O", + "rank": 15400, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "test", + "until", + "only" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3073", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "c2c346d1-dc13-48c8-b557-ef3dabcb1b9b", + "label": "Obligatory disqualification until extended test passed", + "shortCode": "DDOTE", + "level": "O", + "rank": 15500, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "until", + "extended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03fe43ad-1857-4ba1-8481-6c660744b617", + "label": "Starting from date (date of interim disqualification)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3070", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "73fe22ca-76bd-4aba-bdea-6dfef8ee03a2", + "label": "Points disqualification", + "shortCode": "DDP", + "level": "O", + "rank": 15600, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "points" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label": "Notional penalty points", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3072", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "651cbf5b-b7f0-4921-ba01-e18ad2ac763b", + "label": "Points disqualification for life", + "shortCode": "DDPL", + "level": "O", + "rank": 15700, + "wordGroups": [ + { + "wordGroup": [ + "disqualificatiom", + "ponts", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label": "Notional penalty points", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3072", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "7b0933f8-405e-434a-9bfe-871f794260cb", + "label": "Points but reduced disqualification for mitigating circumstance", + "shortCode": "DDPR", + "level": "O", + "rank": 15800, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "points", + "mitigating" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label": "Notional penalty points", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a541edb8-fead-4a88-8665-79b5a59c183c", + "label": "Mitigating circumstances", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "mitigatingCircumStances", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3072", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "097dfa33-6c62-4ed1-af46-6c6786b66d65", + "label": "Points with disqualification until extended test passed", + "shortCode": "DDPTE", + "level": "O", + "rank": 15900, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "points", + "extended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label": "Notional penalty points", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3072", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "a5aa694e-4729-40f5-814e-60a75d9429e0", + "label": "Community requirement: Programme", + "shortCode": "PR", + "level": "O", + "rank": 2300, + "wordGroups": [ + { + "wordGroup": [ + "PR" + ] + }, + { + "wordGroup": [ + "Programme", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "60e386e4-51df-4c91-81f7-9a25751de426", + "label": "Number of days", + "welshLabel": "Nifer o ddyddiau", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3103", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "90ef1e35-b19a-4ad9-a4e1-e511e9d1d00e", + "label": "Driving Disq - Reduction for course (discretionary)", + "shortCode": "DDRCD", + "level": "O", + "rank": 16000, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "course", + "dicretionary" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7326f05d-54b3-450e-92dd-a5bc0710f8f7", + "label": "Name of course", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "286cc674-a4f8-408e-aa6d-8dbc175ab968", + "label": "Date by which course must be completed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label": "Defendant's mobile number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e2ae845f-12f4-498e-bddf-a90c8cb499ba", + "label": "Defendant's home telephone number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label": "Special needs", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3071", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "990e8cad-c8e0-4ad9-ba86-13180338986d", + "label": "Driving Disq - Reduction for course (obligatory)", + "shortCode": "DDRCO", + "level": "O", + "rank": 16100, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "course", + "obligatory" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7326f05d-54b3-450e-92dd-a5bc0710f8f7", + "label": "Name of course", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "286cc674-a4f8-408e-aa6d-8dbc175ab968", + "label": "Date by which course must be completed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label": "Defendant's mobile number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e2ae845f-12f4-498e-bddf-a90c8cb499ba", + "label": "Defendant's home telephone number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label": "Special needs", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3070", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "7ee02b35-88ca-4acc-ab8b-70f3e95a32d0", + "label": "Obligatory Disqualification until extended test passed - reduction for course", + "shortCode": "DDRCOT", + "level": "O", + "rank": 16200, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "course", + "obligatory", + "extended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7326f05d-54b3-450e-92dd-a5bc0710f8f7", + "label": "Name of course", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "286cc674-a4f8-408e-aa6d-8dbc175ab968", + "label": "Date by which course must be completed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label": "Defendant's mobile number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e2ae845f-12f4-498e-bddf-a90c8cb499ba", + "label": "Defendant's home telephone number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label": "Special needs", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3070", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "4414bffb-c62e-442c-841a-2ebed0e688b6", + "label": "Interim disqualification", + "shortCode": "DDRI", + "level": "O", + "rank": 16300, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "inerim" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3096", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "3ae7caf1-d5ff-4534-9fbb-17a3a04cb9ab", + "label": "Disqualification for non-endorsable offence", + "shortCode": "DDRN", + "level": "O", + "rank": 16400, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "non-endorsable" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3094", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "3fa139cc-efe0-422b-93d6-190a5be50953", + "label": "Driving record endorsed with additional points (points on more than one offence)", + "shortCode": "LEA", + "level": "O", + "rank": 16500, + "wordGroups": [ + { + "wordGroup": [ + "endorsed", + "Additional", + "points" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a8719de4-7783-448a-b792-e3f94e670ad0", + "label": "Penalty points for this offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PENPT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bbbb47bb-3418-463c-bfc3-43c6f72bb7c9", + "label": "Reasons for imposing penalty points on more than one offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3008", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "b0aeb4fc-df63-4e2f-af88-97e3f23e847f", + "label": "Driving record endorsed (no points)", + "shortCode": "LEN", + "level": "O", + "rank": 16600, + "wordGroups": [ + { + "wordGroup": [ + "endorsed", + "no", + "points" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3008", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "cee54856-4450-4f28-a8a9-72b688726201", + "label": "Driving record endorsed with penalty points", + "shortCode": "LEP", + "level": "O", + "rank": 16700, + "wordGroups": [ + { + "wordGroup": [ + "endorsed", + "points" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a8719de4-7783-448a-b792-e3f94e670ad0", + "label": "Penalty points for this offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PENPT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3008", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "af322d0a-ba2a-47f1-8d46-7b3ea423d689", + "rollUpPrompts": true, + "publishedForNows": true, + "label": "No disqualification - Mitigating Circumstances", + "shortCode": "NDMC", + "level": "C", + "rank": 16800, + "wordGroups": [ + { + "wordGroup": [ + "no", + "disqualification", + "mitigating" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a541edb8-fead-4a88-8665-79b5a59c183c", + "label": "Mitigating circumstances", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "mitigatingCircumStances", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3509", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "808313d1-f450-4410-b2f1-97409d7b4074", + "label": "No disqualification - Special Reasons", + "shortCode": "NDSR", + "level": "O", + "rank": 16900, + "wordGroups": [ + { + "wordGroup": [ + "no", + "disqualification", + "special", + "reason" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dcaf502b-44d2-4be0-acfc-2f7d29142da6", + "label": "Special reasons", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3509", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "label": "Community requirement: Rehabilitation activity", + "shortCode": "RAR", + "level": "O", + "rank": 2400, + "wordGroups": [ + { + "wordGroup": [ + "Rehabilitation", + "Activity" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1bc7246f-89f2-4b2f-b765-d01297d7b4aa", + "label": "Max number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3149", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f121db73-57fb-4f74-9ab1-0843aabe4605", + "label": "No endorsement - Special Reasons", + "shortCode": "NESR", + "level": "O", + "rank": 17000, + "wordGroups": [ + { + "wordGroup": [ + "no", + "endorsement", + "special", + "reason" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "dcaf502b-44d2-4be0-acfc-2f7d29142da6", + "label": "Special reasons", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3508", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b5ee3936-2cd5-47f4-9192-3737c7093a7f", + "label": "Removal of Driving Disqualification", + "shortCode": "RDD", + "level": "O", + "rank": 17100, + "wordGroups": [ + { + "wordGroup": [ + "remove", + "disqualification" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fb28be9c-0f74-4c02-a70e-0fffa9b0614b", + "label": "Date disqualification imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7a6d9bb9-a042-4234-8b92-d871437fd15a", + "label": "Date disqualification ends", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "73f005c6-11e7-4d45-a378-85ea5919e553", + "label": "Original date of conviction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "37ee2b08-1950-4b04-bea5-f6f66b768bb0", + "label": "Original offence date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5813ddb2-e987-44fd-bdcf-4148e6fb9cda", + "label": "DVLA offence code", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "84a42b46-f384-410d-a4d9-46fe0cb74678", + "label": "Applicant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c70597c0-a333-4828-959f-e6c8174a311c", + "label": "Original convicting court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "663d9c78-0e56-4931-9f3a-5301a7e94147", + "label": "Disqualification for non-endorsable offence (assault by driving a motor vehicle)", + "shortCode": "DDRA", + "level": "O", + "rank": 17200, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "non-endorsable", + "assault" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7a353b75-acd8-4a69-b779-d14c194fa3fd", + "label": "Extension period section 147A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "975c0985-7ee4-4560-85fc-5eecf97f9b34", + "label": "Extension period section 147B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3095", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "6ef33dcf-3fd3-46d6-bc41-f7bfb7f5ced6", + "label": "Disqualification for non-endorsable offence (vehicle used for purposes of crime)", + "shortCode": "DDRV", + "level": "O", + "rank": 17300, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "non-endorsable", + "crime" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7a353b75-acd8-4a69-b779-d14c194fa3fd", + "label": "Extension period section 147A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "975c0985-7ee4-4560-85fc-5eecf97f9b34", + "label": "Extension period section 147B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3095", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "238fc228-f948-430e-b0a1-7c9bdcafac46", + "label": "Disqualification suspended pending appeal", + "shortCode": "DSPA", + "level": "O", + "rank": 17400, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "suspended", + "appeal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3075", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d3ca848c-ab33-4650-a0e6-36f1b86998a2", + "label": "Disqualification suspended pending appeal in a later session", + "shortCode": "DSPAS", + "level": "O", + "rank": 17500, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "suspended", + "appeal", + "later" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", + "label": "Convicting court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "00ff3bf4-a872-4c16-a671-f05b8aa147f3", + "label": "Sentencing court if different from convicting court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e3764c59-4e25-4864-a3af-1c2e3390af99", + "label": "Date of conviction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9c1c1ba5-eb13-45be-a7d3-dcc83debe0ba", + "label": "Date of offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "71b1cc98-8b41-4d65-906a-3b4940c4ce1d", + "label": "Date of sentence if different from conviction date", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9dc27662-6953-4acf-a7ac-9b9165e12e2d", + "label": "DVLA code for offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "72faf2d6-b362-4e7a-9f89-102c7e820868", + "label": "Court contact (SPOC)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "84a42b46-f384-410d-a4d9-46fe0cb74678", + "label": "Applicant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3076", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "39988e30-159a-442e-bb83-7f6df78fea34", + "label": "Driving licence disposal", + "shortCode": "DLDIS", + "level": "D", + "rank": 17600, + "wordGroups": [ + { + "wordGroup": [ + "driving", + "license", + "disposal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ff701645-f700-48d0-a247-19f177b0e976", + "label": "Driving licence type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5fe6673d-24ff-445b-b247-03c71e95fb2c", + "label": "Driving licence destination", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0556c55a-439b-4020-8bff-ad0d5c0bb7fa", + "label": "Reason driving licence sent to DVLA", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dd3ef017-5020-4fec-832a-98028ebf3097", + "label": "Driving licence suspended pending production", + "shortCode": "DLSUS", + "level": "C", + "rank": 17700, + "wordGroups": [ + { + "wordGroup": [ + "driving", + "license", + "suspended", + "production" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3510", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3bfd5af4-b80a-405c-9089-1a533aec0ace", + "label": "Licensed Premises - Exclusion Order", + "shortCode": "LPEX", + "level": "O", + "rank": 17800, + "wordGroups": [ + { + "wordGroup": [ + "licensed", + "premises", + "exclusion" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "04446df0-88b9-4f3b-97cd-cf663346c6d0", + "label": "Duration of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "04446df0-88b9-4f3b-97cd-cf663346c6d0", + "label": "Duration of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "57d0b15c-746a-4376-a4d8-5917ecd5e8eb", + "label": "Name of licensed premises excluded from", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c70d64d-9c95-48bc-b8d2-5c38643e7d65", + "label": "Reason for exclusion", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3041", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0ced3039-579c-48a3-9274-cee8c68ba608", + "label": "Contingent destruction order for dog (proper control)", + "shortCode": "DCDO", + "level": "O", + "rank": 18000, + "wordGroups": [ + { + "wordGroup": [ + "dog", + "destruction", + "control" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e8a64fc3-081f-4461-84e8-65774cce7021", + "label": "Details of dog", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "31abd0a3-c2e2-4e15-91de-f2917b4fbadd", + "label": "To be securely held on a lead by a person who is not less than 16 years old", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2e674f8b-dc14-4731-8ff4-a13c85be7318", + "label": "To be securely fitted with a muzzle sufficient to prevent it biting any person", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0879a258-7feb-4675-ba94-abc679b23aa9", + "label": "Places excluded from", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a8548173-c4a4-43a6-adbc-364fbdfcef58", + "label": "Other directions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3082", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bbc3f8e9-b29c-40d2-8564-0e918693ed89", + "label": "Order for dog to be neutered", + "shortCode": "DN", + "level": "O", + "rank": 18100, + "wordGroups": [ + { + "wordGroup": [ + "dog", + "neutered" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e8a64fc3-081f-4461-84e8-65774cce7021", + "label": "Details of dog", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "75ae5570-cdc0-42c7-9024-68985fd3bf73", + "label": "Date by which dog is to be neutered", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3020", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b6eeca33-a188-4d00-a470-391b245c45a4", + "label": "Order for deprivation of animal", + "shortCode": "ADEP", + "level": "O", + "rank": 18200, + "wordGroups": [ + { + "wordGroup": [ + "deprivation", + "animal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0f52987f-309d-4357-95e1-8f4da8effb60", + "label": "This order also deprives the defendant of the animal's dependent offspring and provides for its disposal. The offspring are", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0949b347-3c72-4688-9ecb-deabb17ee175", + "label": "Directions regarding the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a795188-50e5-4587-9097-610219269455", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3055", + "adjournment": false, + "convicted": true, + "qualifier": "YZ", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cf10ee96-c82c-46c7-8a34-0c9d08aca134", + "label": "Order for destruction in the interests of the animal made under Section 37 Animal Welfare Act 2006", + "shortCode": "ADES", + "level": "O", + "rank": 18300, + "wordGroups": [ + { + "wordGroup": [ + "destruction", + "interest", + "animal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0949b347-3c72-4688-9ecb-deabb17ee175", + "label": "Directions regarding the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a795188-50e5-4587-9097-610219269455", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3116", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "852cf8c1-bb0f-444f-97f1-64ff8561413d", + "label": "Destruction of animals involved in fighting made under Section 38 Animal Welfare Act 2006", + "shortCode": "ADESF", + "level": "O", + "rank": 18400, + "wordGroups": [ + { + "wordGroup": [ + "destruction", + "animal", + "fighting" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "03934cce-feb2-43b5-aaf8-20aeccb3336d", + "label": "Animal to be destroyed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0949b347-3c72-4688-9ecb-deabb17ee175", + "label": "Directions regarding the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a795188-50e5-4587-9097-610219269455", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3116", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "26eec36f-7bdc-4b1a-9b46-ba161f52a4e2", + "label": "Disqualified from keeping animal stated for a defined period", + "shortCode": "ANI", + "level": "O", + "rank": 18500, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "keeping", + "animal", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e07c6156-730e-4b66-a913-edc7366b13c0", + "label": "Specify the animal to which the order applies", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a795188-50e5-4587-9097-610219269455", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3025", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "577acd37-0473-4ad8-ac06-adbf7e9beb2c", + "label": "Disqualified from keeping stated animal for life", + "shortCode": "ANIL", + "level": "O", + "rank": 18600, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "keeping", + "animal", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e07c6156-730e-4b66-a913-edc7366b13c0", + "label": "Specify the animal to which the order applies", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a795188-50e5-4587-9097-610219269455", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3025", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", + "label": "Foreign travel prohibition", + "shortCode": "FTPN", + "level": "O", + "rank": 100, + "userGroups": [], + "prompts": [ + { + "id": "63ff5f8d-07ac-4b2d-ae61-fbb75613dfab", + "label": "Not to travel to any country outside the United Kingdom", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "63173301-f05d-4bb3-8ca0-2fefd8f9e84d", + "label": "Not to travel to the following countries outside the United Kingdom", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3333058f-1977-4fcb-a70a-98d1510898b5", + "label": "Not to travel to any country outside the United Kingdom other than", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5d2dd546-d773-44d6-b030-0de2d049b245", + "label": "Period of foreign travel prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "67de7451-2805-40ee-9d4c-6e75aa04069c", + "label": "Foreign travel prohibition removed", + "shortCode": "FTPR", + "level": "O", + "rank": 18700, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "removed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e86b1bce-49f5-46db-8c2e-3df6321ecfdb", + "label": "Date removed with effect from", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2a9ff8a6-c0cf-45eb-b9e5-252238a5140c", + "label": "Foreign travel prohibition extended", + "shortCode": "FTPE", + "level": "O", + "rank": 18800, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "extended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "32b624af-30b4-4ef9-8eae-cb178a64e2be", + "label": "Date foreign travel prohibition made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3332ddb2-2c45-496a-8306-92ab4ddc726d", + "label": "Foreign travel prohibition extended until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "label": "Community requirement: Prohibited activity for period", + "shortCode": "PARP", + "level": "O", + "rank": 2600, + "wordGroups": [ + { + "wordGroup": [ + "prohibited", + "Activity", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label": "Prohibited activities", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3104", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dcdcd240-3ebe-4e80-b84c-a06a2a4a17ae", + "label": "Sexual harm prevention order discharged", + "shortCode": "SHPOD", + "level": "O", + "rank": 18900, + "wordGroups": [ + { + "wordGroup": [ + "shopo", + "discharged" + ] + }, + { + "wordGroup": [ + "sexual", + "harm", + "prevention", + "discharged" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "471d4d9d-b267-410a-be01-7c8c5e762992", + "label": "Sexual harm prevention order type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label": "Date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "Date", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94514093-d8de-4400-93de-9e3366f5af8c", + "label": "Name of defendant on original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label": "Name of court that made the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bb09512f-3d01-4f3d-ab7e-fefa5a7ccba4", + "label": "Sexual harm prevention order renewed", + "shortCode": "SHPOR", + "level": "O", + "rank": 19000, + "wordGroups": [ + { + "wordGroup": [ + "shopo", + "renewed" + ] + }, + { + "wordGroup": [ + "sexual", + "harm", + "prevention", + "renewed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "471d4d9d-b267-410a-be01-7c8c5e762992", + "label": "Sexual harm prevention order type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label": "Date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "Date", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94514093-d8de-4400-93de-9e3366f5af8c", + "label": "Name of defendant on original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label": "Name of court that made the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "35dd25e2-0017-46fd-ae5f-0ed8eb67d545", + "label": "Foreign travel prohibition varied", + "shortCode": "FTPV", + "level": "O", + "rank": 19100, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "32b624af-30b4-4ef9-8eae-cb178a64e2be", + "label": "Date foreign travel prohibition made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", + "label": "Details of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cd612502-9cf9-4365-b6db-bf70022c40e5", + "label": "Foreign travel prohibition added", + "shortCode": "FTPA", + "level": "O", + "rank": 19200, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "added" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label": "Period of foreign travel prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label": "Period of foreign travel prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label": "Period of foreign travel prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label": "Period of foreign travel prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "137b456b-1f56-42f6-9b5a-e45a3171724e", + "label": "Not to travel to any country outside the United Kingdom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a8b1ab81-4ef1-40bc-9aa8-ccdba9a6efca", + "label": "Not to travel to the following countries outside the United Kingdom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e9b15a52-c842-4e33-b779-537360158228", + "label": "Not to travel to any country outside the United Kingdom other than", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "23fff13d-9741-4209-88ce-83e14c8c3388", + "label": "Slavery and trafficking prevention order for period", + "shortCode": "SATPO", + "level": "O", + "rank": 19300, + "wordGroups": [ + { + "wordGroup": [ + "slavery", + "prevention", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3285", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "17bcc2c7-51f3-4449-aeed-3e7c65a0854d", + "label": "Slavery and trafficking prevention order until further order", + "shortCode": "SATPOFO", + "level": "O", + "rank": 19400, + "wordGroups": [ + { + "wordGroup": [ + "slavery", + "prevention", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3285", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dcdbe62e-ff8f-48d9-acf9-6b6b86b3487d", + "label": "Slavery and trafficking prevention order until end date", + "shortCode": "SATPOED", + "level": "O", + "rank": 19500, + "wordGroups": [ + { + "wordGroup": [ + "slavery", + "prevention", + "end" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3285", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ee94aaf8-5152-4a6e-b17e-63891e6209c4", + "label": "Slavery and trafficking prevention order varied", + "shortCode": "SATPOV", + "level": "O", + "rank": 19700, + "wordGroups": [ + { + "wordGroup": [ + "slavery", + "prevention", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label": "Date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "Date", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94514093-d8de-4400-93de-9e3366f5af8c", + "label": "Name of defendant on original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label": "Name of court that made the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2def6a67-bdb7-4596-8544-53ebb5811880", + "label": "Variation of prohibitions (other than foreign)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f0b5c085-202d-4b96-9409-959f950c6bf3", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label": "Start date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "381648c7-ca3e-4368-a75d-dbdebbf22bcd", + "label": "Interim slavery and trafficking prevention order", + "shortCode": "SATPOI", + "level": "O", + "rank": 19800, + "wordGroups": [ + { + "wordGroup": [ + "interim", + "slavery", + "prevention" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3284", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", + "ruleType": "optional" + } + ] + }, + { + "id": "0021c162-50ee-4769-b30c-c15be2202427", + "label": "Travel restriction order", + "shortCode": "TRO", + "level": "O", + "rank": 19900, + "wordGroups": [ + { + "wordGroup": [ + "travel", + "restriction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef4db11b-fc46-44a3-b96d-07df138200bf", + "label": "Direction to deliver up passport to Court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3078", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1c40353b-a3b8-4437-8691-6b54d5842010", + "label": "Community requirement: Prohibited activity for dates", + "shortCode": "PARD", + "level": "O", + "rank": 2700, + "wordGroups": [ + { + "wordGroup": [ + "prohibited", + "Activity", + "dates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label": "Prohibited activities", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96a36529-f9ff-4804-86d1-361bc9c12910", + "label": "Dates", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3104", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e513f78d-6ba3-45b2-a3f9-668c9543f76c", + "label": "No travel restriction order", + "shortCode": "NOTRO", + "level": "O", + "rank": 20000, + "wordGroups": [ + { + "wordGroup": [ + "no", + "travel", + "restriction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "88d784e0-e85f-47ac-9c04-a96a9862056e", + "label": "Reasons for not making a travel restriction order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0f1dce52-dfe0-4ed9-ba4e-ca0f30cfb30f", + "label": "Travel restriction order revoked", + "shortCode": "TROR", + "level": "O", + "rank": 20100, + "wordGroups": [ + { + "wordGroup": [ + "travel", + "restriction", + "revoked" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc5bb638-52c0-4815-9816-a473f7503684", + "label": "Date travel prohibition revoked with effect from", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d624b709-013b-4865-8de8-e91dc00957af", + "label": "Travel restriction order suspended", + "shortCode": "TROS", + "level": "O", + "rank": 20200, + "wordGroups": [ + { + "wordGroup": [ + "travel", + "restriction", + "suspended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label": "Duration of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label": "Duration of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label": "Duration of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label": "Duration of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc28ef15-b7ce-4be0-98ca-342e0b8df374", + "label": "Original order contained a direction to surrender passport", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "af519666-bd10-423a-8f4b-9173a5daafca", + "label": "Psychoactive Substances Prohibition Order", + "shortCode": "PSPO", + "level": "O", + "rank": 20400, + "wordGroups": [ + { + "wordGroup": [ + "psychoactive", + "subatance" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a2984926-eec3-4a76-8c47-ac6d708ca853", + "label": "General prohibitions and restrictions", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4bc401db-3334-4b50-9e4b-df2068e9a675", + "label": "Describe item to be disposed of", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "54d27556-06bb-411c-80e6-cb8cc82908f8", + "label": "Specify who is to dispose of item", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3288", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "08f9b07e-ed90-4522-9d14-7d9162186758", + "label": "Psychoactive Substances Prohibition Order with premises access prohibition", + "shortCode": "PSPOA", + "level": "O", + "rank": 20500, + "wordGroups": [ + { + "wordGroup": [ + "psychoactive", + "subatance", + "premises", + "prohibited" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b037d41d-d72c-4dcb-a3f0-37adc12aae52", + "label": "Prohibition duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b037d41d-d72c-4dcb-a3f0-37adc12aae52", + "label": "Prohibition duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b037d41d-d72c-4dcb-a3f0-37adc12aae52", + "label": "Prohibition duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a2984926-eec3-4a76-8c47-ac6d708ca853", + "label": "General prohibitions and restrictions", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4bc401db-3334-4b50-9e4b-df2068e9a675", + "label": "Describe item to be disposed of", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "54d27556-06bb-411c-80e6-cb8cc82908f8", + "label": "Specify who is to dispose of item", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "01c2bbdc-5765-4952-8575-cca2077349e7", + "label": "Prohibition applies to whole or part of premises", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0335a74d-2142-413f-9bbc-753581a43707", + "label": "Prohibited premises", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f9704321-7770-467e-a94b-3e8544c857bc", + "label": "Describe the part of premises", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bcaf62cd-7270-4e86-b41e-7fcfa3aae1eb", + "label": "Persons times and circumstances of access prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3288", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f0395277-4d26-4785-acb5-5be597d97ae6", + "label": "Criminal behaviour order until further order", + "shortCode": "CRIMBOF", + "level": "O", + "rank": 20600, + "wordGroups": [ + { + "wordGroup": [ + "criminal", + "behaviour", + "Order", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label": "Start date of order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4461f7f5-f984-4b6d-9f60-3084e5071382", + "label": "Requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label": "Supervisor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label": "Supervisor's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1177", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "187f05c9-8467-4741-8b9e-7a3a5b06f6f6", + "label": "No evidence offered (summary offence in the Crown Court)", + "shortCode": "NOEVS", + "level": "O", + "rank": 20700, + "wordGroups": [ + { + "wordGroup": [ + "no", + "evidence", + "offered" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2050", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f8bd4d1f-1467-4903-b1e6-d2249ccc8c25", + "label": "Dismissed (No evidence offered)", + "shortCode": "DINE", + "level": "O", + "rank": 20800, + "wordGroups": [ + { + "wordGroup": [ + "Dismissed", + "no", + "evidence" + ] + }, + { + "wordGroup": [ + "no evidence", + "offered", + "Dismissed" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Gwrthod (Dim tystiolaeth wedi’i chyflwyno)", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2050", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5edd3a3a-8dc7-43e4-96c4-10fed16278ac", + "label": "Vehicle Excise Back Duty", + "shortCode": "FVEBD", + "level": "O", + "rank": 20900, + "wordGroups": [ + { + "wordGroup": [ + "vehicle", + "back", + "duty" + ] + }, + { + "wordGroup": [ + "FVEBD" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f7c7c088-f88e-4c28-917c-78571517aca1", + "label": "Amount of back duty", + "welshLabel": "Swm yr ôl-doll", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOBD", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Ôl-doll Treth Car", + "isAvailableForCourtExtract": true, + "financial": true, + "category": "F", + "cjsCode": "3014", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "label": "Community requirement: Prohibited activity for days of week", + "shortCode": "PARW", + "level": "O", + "rank": 2800, + "wordGroups": [ + { + "wordGroup": [ + "prohibited", + "Activity", + "days" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label": "Prohibited activities", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "53f817cd-0070-455e-9826-a103bd4a4a26", + "label": "Days", + "welshLabel": "Diwrnod", + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "e652a90a-31cf-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3104", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b81ac80b-81a9-48b6-87b0-cc34610eec97", + "label": "Restraining order for period", + "shortCode": "RESTRAOP", + "level": "O", + "rank": 700, + "wordGroups": [ + { + "wordGroup": [ + "Restraining", + "Order", + "Period" + ] + }, + { + "wordGroup": [ + "RESTRAOP" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", + "label": "Protected person", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "8df0ec7e-5985-4998-af1a-5da293d9cb3c", + "label": "Order details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47337f1c-e343-4093-884f-035ba96c4db0", + "label": "Conviction / acquittal", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8dc70c95-fb09-4842-9138-bc579fceb605", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ea26f773-0a91-4526-b4ad-84d07b5bf940", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3047", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "920183ea-c82a-4110-a937-6a2e7071d908", + "label": "Certificate of conviction under Section 113 of the Powers of Criminal Courts (Sentencing) Act 2000", + "shortCode": "QCON", + "level": "O", + "rank": 21000, + "wordGroups": [ + { + "wordGroup": [ + "certificate", + "conviction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e3764c59-4e25-4864-a3af-1c2e3390af99", + "label": "Date of conviction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", + "label": "Convicting court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "59828fc1-e8f2-46be-866c-4c8c1d165273", + "label": "Type of offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bfb02d14-243f-4450-9c20-4c0ed9c5d64c", + "label": "No further review of order required", + "shortCode": "REVUE", + "level": "O", + "rank": 21100, + "wordGroups": [ + { + "wordGroup": [ + "no", + "Further", + "Review" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9bb5d310-0fef-450d-91d6-117f894001bb", + "label": "Offences taken into consideration", + "shortCode": "TIC", + "level": "D", + "rank": 21200, + "wordGroups": [ + { + "wordGroup": [ + "TIC" + ] + }, + { + "wordGroup": [ + "taken", + "into", + "consideration" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a292fb05-4b6b-43b3-8fdc-1ce5c1114a45", + "label": "Number of offences admitted and taken into consideration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3118", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "87eed0b7-b141-4a3c-b7b0-ea8bb23ec3b2", + "label": "Warrant not executed", + "shortCode": "WNE", + "level": "O", + "rank": 21300, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "not", + "executed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9565f244-bef4-43a0-b32c-0d12faceb5de", + "label": "Reason for warrant not executed", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "381cb2bd-4993-476d-9c8f-3bd19f288120", + "label": "Reason warrant not executed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "2509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4d5f25a5-9102-472f-a2da-c58d1eeb9c93", + "label": "Warrant withdrawn", + "shortCode": "WWDN", + "level": "O", + "rank": 21400, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "withdrawn" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "81aaac7d-84c3-45cb-a845-69b7f3fb20fe", + "label": "Reason for withdrawing warrant", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "2509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8e7f7ffd-eceb-44ea-8efd-bc6c99913d85", + "label": "Restraining order discharged", + "shortCode": "RESTRAD", + "level": "O", + "rank": 21500, + "wordGroups": [ + { + "wordGroup": [ + "Restraining", + "Order", + "discharged" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8a11df41-cc91-4b67-80c4-6108c9b5e324", + "label": "Third party's name (victim or police)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a06952c1-4bfe-4004-b6ac-6908afefdd6a", + "label": "Third party's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2ade6e72-ee41-4718-87a0-1a396579ac56", + "label": "Original order made by", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c2200b1d-a47d-4d02-9b88-58f8bbed7ea9", + "label": "Restraining order varied", + "shortCode": "RESTRAV", + "level": "O", + "rank": 21600, + "wordGroups": [ + { + "wordGroup": [ + "Restraining", + "Order", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8a11df41-cc91-4b67-80c4-6108c9b5e324", + "label": "Third party's name (victim or police)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a06952c1-4bfe-4004-b6ac-6908afefdd6a", + "label": "Third party's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2ade6e72-ee41-4718-87a0-1a396579ac56", + "label": "Original order made by", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2da599de-da03-492e-b66f-e7aad32fcfa5", + "label": "Terms of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49a85507-8a96-4201-965d-a11879c73f8c", + "label": "Order now expires", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c32b9ca1-78da-4c7c-bde6-8218aed2bb80", + "label": "Adjournment refused", + "shortCode": "ADR", + "level": "O", + "rank": 21700, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "refused" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "61d8be36-adac-4a47-aa65-a46962f2bd8b", + "label": "Reason for refusal", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Bydd y gwrandawiad nesaf yn y llys ynadon", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bc4bb54f-1fa8-43d8-8021-c1e07994d5f6", + "label": "Racially aggravated offence", + "shortCode": "RA", + "level": "O", + "rank": 21800, + "wordGroups": [ + { + "wordGroup": [ + "racially", + "aggravated" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "07f5229c-cf4c-45f2-a49b-703d11bf5b41", + "label": "Racially and religiously aggravated offence", + "shortCode": "RARE", + "level": "O", + "rank": 21900, + "wordGroups": [ + { + "wordGroup": [ + "racially", + "religious", + "aggravated" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "label": "Community requirement: Foreign travel prohibition any country for period", + "shortCode": "FTPCP", + "level": "O", + "rank": 2900, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "any", + "country", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bcd4f58f-c53e-420f-8d54-c42f125522f9", + "label": "Religiously aggravated offence", + "shortCode": "RE", + "level": "O", + "rank": 22000, + "wordGroups": [ + { + "wordGroup": [ + "religious", + "aggravated" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f25de68a-e719-42dd-9153-6687af843434", + "label": "Aggravated due to transgender", + "shortCode": "TGG", + "level": "O", + "rank": 22100, + "wordGroups": [ + { + "wordGroup": [ + "transgender", + "aggravated" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6fcb509f-1343-46df-a79b-7f650d84d3f2", + "label": "Aggravated due to transgender of victim", + "shortCode": "TGV", + "level": "O", + "rank": 22200, + "wordGroups": [ + { + "wordGroup": [ + "transgender", + "aggravated", + "victim" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cfe8ea34-4461-42e1-836c-2319924b4ea6", + "label": "General disqualification for a period", + "shortCode": "DGEN", + "level": "O", + "rank": 22300, + "wordGroups": [ + { + "wordGroup": [ + "general", + "disqualification", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label": "Period of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label": "Period of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label": "Period of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label": "Period of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b7eacb5-af56-4f40-b808-40270fb900cd", + "label": "Nature of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "db41c015-10b7-4947-9524-ce61344c8d6a", + "label": "Reason for disqualification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "95d8d079-3680-4819-9bf7-5e268aae8ff0", + "label": "General disqualification for life", + "shortCode": "DGENL", + "level": "O", + "rank": 22400, + "wordGroups": [ + { + "wordGroup": [ + "general", + "disqualification", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1b7eacb5-af56-4f40-b808-40270fb900cd", + "label": "Nature of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "db41c015-10b7-4947-9524-ce61344c8d6a", + "label": "Reason for disqualification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "49297a56-1d57-4f3a-862a-351a9c7372a7", + "label": "Female genital mutilation protection order until further order", + "shortCode": "FGMPO", + "level": "O", + "rank": 22500, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "Further" + ] + }, + { + "wordGroup": [ + "fgm", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0987a7f2-c628-43f4-b978-1a4db2e4c45b", + "label": "Terms of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b3c338ee-3a15-4f46-bf51-4ed3dd9fa831", + "label": "Female genital mutilation protection order for period", + "shortCode": "FGMPOP", + "level": "O", + "rank": 22600, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "Period" + ] + }, + { + "wordGroup": [ + "fgm", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0987a7f2-c628-43f4-b978-1a4db2e4c45b", + "label": "Terms of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3f6ea21a-1e7a-4fbf-b6bd-a1d0d59d9636", + "label": "Female genital mutilation protection order until end date", + "shortCode": "FGMPOE", + "level": "O", + "rank": 22700, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "end" + ] + }, + { + "wordGroup": [ + "fgm", + "end" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", + "label": "End date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0987a7f2-c628-43f4-b978-1a4db2e4c45b", + "label": "Terms of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a9ec3d80-c37a-4f51-9706-e33b6feb6d2d", + "label": "Female genital mutilation protection order varied (until further order)", + "shortCode": "FGMPOV", + "level": "O", + "rank": 22800, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "varied", + "Further" + ] + }, + { + "wordGroup": [ + "fgm", + "varied", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f7d348da-6f8b-4170-9660-55ee16453865", + "label": "Terms of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9f707be3-97fb-4ea8-984b-41547adc189c", + "label": "Female genital mutilation protection order varied (for period)", + "shortCode": "FGMPOVP", + "level": "O", + "rank": 22900, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "varied", + "Period" + ] + }, + { + "wordGroup": [ + "fgm", + "varied", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f7d348da-6f8b-4170-9660-55ee16453865", + "label": "Terms of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "label": "Community requirement: Foreign travel prohibition with list of countries for period", + "shortCode": "FTPLP", + "level": "O", + "rank": 3000, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "country", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f77b3b14-91b2-41b7-966b-0f0bad2664e2", + "label": "Countries", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "694af16b-9c84-42a4-a659-3f9ce4cf7d02", + "label": "Female genital mutilation protection order varied (until end date)", + "shortCode": "FGMPOVE", + "level": "O", + "rank": 23000, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "varied", + "end" + ] + }, + { + "wordGroup": [ + "fgm", + "varied", + "end" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f7d348da-6f8b-4170-9660-55ee16453865", + "label": "Terms of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", + "label": "End date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f0d12a39-5c34-43c4-8816-968a9b9e3b60", + "label": "Female genital mutilation protection order discharged", + "shortCode": "FGMPOD", + "level": "O", + "rank": 23100, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "discharged" + ] + }, + { + "wordGroup": [ + "fgm", + "discharged" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", + "label": "Passport surrender", + "shortCode": "PASSS", + "level": "O", + "rank": 600, + "wordGroups": [ + { + "wordGroup": [ + "passport", + "surrender" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "68077602-7fa8-4645-9bc6-bc59ed409f6f", + "label": "Name of Police Station to surrender passport", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b87786ca-5112-4841-9c3e-a131186b1762", + "label": "Passport to be surrendered on or before", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0cee6bf5-21e4-403f-ba45-73e029ab0c73", + "label": "Specify how many days to surrender passport in", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e0294281-d95d-48e2-8bd0-d7af53740ac9", + "label": "Passport surrender variation", + "shortCode": "PASSSV", + "level": "O", + "rank": 23200, + "wordGroups": [ + { + "wordGroup": [ + "passport", + "surrender", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "68077602-7fa8-4645-9bc6-bc59ed409f6f", + "label": "Name of Police Station to surrender passport", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b87786ca-5112-4841-9c3e-a131186b1762", + "label": "Passport to be surrendered on or before", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0cee6bf5-21e4-403f-ba45-73e029ab0c73", + "label": "Specify how many days to surrender passport in", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "62eb1129-38b8-43aa-855c-bec3569bd17f", + "label": "Specify date passport originally surrendered on date (now to be returned)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "63f54361-69dd-4d8e-aece-8d87a6064d20", + "label": "Disqualified for having custody of a dog for period", + "shortCode": "DCUST", + "level": "O", + "rank": 23300, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "dog", + "custody", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3023", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a59be074-10ea-4552-bc83-51d069304402", + "label": "Disqualified for having custody of a dog for life", + "shortCode": "DCUSTL", + "level": "O", + "rank": 23400, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "dog", + "custody", + "Life" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3023", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "95d2a99a-d8ce-43ae-b5d0-d0dfd8d850f1", + "label": "Order to keep dog under proper control", + "shortCode": "DKPC", + "level": "O", + "rank": 23500, + "wordGroups": [ + { + "wordGroup": [ + "dog", + "control" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bfbb887-7b2d-4423-b80f-f55b19224806", + "label": "Dog to be fitted with a muzzle sufficient to prevent it biting any person", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e71dd017-100f-4fbc-aa8f-07cc33837375", + "label": "Dog to be securely held on a lead by a person who is not less than 16 years old", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4c38a549-71e8-40d2-be69-9309653905c3", + "label": "Dog excluded from", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cdca7321-e930-480a-80bb-60064432f8d1", + "label": "Specify terms", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "690bddca-7264-4e3d-9d64-ac7a00fca7c7", + "label": "Describe dog eg name, breed, colour", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3034", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6bd5d409-d656-4829-9ebd-f795e4564c7c", + "label": "Aggravated due to sexual orientation", + "shortCode": "SEXO", + "level": "O", + "rank": 23600, + "wordGroups": [ + { + "wordGroup": [ + "aggravted", + "sexual", + "orientation" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "qualifier": "AW", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0bfb5f42-062b-4473-9c10-bf98315f8117", + "label": "Aggravated due to sexual orientation of victim", + "shortCode": "SEXOV", + "level": "O", + "rank": 23700, + "wordGroups": [ + { + "wordGroup": [ + "aggravted", + "sexual", + "orientation", + "victiim" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "qualifier": "AV", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "98dc94c8-45f0-4961-bb34-cd979dcc2874", + "label": "Order that dog be destroyed", + "shortCode": "DDES", + "level": "O", + "rank": 23800, + "wordGroups": [ + { + "wordGroup": [ + "dog", + "destroyed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a3ea06d8-b297-4ccc-ac1f-f37bd3054388", + "label": "Details of dog", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "783e2975-f9aa-4c7e-90a8-2dd6b16144a4", + "label": "Further information about destruction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3021", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c1b0dedf-1380-4889-9d31-1816b850e348", + "label": "Community requirement: Foreign travel prohibition with list of countries for dates", + "shortCode": "FTPLD", + "level": "O", + "rank": 3100, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "country", + "any", + "dates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f77b3b14-91b2-41b7-966b-0f0bad2664e2", + "label": "Countries", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "464b2a25-dfe4-42b2-8cc7-29a66edf9743", + "label": "Dates of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "datesOfProhibition", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0b4fee38-ee9b-4aef-9179-cda3e1dbc607", + "label": "Disqualified from keeping a dog for period", + "shortCode": "DDIS", + "level": "O", + "rank": 23900, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "dog", + "keeping", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3022", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e715521c-a4ae-40b3-b127-7612a0b6f32e", + "label": "Disqualified from keeping a dog for life", + "shortCode": "DDISL", + "level": "O", + "rank": 24000, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "dog", + "keeping", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3022", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "29c0a838-14ac-42c0-870c-ee1a133601e3", + "label": "Aggravated due to hostility based on disability of victim", + "shortCode": "DISV", + "level": "O", + "rank": 24100, + "wordGroups": [ + { + "wordGroup": [ + "aggravated", + "disability", + "victim" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "qualifier": "AX", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a395f8db-9473-4172-8474-c0fb5e1bbefb", + "label": "Motivated by hostility towards persons who have a disability or a particular disability", + "shortCode": "DISG", + "level": "O", + "rank": 24200, + "wordGroups": [ + { + "wordGroup": [ + "motivated", + "disability" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "qualifier": "AY", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e7ef0248-fe71-4733-8749-ff0c23a04f95", + "label": "Shotgun Certificate cancelled", + "shortCode": "CSHOC", + "level": "O", + "rank": 24300, + "wordGroups": [ + { + "wordGroup": [ + "shotgun", + "cancelled" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3035", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "19026543-7d59-467b-9649-35ddf89b30cc", + "label": "Firearm Certificate Cancelled", + "shortCode": "CFIRC", + "level": "O", + "rank": 24400, + "wordGroups": [ + { + "wordGroup": [ + "firearm", + "cancelled" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3035", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0b472a9c-5bef-4de7-bbd9-20d22e6d07eb", + "label": "Defendant's costs payable from central funds - sum assessed", + "shortCode": "DCCFSA", + "level": "O", + "rank": 24500, + "wordGroups": [ + { + "wordGroup": [ + "defendant", + "Costs", + "central", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "672c8f19-2f64-4720-8638-1d7c7e66deda", + "label": "Sum assessed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label": "Creditor's name and address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b2fb2c0e-5c71-4a07-a870-506030f2d5ce", + "label": "Defendant's costs payable from central funds - sum to be assessed", + "shortCode": "DCCFSTA", + "level": "O", + "rank": 24600, + "wordGroups": [ + { + "wordGroup": [ + "defendant", + "Costs", + "central", + "to", + "be", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b17f9f16-20d4-4bb0-8872-5ab4878245c2", + "label": "Legal / defendant's personal costs", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5609ef92-3d72-4106-915a-aa83401bcaa3", + "label": "Percentage reduction ordered", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "feb9ebe0-b9bf-4b71-92e3-dcf5ceeeeada", + "label": "Other party's costs from central funds - sum assessed", + "shortCode": "CFCAOA", + "level": "O", + "rank": 24700, + "wordGroups": [ + { + "wordGroup": [ + "other", + "Costs", + "central", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", + "label": "Payment type", + "welshLabel": "Math o daliad", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label": "Creditor's name and address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "672c8f19-2f64-4720-8638-1d7c7e66deda", + "label": "Sum assessed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ed37c314-3700-4646-94f7-b2ec2cf8cef2", + "label": "Other party's costs from central funds - sum to be assessed", + "shortCode": "CFCAOTA", + "level": "O", + "rank": 24800, + "wordGroups": [ + { + "wordGroup": [ + "other", + "Costs", + "central", + "to", + "be", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", + "label": "Payment type", + "welshLabel": "Math o daliad", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label": "Creditor's name and address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "label": "Community requirement: Foreign travel prohibition any country for dates", + "shortCode": "FTPCD", + "level": "O", + "rank": 3200, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "any", + "dates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "464b2a25-dfe4-42b2-8cc7-29a66edf9743", + "label": "Dates of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "datesOfProhibition", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5ab30f3f-ef9a-46d0-8ccc-ddd2be8f4eee", + "label": "Prosecutor's costs from central funds - sum assessed", + "shortCode": "CFCAPA", + "level": "O", + "rank": 24900, + "wordGroups": [ + { + "wordGroup": [ + "prosecution", + "Costs", + "central", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label": "Creditor's name and address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "672c8f19-2f64-4720-8638-1d7c7e66deda", + "label": "Sum assessed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ab3df821-8a0b-408e-802d-ea04e3a1a8c5", + "label": "Prosecutor's costs from central funds - sum to be assessed", + "shortCode": "CFCAPTA", + "level": "O", + "rank": 25000, + "wordGroups": [ + { + "wordGroup": [ + "prosecution", + "Costs", + "central", + "to", + "be", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label": "Creditor's name and address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5609ef92-3d72-4106-915a-aa83401bcaa3", + "label": "Percentage reduction ordered", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6d2cd232-d38f-413f-bbec-5f83ef379b90", + "label": "Debtor to be searched", + "shortCode": "SRCH", + "level": "D", + "rank": 25100, + "wordGroups": [ + { + "wordGroup": [ + "debtor", + "searched" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d1f3066a-2d42-432a-9531-4194c42c9759", + "label": "Money found to be applied to debt", + "shortCode": "APMONEY", + "level": "D", + "rank": 25200, + "wordGroups": [ + { + "wordGroup": [ + "money", + "applied", + "debt" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8d72d822-d3e2-4c30-b089-ab36f58ebefe", + "label": "Amount to be applied", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "57bec156-6591-4449-8bc4-4981d71b4e8c", + "label": "Money found not to be taken", + "shortCode": "NTMONEY", + "level": "D", + "rank": 25300, + "wordGroups": [ + { + "wordGroup": [ + "money", + "not", + "taken" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "dc0a94ae-d212-44ab-b350-8a566533eeb4", + "label": "Amount of money court directs should not be taken", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d1aa9b8b-2aca-49a0-9f04-99eba9fd8491", + "label": "Reason for not taking money", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "261c0c09-d9ef-4422-b30e-248461d777ee", + "label": "Imprisonment in default of payment - on same date as imposition", + "shortCode": "IMPDP", + "level": "O", + "rank": 25400, + "wordGroups": [ + { + "wordGroup": [ + "imprisonment", + "default", + "payment" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8849cbc-f083-465b-af48-528ba436b90f", + "label": "Imprisonment reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f2cff709-d97f-4a59-b971-c9adba389319", + "label": "Further reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label": "Total amount enforced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "TOTENF", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "96cab958-f6f1-460b-875a-2b1e80a8b1e4", + "label": "Detention in default of payment - on same date as imposition", + "shortCode": "DETDP", + "level": "O", + "rank": 25500, + "wordGroups": [ + { + "wordGroup": [ + "detention", + "default", + "payment" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8849cbc-f083-465b-af48-528ba436b90f", + "label": "Imprisonment reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f2cff709-d97f-4a59-b971-c9adba389319", + "label": "Further reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "e36171b4-d3fb-4260-88f3-deca99288512", + "label": "Total amount enforced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1510", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "85c75b3b-18c4-460b-8e06-6358ae410536", + "label": "Notification of driver's disability to DVLA", + "shortCode": "DRDIS", + "level": "D", + "rank": 25600, + "wordGroups": [ + { + "wordGroup": [ + "notification", + "disability", + "dvla" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "c00d52fa-2c76-4681-ae67-94d0a9cec02c", + "label": "Defendant told DVLA would be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9c5e9397-6c28-4484-b075-fd0d08143dd4", + "label": "Defendant not told DVLA would be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4f97544b-1c9b-4350-8dcb-62e2017e3f8c", + "label": "Nature and source of disability information", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "58a92700-b229-4b6d-bf63-d9df9cbc59af", + "label": "Court contact (SPOC)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a96c1135-3057-453e-80c8-602a7f79013a", + "label": "Hospital order", + "shortCode": "MHHO", + "level": "O", + "rank": 25700, + "wordGroups": [ + { + "wordGroup": [ + "hospital", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "701b27ad-c54a-4011-a605-8c438ff685c9", + "label": "Name of hospital where defendant will be admitted or detained", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39001635-2dc8-4a58-9934-eeb60fa4d93b", + "label": "Name of hospital unit", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", + "label": "Hospital address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "611a9bc2-4a25-438c-90cc-bf86fdd30d86", + "label": "Mental health conviction status", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label": "Place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label": "Conveyor/custodian", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96949d0c-a59c-4a6f-a563-97456c985987", + "label": "Further directions regarding conveyance to place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1008", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ef1f6633-3c0b-4adc-b5b8-8ef21e91417f", + "label": "Guardianship Order", + "shortCode": "MHGO", + "level": "O", + "rank": 25800, + "wordGroups": [ + { + "wordGroup": [ + "guardianship", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "440b778c-98c6-4764-b627-8851b5ef0834", + "label": "Name of the guardian with whom defendant will be placed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "85e500c7-5cf4-4e23-8dcf-1e413c805031", + "label": "Guardian's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "611a9bc2-4a25-438c-90cc-bf86fdd30d86", + "label": "Mental health conviction status", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1014", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a19714a0-5d58-4666-bc15-3d9dd2692f77", + "label": "Community requirement: Foreign travel with list of countries for dates", + "shortCode": "FTCD", + "level": "O", + "rank": 3300, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "country", + "dates" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "37853bb7-8844-4cc1-8a34-fa7e4d89d87f", + "label": "Restitution Order", + "shortCode": "RESTIT", + "level": "O", + "rank": 25900, + "wordGroups": [ + { + "wordGroup": [ + "restitution", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d71816c-6972-4a50-9493-719295a99ac8", + "label": "Person to recover goods / money", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "eb3a82b0-b56b-4341-977d-9b76a377ce91", + "label": "Specify stolen goods to be restored to victim", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "43627e85-4cc4-4e2c-8fb6-95a70cd378d1", + "label": "Specify goods representing stolen goods (proceeds) to be transferred to victim", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c26d561-9275-4406-b38e-26c1e6f22d6e", + "label": "Specify sum to be paid out of money taken out of offender's possession on apprehension", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3013", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "62510cc8-7dd6-4c98-bc3a-fa24c730f91c", + "label": "Proceedings stayed", + "shortCode": "STAYP", + "level": "O", + "rank": 26000, + "wordGroups": [ + { + "wordGroup": [ + "proceedings", + "stayed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8e36cc12-aabc-485d-bda7-76230bab0399", + "label": "Circumstances leading to staying proceedings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fde3814-b542-4623-8bf6-8db5fcb86b11", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2061", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ef2eb362-dae5-4ad7-87c6-d1262d55533e", + "label": "Disqualification order relating to animals for period", + "shortCode": "ADISQ", + "level": "O", + "rank": 26100, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "animal", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", + "label": "Type of animal", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "db46c413-91e0-46d9-9b56-9eb54232761e", + "label": "Type of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ce6cdc61-03af-4807-bc55-17e57e263434", + "label": "All animals kept in contravention of this disqualifciation to be seized", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "269324e9-52a1-4b7c-a023-b41f57b4b811", + "label": "Directions regarding seizure", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "01431fda-56cf-4447-89b4-64b0777d791d", + "label": "Minimum period before defendant may apply to terminate order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label": "Order suspended pending appeal", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", + "label": "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3115", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "94f2989a-f4fd-4a39-a67f-71a4c0828f9d", + "label": "Disqualification order relating to animals for life", + "shortCode": "ADISQL", + "level": "O", + "rank": 26200, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "animal", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", + "label": "Type of animal", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "db46c413-91e0-46d9-9b56-9eb54232761e", + "label": "Type of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ce6cdc61-03af-4807-bc55-17e57e263434", + "label": "All animals kept in contravention of this disqualifciation to be seized", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "269324e9-52a1-4b7c-a023-b41f57b4b811", + "label": "Directions regarding seizure", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "01431fda-56cf-4447-89b4-64b0777d791d", + "label": "Minimum period before defendant may apply to terminate order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label": "Order suspended pending appeal", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", + "label": "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3115", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a05f96e2-d36f-48aa-b6f4-1daefd10bca3", + "label": "Surety discharged", + "shortCode": "SURDIS", + "level": "O", + "rank": 26300, + "wordGroups": [ + { + "wordGroup": [ + "surety", + "discharged" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a3cd0c91-9d16-446a-94a7-7d3db6216587", + "label": "Surety's Name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a22f62fa-b9c5-45be-bd79-07d3ae7418f9", + "label": "Payment terms - no payment term set - defendant serving custodial sentence", + "shortCode": "PTNC", + "level": "D", + "rank": 26500, + "wordGroups": [ + { + "wordGroup": [ + "no", + "payment", + "terms" + ] + }, + { + "wordGroup": [ + "payment", + "custody" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "851e2be3-1436-47a4-824d-ca3168647f0c", + "label": "Collecting Magistrates' Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e26940b7-2534-42f2-9c44-c70072bf6ad2", + "label": "Remanded In custody with bail direction", + "shortCode": "RIB", + "level": "O", + "rank": 26600, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "conditional", + "bail", + "direction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label": "Remand basis", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": "prison", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9ecac6aa-a205-481f-b67d-e2425ad074cf", + "label": "Bail date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e200e964-628a-4284-bd4e-fab9c819f7f1", + "label": "Bail time", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "80be59c8-ffaa-4570-b40a-f3a085058208", + "label": "Bail condition reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual": null, + "reference": "bailConditionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "680e4cfd-36e0-4b22-8a30-4142bd42bf16", + "label": "BASS provider", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4046", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand conditional bail", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "16a25613-487d-4359-8fc6-9a3968ff669f", + "label": "Remanded in custody for medical reports", + "shortCode": "REMMED", + "level": "O", + "rank": 26700, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "medical" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3c16ae6f-a6cf-4adc-b483-67875213d4f2", + "label": "Remanded under Section number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a74b54d3-a8f9-49bf-b2d7-edd991d1537a", + "label": "Type of medical report required", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "febc23f3-db6f-41ae-8ed7-37920638f597", + "label": "Reason for report", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8fa194e5-6d5f-41f1-9315-14a779586727", + "label": "Medical History", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "34b5e96c-ae6c-4b38-91ee-2a04349b8871", + "label": "Offence Details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c3bcc21e-48e1-43f0-9546-4223f223e7a7", + "label": "Criminal Record", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8061b2b3-ca56-4002-a76b-6d452bbfa61f", + "label": "Home Circumstances", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "749a0db6-4186-4f82-935d-d8084f353d19", + "label": "Officer in case", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7f5235bc-673b-47a7-97d3-616d9095f606", + "label": "Probation/Probation Services Officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4ddda002-526e-4d70-9df7-eeaae75cfab7", + "label": "Pre-release bail condition: Passport - give to the court any passport held", + "shortCode": "PRBCP1", + "level": "O", + "rank": 26800, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "passport", + "court" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JL", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d85486c4-06f1-4813-859b-5495ca578bde", + "label": "Pre-release bail condition: Passport - give to HM Revenue and Customs any passport held", + "shortCode": "PRBCP2", + "level": "O", + "rank": 27000, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "passport", + "hmrc" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "label": "Community requirement: Foreign travel prohibition with excepted country for period", + "shortCode": "FTPEP", + "level": "O", + "rank": 3400, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "except", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", + "label": "Country allowed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "countryAllowed", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "rollUpPrompts": false, + "publishedForNows": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bb0a2862-a565-46aa-96ed-1e6f972949d0", + "label": "Pre-release bail condition: Passport - give to Police Station", + "shortCode": "PRBCP3", + "level": "O", + "rank": 27100, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "passport", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label": "Police Station Name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1ebd5ca1-866d-43a0-ad9a-464e8a228235", + "label": "Pre-release bail condition: Passport - surrender to Police Station during football control period", + "shortCode": "PRBCP4", + "level": "O", + "rank": 27200, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "football", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label": "Police Station Name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "279fd36e-17c5-42b2-b56b-a6ab27b9b592", + "label": "Pre-release bail condition: Passport - give to the court any identity card held which could be used as a travel document within the European Economic Area", + "shortCode": "PRBCP5", + "level": "O", + "rank": 27300, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "travel", + "document", + "European", + "court" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JL", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", + "label": "Pre-release bail condition: Passport - give to HM Revenue and Customs any identity card held which could be used as a travel document within the European Economic Area", + "shortCode": "PRBCP6", + "level": "O", + "rank": 27400, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "travel", + "document", + "European", + "hmrc" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e5864697-640a-47be-9289-9e6205bbe579", + "label": "Pre-release bail condition: Passport - give to police station any identity card held which could be used as a travel document within the European Economic Area", + "shortCode": "PRBCP7", + "level": "O", + "rank": 27500, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "travel", + "document", + "European", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label": "Police Station Name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", + "label": "Pre-release bail condition: Passport - surrender identity card to police station during football control period", + "shortCode": "PRBCP8", + "level": "O", + "rank": 83800, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, + "financial": "N", + "unscheduled": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, + "wordGroups": [ + { + "wordGroup": [ + "PRBCP8" + ] + }, + { + "wordGroup": [ + "pre-release", + "travel", + "document", + "European", + "police", + "football" + ] + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Pre-release bail conditions", + "qualifier": "JM", + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "resultTextTemplate": "Passport - surrender identity card to {policeStationName} police station during football control period", + "terminatesOffenceProceedings": false, + "prompts": [ + { + "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label": "Police Station Name", + "resultPromptRule": "mandatory", + "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, + "userGroups": [], + "courtExtract": "Y", + "financial": "N", + "jurisdiction": "B", + "min": "1", + "max": "70", + "reference": "policeStationName" + } + ] + }, + { + "id": "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", + "label": "Pre-release bail condition: Surety - find a surety", + "shortCode": "PRBCS1", + "level": "O", + "rank": 27700, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "surety" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", + "label": "In the sum of", + "welshLabel": "Y swm o", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JU", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", + "label": "Pre-release bail condition: Surety - find a continuous surety", + "shortCode": "PRBCS2", + "level": "O", + "rank": 27800, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "surety", + "conditional" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", + "label": "In the sum of", + "welshLabel": "Y swm o", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JV", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4558f9b2-47f8-4430-a0f8-684df5d55761", + "label": "Pre-release bail condition: Surety - find sureties", + "shortCode": "PRBCS3", + "level": "O", + "rank": 27900, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "sureties" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5139e711-b645-4b1c-af81-84f5887abdf6", + "label": "Number of sureties", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", + "label": "In the sum of", + "welshLabel": "Y swm o", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JW", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b9581c12-81c9-434d-8851-03d9638547fa", + "label": "Pre-release bail condition: Security - lodge with Court", + "shortCode": "PRBCSE1", + "level": "O", + "rank": 28000, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "security", + "lodge" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e18066ab-1dd0-4bee-a43d-30417de4c3c3", + "label": "Specify what is to be lodged", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "364d3065-0699-4df1-a68f-a69c429d0867", + "label": "Community requirement: Foreign travel prohibition with excepted country for dates", + "shortCode": "FTPED", + "level": "O", + "rank": 3500, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "except", + "dates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", + "label": "Country allowed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "countryAllowed", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "464b2a25-dfe4-42b2-8cc7-29a66edf9743", + "label": "Dates of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "datesOfProhibition", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "rollUpPrompts": false, + "publishedForNows": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b922e6bd-70a4-4b28-b583-165179af6162", + "label": "Pre-release bail condition: Security - pay a deposit to Court", + "shortCode": "PRBCSE2", + "level": "O", + "rank": 28100, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "security", + "deposit" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "04d4075d-b306-44f4-9200-db9ad9577ea2", + "label": "Amount", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", + "label": "Pre-release bail condition: Other - give the court a telephone number and tell the court immediately if the number changes or you can no longer be contacted on that number", + "shortCode": "PRBCT", + "level": "O", + "rank": 28200, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "telephone", + "number" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "68972040-55eb-42c8-aac6-975f88d64511", + "label": "Date by which must give telephone number", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JG", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c51e3522-5363-4af0-b5af-97a5f9eb5462", + "label": "Pre-release bail condition: Other", + "shortCode": "PRBCO", + "level": "O", + "rank": 28300, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "other" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad5ad2de-35e5-4395-b5e7-913d0fc09349", + "label": "Specify", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "525c4660-9a0b-4a86-80fc-0efce539d6a5", + "label": "Bail condition: Assessments/Reports - undergo an assessment for dependency on Class A drugs and participate in any follow-up assessment, assistance or treatment considered appropriate", + "shortCode": "PORAR1", + "level": "O", + "rank": 28400, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "assessment", + "Drug" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2fc5fe29-28f8-47dc-86f9-7b3221a71975", + "label": "Specify qualified person to conduct assessments/reports", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "specifyQualifiedPersonToConductAssessmentsreports", + "courtExtract": "Y", + "durationSequence": null, + "hidden": true + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "GT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e073f3ba-2585-4c0d-8c31-e51a1662d143", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Bail condition: Assessments/Reports - participate in any assistance or treatment considered appropriate for misuse of class A drugs", + "shortCode": "PORAR2", + "level": "O", + "rank": 28500, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "treatment", + "Drug" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7656ce22-8bee-497c-8e27-c7718a743652", + "label": "Specify qualified person who will decide treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "specifyQualifiedPersonWhowillDecideTreatment", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "GT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1aa6a828-fedb-43bd-89e8-bc74586d5e85", + "label": "Bail condition: Assessments/Reports - provide pre-sentence drug test samples", + "shortCode": "PORAR3", + "level": "O", + "rank": 28600, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "Drug", + "test" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2e4bf9d6-5184-45bf-bd33-b4e2d1430e2f", + "label": "Date to provide samples by", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a124724e-2348-41fc-a4b6-6f22c8ef421e", + "label": "Specify details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "GT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "136725da-5b0a-43d3-adac-54f916bcf2bb", + "label": "Bail condition: Assessments/Reports - report to the local probation office for a report to be made", + "shortCode": "PORAR4", + "level": "O", + "rank": 28700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "probation", + "office", + "report" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f4da7a9c-a52e-4fbc-a21b-ce1a1d7c6b5d", + "label": "Probation office", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d351e768-f0f8-4e14-a042-f8306981b1c8", + "label": "Time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "55be2d17-7b95-4cc9-b8f0-290f84e66d85", + "label": "Date", + "welshLabel": "Dyddiad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "919ca489-f98d-4776-8b44-2e42958247d4", + "label": "Provider of probation services", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JZ", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", + "label": "Bail condition: Assessments/Reports - report to the local office of a provider of probation services for a report to be made", + "shortCode": "PORAR5", + "level": "O", + "rank": 28800, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "probation", + "provider", + "report" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JZ", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Bail condition: Assessments/Reports - make available for reports to be prepared", + "shortCode": "PORAR6", + "level": "O", + "rank": 28900, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "available", + "report" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JZ", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", + "label": "Bail condition: Assessments/Reports - report to a youth justice team for a report to be made", + "shortCode": "PORAR7", + "level": "O", + "rank": 29000, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "report", + "yjt" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ae2e98c1-1b4b-4b19-8f60-22bd56aaed72", + "label": "Youth Justice Team Location", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d351e768-f0f8-4e14-a042-f8306981b1c8", + "label": "Time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "55be2d17-7b95-4cc9-b8f0-290f84e66d85", + "label": "Date", + "welshLabel": "Dyddiad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RE", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "label": "Community requirement: Alcohol treatment", + "shortCode": "ATR", + "level": "O", + "rank": 3600, + "wordGroups": [ + { + "wordGroup": [ + "Alcohol", + "treatment", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3110", + "adjournment": false, + "convicted": true, + "qualifier": "BT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", + "label": "Bail condition: Computer - not to use any device capable of accessing the internet unless it can retain and display a history of internet use and it is made available to police for inspection upon request", + "shortCode": "PORCO1", + "level": "O", + "rank": 29100, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "device", + "internet", + "history" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RF", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6889288e-5e4a-4523-be2c-cc993a00af29", + "label": "Bail condition: Computer - not to delete any history of computer use", + "shortCode": "PORCO2", + "level": "O", + "rank": 29200, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "delete", + "history" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RG", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0649851f-01f8-48fb-928d-6fe100042b2a", + "label": "Bail condition: Computer - not to use", + "shortCode": "PORCO3", + "level": "O", + "rank": 29300, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "computer", + "not", + "use" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b862676c-a945-4fa4-b0fc-551a2d043593", + "label": "Specify device / service", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4f585f53-f68c-41f1-9734-e88aa1e91f14", + "label": "Specify restriction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", + "label": "Bail condition: Computer - not to possess any device capable of storing digital images unless you make it available on request", + "shortCode": "PORCO4", + "level": "O", + "rank": 29400, + "wordGroups": [ + { + "wordGroup": [ + "bail. device", + "images" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", + "label": "Bail condition: Curfew", + "shortCode": "PORCU1", + "level": "O", + "rank": 29500, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "Curfew" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JD", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "03edddce-c188-4b38-9832-988d9d1ee802", + "label": "Bail condition: Curfew with electronic monitoring - first notification", + "shortCode": "PORCU2", + "level": "O", + "rank": 29600, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "Electronic", + "Monitoring", + "first" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5c02ff4c-6a33-4089-8c9e-f120a688b018", + "label": "Bail condition: Curfew with electronic monitoring - variation notification", + "shortCode": "PORCU2V", + "level": "O", + "rank": 29700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "Electronic", + "Monitoring", + "variation" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b271650b-0203-4d68-bcef-307038acfdf0", + "label": "Date of original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "afc73f23-3308-40a1-ae8e-c00a8f282699", + "label": "Original case number if different", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d45c8150-3095-4cb3-a55e-b4fd094af560", + "label": "Bail condition: Curfew with electronic monitoring - additional notification", + "shortCode": "PORCU2A", + "level": "O", + "rank": 29800, + "wordGroups": [ + { + "wordGroup": [ + "bail electronic", + "Monitoring", + "Additional" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b271650b-0203-4d68-bcef-307038acfdf0", + "label": "Date of original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "afc73f23-3308-40a1-ae8e-c00a8f282699", + "label": "Original case number if different", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "922386e1-bdc2-403e-8902-af1da14e1fd8", + "label": "Bail condition: Curfew with electronic monitoring - continuation notification", + "shortCode": "PORCU2C", + "level": "O", + "rank": 29900, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "Electronic", + "Monitoring", + "continuation" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d34b643e-74d5-4288-a4b9-bce14d0069d5", + "label": "Bail condition: Curfew - and present him/herself to a police officer who asks to see them between these times", + "shortCode": "PORCU3", + "level": "O", + "rank": 30000, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "present", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JE", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "label": "Community requirement: Alcohol treatment non-residential", + "shortCode": "ATRNR", + "level": "O", + "rank": 3700, + "wordGroups": [ + { + "wordGroup": [ + "Alcohol", + "treatment", + "Non-residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "62882318-42b3-4bf9-8bc5-e724aeaaa19a", + "label": "Treatment institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6aaf3645-0806-4917-ada5-b019c6a606c5", + "label": "Treatment intervals", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3110", + "adjournment": false, + "convicted": true, + "qualifier": "BS", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fb9b273e-06c3-4a4a-940c-3c053c559abe", + "label": "Bail condition: Exclusion - not drive a motor vehicle on any road or in any other public place", + "shortCode": "PORE1", + "level": "O", + "rank": 30100, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "drive" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JF", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "481547e6-9099-475e-8028-2bce2c52ff5f", + "label": "Bail condition: Exclusion - not to associate with", + "shortCode": "PORE2", + "level": "O", + "rank": 30200, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "associate" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", + "label": "Names", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JK", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", + "label": "Bail condition: Exclusion - not to contact directly or indirectly", + "shortCode": "PORE3", + "level": "O", + "rank": 30300, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "contact" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", + "label": "Names", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JK", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dfa19118-e944-43f4-93b2-2ed49df5553f", + "label": "Bail condition: Exclusion - not to enter a place except to attend court or pre-arranged appointment with solicitor", + "shortCode": "PORE4", + "level": "O", + "rank": 30400, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "enter", + "court", + "solicitor" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1559b30a-b931-4e3d-86e9-88ab8b116a81", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JO", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c1d490ed-1754-43b8-a485-fdab1a25f8cb", + "label": "Bail condition: Exclusion - not to enter a place", + "shortCode": "PORE5", + "level": "O", + "rank": 30500, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "enter" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1559b30a-b931-4e3d-86e9-88ab8b116a81", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JO", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "90146942-b1b9-4a2e-af2b-141f50d45e5c", + "label": "Bail condition: Exclusion - not go to any public house, licensed club or off licence", + "shortCode": "PORE6", + "level": "O", + "rank": 30600, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "public", + "house" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JN", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9da5909e-d715-4f79-a1b8-34780c57acf1", + "label": "Bail condition: Exclusion - not go within a radius", + "shortCode": "PORE7", + "level": "O", + "rank": 30700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "radius" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ef055240-4c06-45f3-961a-1344ebd56ea5", + "label": "Radius", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JO", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d709a455-02cc-40d9-b3d2-e4194dc46792", + "label": "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer", + "shortCode": "PORE8", + "level": "O", + "rank": 30800, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "radius", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ce3ef725-44bf-480c-954a-a2f5cbf75daf", + "label": "Radius", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JP", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", + "label": "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer. One visit only", + "shortCode": "PORE9", + "level": "O", + "rank": 30900, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "radius", + "police", + "visit" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ce3ef725-44bf-480c-954a-a2f5cbf75daf", + "label": "Radius", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JP", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "99586f43-5b18-45da-87f7-1764ad149985", + "label": "Community requirement: Alcohol treatment residential", + "shortCode": "ATRR", + "level": "O", + "rank": 3800, + "wordGroups": [ + { + "wordGroup": [ + "Alcohol", + "treatment", + "Residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "62882318-42b3-4bf9-8bc5-e724aeaaa19a", + "label": "Treatment institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3110", + "adjournment": false, + "convicted": true, + "qualifier": "BM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "74046e6e-ecb8-4f1f-b210-c5731f080913", + "label": "Restraining order until further order", + "shortCode": "RESTRAOF", + "level": "O", + "rank": 1000, + "wordGroups": [ + { + "wordGroup": [ + "Restraining", + "Order", + "Further" + ] + }, + { + "wordGroup": [ + "RESTRAOF" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", + "label": "Protected person", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "8df0ec7e-5985-4998-af1a-5da293d9cb3c", + "label": "Order details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47337f1c-e343-4093-884f-035ba96c4db0", + "label": "Conviction / acquittal", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8dc70c95-fb09-4842-9138-bc579fceb605", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ea26f773-0a91-4526-b4ad-84d07b5bf940", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3047", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", + "label": "Bail condition: Exclusion - not to leave", + "shortCode": "PORE11", + "level": "O", + "rank": 31100, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "leave" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", + "label": "Place or area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", + "label": "Bail condition: Exclusion - not to go more than a specified radius from a specified place", + "shortCode": "PORE12", + "level": "O", + "rank": 31200, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "radius", + "place" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ce3ef725-44bf-480c-954a-a2f5cbf75daf", + "label": "Radius", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", + "label": "Place or area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4c79ea50-6e14-4c47-8836-c0d0f647e45a", + "label": "Bail condition: Exclusion - the exclusion condition to be electronically monitored with a GPS tag", + "shortCode": "PORE13", + "level": "O", + "rank": 31300, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "exclusion", + "GPS" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "834ed20a-d7d8-419b-b72d-61b30db36560", + "label": "Bail condition: Other", + "shortCode": "PORO1", + "level": "O", + "rank": 31400, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "other" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9be3658b-f425-4673-8c17-b2407badb8c2", + "label": "Specify post-release bail condition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "46051d94-0e60-4010-b86d-cf65e1a464d8", + "label": "Bail condition: Other - to keep mobile phone switched on, fully charged and on your person 24 hours a day", + "shortCode": "PORO2", + "level": "O", + "rank": 31500, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "mobile", + "phone" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0163061b-ac29-4d49-9491-13168ac60f82", + "label": "Mobile number", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RH", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", + "label": "Bail condition: Other - report to police station", + "shortCode": "PORO3", + "level": "O", + "rank": 31600, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "report", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b9bc8c23-dc0b-433d-b9e4-4b957fd1b7d4", + "label": "Police Station Name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e834e96c-f300-4da9-b781-51d38204deb5", + "label": "Reporting days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JQ", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", + "label": "Bail condition: Other - see solicitor", + "shortCode": "PORO4", + "level": "O", + "rank": 31700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "see", + "solicitor" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", + "label": "Bail condition: Other - see barrister", + "shortCode": "PORO5", + "level": "O", + "rank": 31800, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "see", + "barrister" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", + "label": "Bail condition: Residence - live, and sleep each night, at bail hostel", + "shortCode": "PORR1", + "level": "O", + "rank": 31900, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "live", + "sleep", + "hostel" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "16816060-7454-460c-a177-c8da502e18ab", + "label": "Hostel name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JR", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a50ad03e-d299-4da7-874c-0f233d7d503d", + "label": "Bail condition: Residence - live, and sleep each night, at bail hostel or at any other place where you may be told to go by specified person", + "shortCode": "PORR2", + "level": "O", + "rank": 32000, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "live", + "sleep", + "hostel", + "other" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "16816060-7454-460c-a177-c8da502e18ab", + "label": "Hostel name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "713e61b8-4899-408f-b6e4-77cc33abbb1a", + "label": "Supervisor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JS", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "label": "Community requirement: Attendance centre", + "shortCode": "ACR", + "level": "O", + "rank": 3900, + "wordGroups": [ + { + "wordGroup": [ + "attendance", + "centre", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6724800d-3f2d-4503-a078-3a50497a3a20", + "label": "Number of hours", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Hours", + "wordGroup": [ + "Hours" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "28e2f7e0-8886-4cf6-a828-776849f8d3d4", + "label": "Additional / concurrent to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3111", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c18dd89d-e057-42aa-b071-0a91226da3bf", + "label": "Bail condition: Residence - live and sleep each night at address", + "shortCode": "PORR3", + "level": "O", + "rank": 32100, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "live", + "sleep" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", + "label": "Address", + "welshLabel": "Cyfeiriad", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RB", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "795079ed-4b5a-4750-b077-d653180d43ae", + "label": "Bail condition: Residence - not to live in the same household", + "shortCode": "PORR4", + "level": "O", + "rank": 32200, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "live" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4f585f53-f68c-41f1-9734-e88aa1e91f14", + "label": "Specify restriction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "HC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "71efa12c-a68e-4537-ac7d-27ebf91557a6", + "label": "Bail condition: Residence BASS - live and sleep each night at specified address and comply with the conditions of BASS", + "shortCode": "PORR5", + "level": "O", + "rank": 32300, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "live", + "sleep", + "bass" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0dbf39c0-02e9-498f-87cd-c1221270c535", + "label": "BASS address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RB", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "36951b36-de01-45bc-91a7-1c68f5989ed5", + "label": "Bail condition: Residence BASS - take part in additional mandatory support sessions (more than the minimum of one session per week)", + "shortCode": "PORR6", + "level": "O", + "rank": 32400, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "support", + "sessions" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "91141263-7f27-494f-95e9-04a113952974", + "label": "Bail condition: Surety - find continuous surety / sureties", + "shortCode": "PORS", + "level": "O", + "rank": 32500, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "continuous", + "surety" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5139e711-b645-4b1c-af81-84f5887abdf6", + "label": "Number of sureties", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "088ef869-d7f9-4184-b624-6c1e9fab8bee", + "label": "In the sum of", + "welshLabel": "Y swm o", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JX", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", + "label": "Bail condition: Travel - not to apply for international travel documents or be in possession of any", + "shortCode": "PORT1", + "level": "O", + "rank": 32600, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "travel", + "documents" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", + "label": "Bail condition: Travel - not to leave England and Wales", + "shortCode": "PORT2", + "level": "O", + "rank": 32700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "leave", + "England", + "Wales" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JY", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fbed768b-ee95-4434-87c8-e81cbc8d24c8", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Next hearing in Crown Court", + "shortCode": "NHCCS", + "level": "O", + "rank": 500, + "wordGroups": [ + { + "wordGroup": [ + "NHCCS" + ] + }, + { + "wordGroup": [ + "adjournment", + "Crown" + ] + }, + { + "wordGroup": [ + "next", + "hearing", + "Crown" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": "Hours", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": "Minutes", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dfac671c-5b85-42a1-bb66-9aeee388a08d", + "label": "Time of hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTIME", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f507153-6dc9-4ec0-94db-c821eff333f1", + "label": "Courtroom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HCROOM", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7746831a-d5dd-4fa8-ac13-528573948c8a", + "label": "Courthouse name", + "welshLabel": "Enw’r adeilad llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HCHOUSE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9403f0d7-90b5-4377-84b4-f06a77811362", + "label": "Remand Status", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "c82897b8-7e25-4b5d-9cd3-dbf3e1cb7c0c", + "qual": null, + "reference": "remandStatus", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "42962373-587c-4324-9ae6-7c99171d1c69", + "label": "Week commencing", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HDATE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7e72e671-295a-4e56-a419-2a59a14863b0", + "label": "Fixed date", + "welshLabel": null, + "resultPromptRule": "optional", + "type": null, + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": "fixedDate", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Next hearing", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3a529001-2f43-45ba-a0a8-d3ced7e9e7ad", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Remanded on conditional bail", + "shortCode": "RC", + "reference": "", + "level": "O", + "rank": 32800, + "wordGroups": [ + { + "wordGroup": [ + "remanded", + "conditional", + "bail" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label": "Is the defendant excused attendance?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantExcusedAttendance", + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "80be59c8-ffaa-4570-b40a-f3a085058208", + "label": "Bail condition reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual": null, + "reference": "bailConditionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dec5104c-3342-4544-b287-31ea969e0f15", + "label": "BASS provider", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bassProvider", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4027", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand conditional bail", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "ruleType": "optional" + } + ] + }, + { + "id": "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", + "label": "Remanded on unconditional bail", + "shortCode": "RU", + "level": "O", + "rank": 33000, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "unconditional" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label": "Is the defendant excused attendance?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantExcusedAttendance", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4047", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand unconditional bail", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "label": "Community requirement: Alcohol abstinence", + "shortCode": "AAR", + "level": "O", + "rank": 4000, + "wordGroups": [ + { + "wordGroup": [ + "Alcohol", + "abstinence", + "Requirement" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3146", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d0a369c9-5a28-40ec-99cb-da7943550b18", + "label": "Remanded in custody", + "shortCode": "RI", + "level": "O", + "rank": 33300, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "custody" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "21ecdc07-7397-4eac-9c26-e66dfeb32d01", + "label": "TV link at next hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "tvLinkAtNextHearing", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "343de039-f33b-4770-b61c-4d6db4ae369c", + "label": "TV link pre-hearing conference time", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "tVLinkPrehearingConferenceTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label": "Remand basis", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual": null, + "reference": "remandBasis", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "7b2e6219-ddcb-4afa-8615-8de978e60af1", + "label": "Bail exception", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "10a769e8-1b1c-430d-844b-8948942cf353", + "qual": null, + "reference": "bailException", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", + "label": "Bail exception reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "c0fb2ca5-7702-4f01-b344-33029cfdcd47", + "qual": null, + "reference": "bailExceptionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4028", + "drivingTestStipulation": 1, + "pointsDisqualificationCode": "TT99", + "dvlaCode": "C", + "secondaryCJSCodes": [ + { + "cjsCode": "1234", + "text": "SecondaryCjsCode text1" + }, + { + "cjsCode": "5678", + "text": "SecondaryCjsCode text2" + } + ], + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "C", + "resultDefinitionGroup": "Remand in custody", + "policeSubjectLineTitle": "Final Sentence", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6af22d8d-6157-460e-b641-e6db90d15289", + "label": "Remanded in custody pending receipt of Prosecutor's written notice of appeal", + "shortCode": "RIBA2", + "level": "O", + "rank": 33500, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "appeal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e1b8b750-af91-466a-acf8-c7f6685d3b26", + "label": "Time when oral notice of appeal was given", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "timeOfOralNotice", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8b0bf6d4-e48a-425c-bc0d-fed8948010e5", + "label": "Custodian name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "custodianName", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand appeal", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7a0932f5-8264-412e-a83c-2b6d1dce1506", + "label": "Prosecutor's notice of appeal received. Remanded in custody", + "shortCode": "RIBA48", + "level": "O", + "rank": 33600, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "custody", + "appeal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "66f338f2-6c3b-4511-b224-97cbc1eab1c0", + "label": "Time when written notice of appeal was received", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "timeofWrtittenNotice", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "de91870f-f1e3-4dcd-a8ee-fa409ee34beb", + "label": "Crown Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "crownCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6730aae5-9e6b-45e6-8a2e-0e06cc70c7ca", + "label": "Date otherwise bailed to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4049", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "C", + "resultDefinitionGroup": "Remand appeal", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "074124d5-b07a-4b73-8b9a-792e8462138a", + "label": "Prosecutor's bail appeal withdrawn. (D in local custody). Release in accordance with earlier decision", + "shortCode": "RIBAWL", + "level": "O", + "rank": 33700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "appeal", + "wthdrawn" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7af5471c-34c1-4176-b595-8f9a796ac455", + "label": "Basis of appeal being withdrawn", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand appeal", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6511006f-b40d-4fcb-8372-bc38fde69b64", + "label": "Remitted to youth court for trial", + "shortCode": "REMYCT", + "level": "O", + "rank": 33800, + "wordGroups": [ + { + "wordGroup": [ + "remit", + "youth", + "trial" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "44e3bc06-0c07-422a-84a1-bcca57f898f4", + "label": "Youth Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7f2d58f4-ca3d-4059-9df5-19f7cb744676", + "label": "Remitted to youth court for sentence", + "shortCode": "REMYCS", + "level": "O", + "rank": 33900, + "wordGroups": [ + { + "wordGroup": [ + "remit", + "youth", + "sentence" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "44e3bc06-0c07-422a-84a1-bcca57f898f4", + "label": "Youth Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fcbf777d-1a73-47e7-ab9b-7c51091a022c", + "label": "Direction made under Section 45 of the Youth Justice and Criminal Evidence Act 1999", + "shortCode": "D45", + "level": "O", + "rank": 34000, + "wordGroups": [ + { + "wordGroup": [ + "direction", + "45", + "youth" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "03983f51-f937-4dd8-9656-276b1ca86785", + "label": "Restricting publicity in respect of youth - Specify name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label": "Further details", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4510", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", + "label": "Direction under Section 45A of the Youth Justice and Criminal Evidence Act 1999", + "shortCode": "D45A", + "level": "O", + "rank": 34200, + "wordGroups": [ + { + "wordGroup": [ + "direction", + "45a", + "youth" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "03983f51-f937-4dd8-9656-276b1ca86785", + "label": "Restricting publicity in respect of youth - Specify name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label": "Further details", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4510", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "89e3c24b-acbf-42fb-9eee-169b83423035", + "label": "Direction made under Section 46 of the Youth Justice and Criminal Evidence Act 1999", + "shortCode": "D46", + "level": "O", + "rank": 34300, + "wordGroups": [ + { + "wordGroup": [ + "direction", + "46", + "youth" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "27247b35-5013-41cb-9b24-26d38332e547", + "label": "Restricting publicity in respect of adult witness - specify name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label": "Further details", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4510", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c265d589-fcc0-451b-be43-7856e32524ba", + "label": "Direction made under Section 39 of the Children and Young Persons Act 1933", + "shortCode": "D39", + "level": "O", + "rank": 34400, + "wordGroups": [ + { + "wordGroup": [ + "direction", + "39", + "children" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ff5f8083-5413-467f-b359-9abfb49ecbb2", + "label": "State if youth is defendant, witness or victim or combination of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label": "Further details", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4510", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d683f73c-488e-4d8e-a685-d37049c2a3e5", + "label": "Community requirement: Alcohol abstinence with alcohol limit", + "shortCode": "AARAL", + "level": "O", + "rank": 4100, + "wordGroups": [ + { + "wordGroup": [ + "Alcohol", + "abstinence", + "limit" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2d340f59-2b74-437b-8d7d-6b316613021c", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fac82e4b-7c37-4a46-a689-3f1defe2474a", + "label": "Alcohol limit", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3146", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "393c5be8-dadb-484b-ab39-0f1eb57aeae5", + "label": "Order made under Section 11 of the Contempt of Court Act 1981 until date", + "shortCode": "D11", + "level": "O", + "rank": 34500, + "wordGroups": [ + { + "wordGroup": [ + "11", + "contempt", + "until" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a73b3f21-1978-45fc-b413-0299c60e07ad", + "label": "Details of the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3ea2cb5c-397e-4dd3-8328-d375135f3191", + "label": "Date of expiry", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", + "label": "Purpose of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9647428f-0946-4a09-aec1-7bdfcd324ac6", + "label": "Order made under Section 11 of the Contempt of Court Act 1981 until further order", + "shortCode": "D11FO", + "level": "O", + "rank": 34600, + "wordGroups": [ + { + "wordGroup": [ + "11", + "contempt", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a73b3f21-1978-45fc-b413-0299c60e07ad", + "label": "Details of the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", + "label": "Purpose of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "21271525-76f4-4134-9c93-1be012a574c8", + "label": "Order made under Section 4 of the Contempt of Court Act 1981", + "shortCode": "D4", + "level": "O", + "rank": 34700, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "4", + "contempt" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a73b3f21-1978-45fc-b413-0299c60e07ad", + "label": "Details of the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "318c9eb2-cf3c-4592-a353-1b2166c15f81", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4510", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d023e3a7-33ef-45b4-a19b-5137afecbf1f", + "label": "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until date - derogatory assertions", + "shortCode": "D58", + "level": "O", + "rank": 34800, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "58", + "until" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", + "label": "Assertions", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", + "label": "Witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3ea2cb5c-397e-4dd3-8328-d375135f3191", + "label": "Date of expiry", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2c18aff1-b535-47b6-8415-8841e85eac49", + "label": "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until further order - derogatory assertions", + "shortCode": "D58FO", + "level": "O", + "rank": 34900, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "58", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", + "label": "Assertions", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", + "label": "Witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2e725ba6-0e29-4ffb-a5c7-31b67344c211", + "label": "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity in respect of youth", + "shortCode": "D49Y", + "level": "O", + "rank": 35100, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "49", + "publicity", + "youth" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "788bb732-5467-4c0b-ba88-96a0ef8aaeb4", + "label": "Name of youth", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94084f13-fa2f-4d24-938b-0656292edd59", + "label": "Details of reporting restriction lifted", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "98366b12-b70a-4e66-b71d-a5bbd39bd595", + "label": "Order made allowing reporting", + "shortCode": "DALLOW", + "level": "O", + "rank": 35200, + "wordGroups": [ + { + "wordGroup": [ + "allow", + "reporting" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "42711aff-3d3a-4d85-8e68-f03065823422", + "label": "Details of directions allowed to be reported", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", + "label": "Direction restricting publicity revoked", + "shortCode": "DPR", + "level": "O", + "rank": 35300, + "wordGroups": [ + { + "wordGroup": [ + "publicity", + "revoked" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1a7da720-a95a-46e4-b2ee-6b8e9db430cc", + "label": "Date direction allowing publicity made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", + "label": "Excepting direction varied", + "shortCode": "DV", + "level": "O", + "rank": 35400, + "wordGroups": [ + { + "wordGroup": [ + "exception", + "direction", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "851f11ed-99d5-4d2a-96c0-227df6743250", + "label": "Date excepting direction made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", + "label": "Details of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "label": "Community requirement: Mental health treatment", + "shortCode": "MHTR", + "level": "O", + "rank": 4200, + "wordGroups": [ + { + "wordGroup": [ + "Mental", + "Health", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HG", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", + "label": "Excepting direction revoked", + "shortCode": "DR", + "level": "O", + "rank": 35500, + "wordGroups": [ + { + "wordGroup": [ + "exception", + "direction", + "revoked" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "851f11ed-99d5-4d2a-96c0-227df6743250", + "label": "Date excepting direction made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b3035ace-15d4-44ca-9d79-c83a57dc0e30", + "label": "Excepting direction made dispensing with publicity restrictions", + "shortCode": "DP", + "level": "O", + "rank": 35600, + "wordGroups": [ + { + "wordGroup": [ + "dispense", + "publicity" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5b4ddad9-db87-43b4-a127-cc8312a7d56c", + "label": "Date publicity restriction made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7d61ec4e-f75a-489d-9950-5584e354659c", + "label": "Extent of dispensation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "84222bcb-05ac-4c67-82df-cc8742a850d1", + "label": "The Court directs that information relating to the complainant may be published in connection with the summary trial of the case", + "shortCode": "DST", + "level": "O", + "rank": 35700, + "wordGroups": [ + { + "wordGroup": [ + "complainant", + "published", + "trial" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1ffa4f8d-2e22-4226-8f29-fe09b0ef00f6", + "label": "Complainant information", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "07d8fab1-366d-43c5-bdb4-223f8c1229f5", + "label": "Complainant's anonymity protected by virtue of Section 1 of the Sexual Offences Amendment Act 1992", + "shortCode": "DSOA", + "level": "O", + "rank": 35800, + "wordGroups": [ + { + "wordGroup": [ + "anonymity", + "protrected", + "sexual" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2e83102c-a262-4bb3-a48d-c2107a094a66", + "label": "Order revoked", + "shortCode": "OREV", + "level": "O", + "rank": 35900, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "revoked" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7e8ec1d3-e8fb-4116-9e37-842120700c48", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "917a6802-ef7e-4449-8df9-6f9a49fcbe91", + "label": "Order revoked", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "50f095ad-e289-433a-817a-6d79c567a5fa", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0eba630e-a486-439f-8d76-b49b1363067c", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94fbf012-b9a6-4b3c-8743-0803aff0e25c", + "label": "Date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "14f22747-685e-4bd9-91e7-fb372d8c3b72", + "label": "Order to continue", + "shortCode": "OTC", + "level": "O", + "rank": 36000, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "continue" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1040", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c98cb51f-8639-49c1-91f0-a7e820c34355", + "label": "Warrant for arrest without bail", + "shortCode": "WOFN", + "level": "O", + "rank": 36100, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "without", + "bail" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label": "Grounds for warrant", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label": "Process server name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4576", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b4f7c223-b9d1-4409-b6d3-039f66eb9645", + "label": "Warrant for arrest with bail (dated)", + "shortCode": "WOFD", + "level": "O", + "rank": 36300, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "with", + "bail", + "dated" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label": "Grounds for warrant", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label": "Process server name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "507c4249-d897-43bb-b64d-5c156ef6ba85", + "label": "Bail to be allowed on these conditions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4575", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "optional" + } + ] + }, + { + "id": "671df737-9901-4fa5-b245-aeff0c4c7495", + "label": "Warrant for arrest with bail (undated)", + "shortCode": "WOFU", + "level": "O", + "rank": 36400, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "with", + "bail", + "undated" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label": "Grounds for warrant", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8ef9613e-f19c-11e8-904a-f2801f1b9fd1", + "label": "Bail allowed on conditions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label": "Process server name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4577", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c8c962df-e28c-4ea8-8496-721badb77b7b", + "label": "Warrant for arrest redated", + "shortCode": "WOFR", + "level": "O", + "rank": 36500, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "redated" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4575", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "optional" + } + ] + }, + { + "id": "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "label": "Community requirement: Mental health treatment residential patient", + "shortCode": "MHTRR", + "level": "O", + "rank": 4300, + "wordGroups": [ + { + "wordGroup": [ + "Mental", + "Health", + "Non-residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fb580537-9d36-4139-811b-77af09547b0d", + "label": "Care home / Hospital", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HE", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "73242763-44db-4d57-a855-44a6cf4f6226", + "label": "Warrant for arrest without bail executed on day of issue", + "shortCode": "WOFEX", + "level": "O", + "rank": 36600, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "issue" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label": "Grounds for warrant", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b9d81454-a565-4a86-bcf9-e7c58bb89dba", + "label": "Anti-social behaviour order varied", + "shortCode": "ASBOV", + "level": "O", + "rank": 36700, + "wordGroups": [ + { + "wordGroup": [ + "asbo", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7e8ec1d3-e8fb-4116-9e37-842120700c48", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3f441b7c-e9ac-4f1c-b731-babfd2fa94d9", + "label": "Anti-social order type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2da599de-da03-492e-b66f-e7aad32fcfa5", + "label": "Terms of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c491a47d-b167-467b-b2f4-f9e567bd4da0", + "label": "Start of date of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "90d8268d-cc6a-4a09-bdb3-ddf8ea8ef2f9", + "label": "Variation of bail conditions", + "shortCode": "RCBV", + "level": "O", + "rank": 36800, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "77eb185c-03e7-4971-8dcc-77089d048731", + "label": "Date bail previously granted", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "21541638-82dd-4a9f-a05c-67589dc8dce9", + "label": "Court which previously granted bail", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label": "Is the defendant excused attendance?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "80be59c8-ffaa-4570-b40a-f3a085058208", + "label": "Bail condition reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual": null, + "reference": "bailConditionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f7995d94-bf13-41df-a599-79ead4123aad", + "label": "BASS provider", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4574", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand conditional bail", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bb90e801-0066-4bdf-85e6-8d64bc683f0c", + "label": "Reporting restriction continues", + "shortCode": "REPC", + "level": "O", + "rank": 36900, + "wordGroups": [ + { + "wordGroup": [ + "reporting", + "restrictions", + "continue" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "18f255dd-103f-494f-81d0-82db5b5ee7bd", + "label": "Date restriction imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "961962dd-70c3-463c-89d9-a2b2a393b165", + "label": "Remitted from Crown Court to magistrates' court for trial", + "shortCode": "REMITMC", + "level": "O", + "rank": 37000, + "wordGroups": [ + { + "wordGroup": [ + "remittal", + "trial" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b09fdfef-bde4-4804-8731-f1c2632fbfcc", + "label": "Local Justice Area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8542b0d9-27f0-4df3-a4a3-0ac0a85c33ad", + "label": "Notice to magistrates' court that summary offence dismissed", + "shortCode": "SUMD", + "level": "O", + "rank": 37100, + "wordGroups": [ + { + "wordGroup": [ + "summary", + "Dismissed", + "magistrates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b09fdfef-bde4-4804-8731-f1c2632fbfcc", + "label": "Local Justice Area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "306c1775-ec96-4e1d-b35e-bcea099ce10a", + "label": "Notice to magistrates' court that Crown Court powers regarding summary offence have ceased", + "shortCode": "SUMC", + "level": "O", + "rank": 37200, + "wordGroups": [ + { + "wordGroup": [ + "magistrates", + "powers", + "ceased" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b09fdfef-bde4-4804-8731-f1c2632fbfcc", + "label": "Local Justice Area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3fdf077e-92b3-4b58-abd1-040a42c35a45", + "label": "Remanded to hospital for treatment", + "shortCode": "RHT", + "level": "O", + "rank": 37300, + "wordGroups": [ + { + "wordGroup": [ + "remanded", + "hospital" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f8ff8214-14b0-4425-94eb-64e6ae320f80", + "label": "Specify hospital", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label": "Remand basis", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual": null, + "reference": "remandBasis", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "7b2e6219-ddcb-4afa-8615-8de978e60af1", + "label": "Bail exception", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "10a769e8-1b1c-430d-844b-8948942cf353", + "qual": null, + "reference": "bailException", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", + "label": "Bail exception reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "c0fb2ca5-7702-4f01-b344-33029cfdcd47", + "qual": null, + "reference": "bailExceptionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label": "Place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "placeOfSafety", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label": "Conveyor/custodian", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96949d0c-a59c-4a6f-a563-97456c985987", + "label": "Further directions regarding conveyance to place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4051", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "C", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "68c97f89-1672-417d-8513-74cded9d2322", + "label": "Restriction order", + "shortCode": "RISTO", + "level": "O", + "rank": 37400, + "wordGroups": [ + { + "wordGroup": [ + "restriction", + "Order" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1004", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "04437aef-8b44-424e-9cd0-75a10a00f256", + "label": "Hospital direction and limitation direction", + "shortCode": "DHA", + "level": "O", + "rank": 37500, + "wordGroups": [ + { + "wordGroup": [ + "hospital", + "limitation" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1000, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label": "Early release provisions apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": [ + "Early", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label": "Early release provisions do not apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": [ + "Early", + "not", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1500, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ff8214-14b0-4425-94eb-64e6ae320f80", + "label": "Specify hospital", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "specifyHospital", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6baa9e89-7d7d-47b4-bb99-3e3d22cbb011", + "label": "Name of hospital unit", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label": "Place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "placeOfSafety", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label": "Conveyor/custodian", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96949d0c-a59c-4a6f-a563-97456c985987", + "label": "Further directions regarding conveyance to place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1088", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "label": "Community requirement: Mental health treatment non-residential patient", + "shortCode": "MHTRNR", + "level": "O", + "rank": 4400, + "wordGroups": [ + { + "wordGroup": [ + "Mental", + "Health", + "Residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HF", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cb0842d5-9b42-4930-99b3-ae835b56aa56", + "label": "Conditional discharge (no notice produced)", + "shortCode": "CDN", + "level": "O", + "rank": 37600, + "wordGroups": [ + { + "wordGroup": [ + "conditional", + "discharge", + "notice" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label": "Duration of conditional discharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label": "Duration of conditional discharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label": "Duration of conditional discharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label": "Duration of conditional discharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1018", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7dcc9315-917f-408c-bb77-df8b978f503d", + "label": "Deferred sentence", + "shortCode": "DS", + "level": "O", + "rank": 37700, + "wordGroups": [ + { + "wordGroup": [ + "deferred", + "sentence" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2e93862b-2412-41ca-be12-5321815294f2", + "label": "Requirements that must be carried out", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49806ee4-d2d8-40ce-b651-5fee1510aff4", + "label": "The court has appointed a supervisor to supervise you", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1ab4b20a-9421-494f-8b17-843450050a6e", + "label": "Name of victim involved in restorative justice", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e76ed20a-768a-41ad-8b95-921539ac3550", + "label": "Address of victim involved in restorative justice", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4005", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + } + ] + }, + { + "id": "b91a9688-6542-4132-84f2-a3ffff60edfa", + "label": "Deferred sentence with restorative justice activity involving victim", + "shortCode": "DEFRJ", + "level": "O", + "rank": 37800, + "wordGroups": [ + { + "wordGroup": [ + "deferred", + "sentence", + "victim" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2e93862b-2412-41ca-be12-5321815294f2", + "label": "Requirements that must be carried out", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1ab4b20a-9421-494f-8b17-843450050a6e", + "label": "Name of victim involved in restorative justice", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e76ed20a-768a-41ad-8b95-921539ac3550", + "label": "Address of victim involved in restorative justice", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49806ee4-d2d8-40ce-b651-5fee1510aff4", + "label": "The court has appointed a supervisor to supervise you", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4005", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2e3cdfca-8bce-4ad4-93c9-075bead61b0d", + "label": "Notification of requirement to register with police until case dealt with", + "shortCode": "NORRDW", + "level": "O", + "rank": 37900, + "wordGroups": [ + { + "wordGroup": [ + "register", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7780ed3c-ab05-4a53-acce-316b5486d3ec", + "label": "Parent's name if parental direction required", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "859b99d5-de74-4a84-b160-c914467af86d", + "label": "Name of police station to report to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", + "label": "Conviction / finding / insanity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3052", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c4c7db1f-673b-4633-8400-4739f483c68e", + "label": "Notification of requirement to register with police for a period", + "shortCode": "NORR", + "level": "O", + "rank": 38000, + "wordGroups": [ + { + "wordGroup": [ + "register", + "police", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label": "Notification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label": "Notification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label": "Notification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label": "Notification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7780ed3c-ab05-4a53-acce-316b5486d3ec", + "label": "Parent's name if parental direction required", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "859b99d5-de74-4a84-b160-c914467af86d", + "label": "Name of police station to report to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", + "label": "Conviction / finding / insanity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3052", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "55b91429-8dda-4a8f-8b84-d4cd1a398ab5", + "label": "Notification of requirement to register with police indefinately", + "shortCode": "NORRI", + "level": "O", + "rank": 38100, + "wordGroups": [ + { + "wordGroup": [ + "register", + "police", + "indefinately" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7780ed3c-ab05-4a53-acce-316b5486d3ec", + "label": "Parent's name if parental direction required", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "859b99d5-de74-4a84-b160-c914467af86d", + "label": "Name of police station to report to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", + "label": "Conviction / finding / insanity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3052", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9ea0d845-5096-44f6-9ce0-8ae801141eac", + "rollUpPrompts": false, + "publishedForNows": false, + "label": "Collection order", + "shortCode": "COLO", + "level": "C", + "rank": 38200, + "wordGroups": [ + { + "wordGroup": [ + "COLO" + ] + }, + { + "wordGroup": [ + "collection", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6b36e5ff-e116-4dc3-b438-8c02d493959e", + "label": "Collection order type", + "welshLabel": "Math o orchymyn casglu", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "d7d75420-aace-11e8-98d0-529269fb1459", + "qual": null, + "reference": "collectionOrderType", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "369b6e22-4678-4b04-9fe9-5bb53bed5067", + "label": "Reason for not making an attachment of earnings order or deduction from benefit application", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "reasonForNotMakingAnAttachment", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dc44f589-6dd2-4a8d-9164-c1796c6b0e36", + "label": "Reason for making an attachment of earnings order", + "welshLabel": "Rheswm dros wneud gorchymyn atafaelu enillion", + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", + "qual": null, + "reference": "reasonForMakingAnAttachment", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "16ade3fb-9f0f-4ce4-a6c8-fa96277e1519", + "label": "Reason for making an application for deductions from benefit", + "welshLabel": "Rheswm dros wneud cais i ddidynnu o fudd-dal", + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", + "qual": null, + "reference": "reasonForMakingAnApplication", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Gorchymyn Casglu", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "76b02133-4927-4f21-9f79-1ce361a17b0f", + "label": "Confiscation order where Court decides the available amount - makes a statement of findings", + "shortCode": "CONFAA", + "level": "O", + "rank": 38400, + "wordGroups": [ + { + "wordGroup": [ + "confiscation", + "Order", + "decide" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1700, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1700, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1700, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1700, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b613add5-2657-4a13-ad6f-cf01079f1f1a", + "label": "The benefit is a result of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e9e6e941-db50-4eed-b388-f6dafe09f9d5", + "label": "Value of the benefit", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "97ba9a67-9cf9-4357-bed9-1c38b9a037c0", + "label": "Available amount that may be realised", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5a954d49-da57-4952-893c-82f57d2dbed8", + "label": "The defendant's assets are those described in the schedule (form 5050A) and were a matter relevant to the Court's decision", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6275de58-7ba0-4141-b872-19e49707a0e2", + "label": "Total value of assets presented in the schedule (form 5050A)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "CURR", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2281817-6d7f-48f2-a27c-a61ba506a007", + "label": "Total value of assets decided by the Court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "CURR", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "52b9ac44-e6d5-4494-a94c-16b23b5a890b", + "label": "The statement of the prosecutor was a matter relevant to the Court's decision", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5d3e131-3031-4c92-ba48-a2d132767476", + "label": "Matters in the defendant's response to the statement of the prosecutor were relevant to the Court's decision", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8fdf6804-ac49-42c4-9ffe-a1c35b76f8ca", + "label": "Matters in the defendant's response to a court order requiring the defendant to give infomation specified in the order were relevant to the Court's decision", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "42d8c319-ddda-4af6-bc84-53450378b77f", + "label": "Total value of assets presented to Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2281817-6d7f-48f2-a27c-a61ba506a007", + "label": "Total value of assets decided by the Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9e2ea5fd-b373-43e4-81ae-04f1b0b9ed2c", + "label": "Amount ordered to pay", + "welshLabel": "Swm a orchmynnwyd i’w dalu", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6ca8afa4-ec62-4ca1-a914-181418db8961", + "label": "Description of amount to be paid", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cef4a3b2-b279-404c-a6ae-3552f2a9151d", + "label": "Amount of confiscation sum to be paid as compensation", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "CURR", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "851e2be3-1436-47a4-824d-ca3168647f0c", + "label": "Collecting Magistrates' Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", + "label": "Confiscation unit to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 1600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5437f354-b075-4dd0-87cb-260c4fd8dd1f", + "label": "Defendant's custody location", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "869beaee-71bd-4e33-8ea6-3e5554fcb6c8", + "label": "Priority order directions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3056", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Confiscation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "733545c5-5612-40b8-bd81-df1a6a154182", + "label": "Confiscation order where Court does not decide the available amount", + "shortCode": "CONF", + "level": "O", + "rank": 38500, + "wordGroups": [ + { + "wordGroup": [ + "confiscation", + "Order", + "not", + "decide" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d1142456-f354-42ec-ba25-1556d99230c6", + "label": "The benefit is a result of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "de6587cb-7892-48ef-bf6c-3b63471a0422", + "label": "Value of the benefit", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "587ba904-51cc-4284-9883-6724acc55531", + "label": "Available amount that may be realised", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7798fac0-1e5a-4e53-ae3f-e49d825ac560", + "label": "Total value of assets presented to Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a7fc546f-ca75-4aed-98b4-4cdce26238ba", + "label": "Total value of assets decided by the Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fdd30c91-11d4-4511-b1f8-dfd1b9fbcc5d", + "label": "Amount ordered to pay", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b838babb-4b10-4534-ad6e-794da31d6976", + "label": "Description of amount to be paid", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4ceb1e93-25ce-4f6e-aaf6-195083faadb6", + "label": "Amount of confiscation sum to be paid as compensation", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "CURR", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "851e2be3-1436-47a4-824d-ca3168647f0c", + "label": "Collecting Magistrates' Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", + "label": "Confiscation unit to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5437f354-b075-4dd0-87cb-260c4fd8dd1f", + "label": "Defendant's custody location", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c66d10aa-b197-49d8-87e5-28eb356fde1e", + "label": "Priority order directions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3056", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Confiscation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "label": "Community requirement: Exclusion not to enter for a period", + "shortCode": "ERP", + "level": "O", + "rank": 4500, + "wordGroups": [ + { + "wordGroup": [ + "exclusion", + "Requirement", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6d322ff1-1d95-4053-ac79-19d1b7874f2d", + "label": "End date of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "adbdbb76-8ff7-4a22-881f-6b95adbf915b", + "label": "Electronic Monitoring End - notify contractor", + "shortCode": "EMONE", + "level": "O", + "rank": 38600, + "wordGroups": [ + { + "wordGroup": [ + "EM", + "end" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6bc0a7e8-ecd6-4607-896c-e8e8e88bd616", + "label": "Electronic monitoring type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7946cf86-d0f6-4611-815f-fc4d6fc05e34", + "label": "Date last electronic monitoring order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fef836f8-cae7-410f-b006-989d884a8d14", + "label": "Name of court that imposed electronic monitoring", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "83aef1c6-1246-4894-b44b-6a76d1e4d99b", + "label": "Name of prison defendant remanded or committed to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a0b426c1-74b8-43cd-9885-f0f31625352e", + "label": "Payment terms - on release", + "shortCode": "PTFOR", + "level": "D", + "rank": 38700, + "wordGroups": [ + { + "wordGroup": [ + "payment", + "on", + "release" + ] + }, + { + "wordGroup": [ + "payment", + "full" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", + "label": "Remanded in custody - to hospital", + "shortCode": "RIH", + "level": "O", + "rank": 38800, + "wordGroups": [ + { + "wordGroup": [ + "remanded", + "hospital", + "custody" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label": "Remand basis", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual": null, + "reference": "remandBasis", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ff8214-14b0-4425-94eb-64e6ae320f80", + "label": "Specify hospital", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "specifyHospital", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "7b2e6219-ddcb-4afa-8615-8de978e60af1", + "label": "Bail exception", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "10a769e8-1b1c-430d-844b-8948942cf353", + "qual": null, + "reference": "bailException", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", + "label": "Bail exception reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "c0fb2ca5-7702-4f01-b344-33029cfdcd47", + "qual": null, + "reference": "bailExceptionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label": "Place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "placeOfSafety", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4051", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "C", + "resultDefinitionGroup": "Remand in custody", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9be66be8-58d2-430c-a0b7-7f759ab0e48a", + "label": "Interim hospital order", + "shortCode": "MHHI", + "level": "O", + "rank": 38900, + "wordGroups": [ + { + "wordGroup": [ + "hospital", + "Order", + "interim" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "701b27ad-c54a-4011-a605-8c438ff685c9", + "label": "Name of hospital where defendant will be admitted or detained", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39001635-2dc8-4a58-9934-eeb60fa4d93b", + "label": "Name of hospital unit", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", + "label": "Hospital address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label": "Place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "placeOfSafety", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label": "Conveyor/custodian", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96949d0c-a59c-4a6f-a563-97456c985987", + "label": "Further directions regarding conveyance to place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "3132", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "C", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cf50fa81-671e-4598-b42b-721e45288240", + "label": "Interim hospital order extended", + "shortCode": "MHHIC", + "level": "O", + "rank": 39000, + "wordGroups": [ + { + "wordGroup": [ + "hospital", + "Order", + "extended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "701b27ad-c54a-4011-a605-8c438ff685c9", + "label": "Name of hospital where defendant will be admitted or detained", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39001635-2dc8-4a58-9934-eeb60fa4d93b", + "label": "Name of hospital unit", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", + "label": "Hospital address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "48648c9f-4553-4d01-8eaa-91af63353a26", + "label": "Date on which original interim order was made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "3132", + "adjournment": false, + "convicted": false, + "qualifier": "E", + "postHearingCustodyStatus": "C", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b993d756-e5a8-4204-9d58-b344b79998e1", + "label": "Notice of Custodial Sentence to Border and Immigration Agency regarding Deportation", + "shortCode": "DEPN", + "level": "O", + "rank": 39100, + "wordGroups": [ + { + "wordGroup": [ + "deportation", + "borders" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "099bd432-cf4e-4274-861d-4a665e2f4314", + "label": "Deportation power", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "16bb9f17-d3c3-42f1-a4dc-2d953114a214", + "label": "Nationality", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7610d8a1-07fe-4e69-812d-22f821d3f334", + "label": "Forfeiture order (cash)", + "shortCode": "FORFC", + "level": "O", + "rank": 39200, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "cash" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9bc76b55-37b4-42eb-b16d-52e83f86b8a2", + "label": "Amount of cash forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "48d71903-ce47-432a-8706-3619355f7738", + "label": "Currency of cash forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "98a562ee-7583-405a-ab05-3f922ada4872", + "label": "Type of forfeiture", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "26d4c112-a7ae-11e8-98d0-529269fb1459", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3134", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6532b8f4-7794-420a-9f30-8aced3e41517", + "label": "Forfeiture of personal licence to sell alcohol", + "shortCode": "FLIC", + "level": "O", + "rank": 39300, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "licence", + "Alcohol" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label": "Order suspended pending appeal", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3136", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "661bdce3-ce01-4cb6-a152-6424540bbbce", + "label": "Suspension of personal licence to sell alcohol", + "shortCode": "SLIC", + "level": "O", + "rank": 39400, + "wordGroups": [ + { + "wordGroup": [ + "suspension", + "licence", + "Alcohol" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "60a23936-2446-4813-945c-7b42548f526b", + "label": "Period of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "60a23936-2446-4813-945c-7b42548f526b", + "label": "Period of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "60a23936-2446-4813-945c-7b42548f526b", + "label": "Period of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label": "Order suspended pending appeal", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3119", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cebb3aa8-fed4-4784-b8bd-57901452344b", + "label": "Order to give date of birth", + "shortCode": "DOB", + "level": "D", + "rank": 39500, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "dob" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4b055468-4534-4ded-b866-2895afae3f49", + "label": "Date the information must be returned by", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3503", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "label": "Community requirement: Exclusion not to enter with between dates", + "shortCode": "ERBD", + "level": "O", + "rank": 4600, + "wordGroups": [ + { + "wordGroup": [ + "exclusion", + "Requirement", + "dates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ac46c9c8-976d-40ef-a913-85c64a6859bc", + "label": "From date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9e41b95c-c776-4d95-b057-05b7fcb155aa", + "label": "Until date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a0a0f576-5f6c-4924-ac60-f4d289f15938", + "label": "Order to give statement of person's sex", + "shortCode": "SPS", + "level": "D", + "rank": 39600, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "sex" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4b055468-4534-4ded-b866-2895afae3f49", + "label": "Date the information must be returned by", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3503", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8fce92ff-22af-4d33-999f-e9c5b9b0f429", + "label": "No further action taken in respect of conduct (contempt)", + "shortCode": "NFAC", + "level": "O", + "rank": 39700, + "wordGroups": [ + { + "wordGroup": [ + "nfa", + "contempt" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8c858e3e-1ade-4e90-869a-160c2bb5da90", + "label": "Postponement of enquiry into contempt", + "shortCode": "POSTC", + "level": "O", + "rank": 39800, + "wordGroups": [ + { + "wordGroup": [ + "postpone", + "enquiry", + "contempt" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "30d79db7-37fa-4c89-9129-926aa633d186", + "label": "Contempt of court findings", + "shortCode": "CONTF", + "level": "O", + "rank": 39900, + "wordGroups": [ + { + "wordGroup": [ + "contempt", + "findings" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "66388542-24fa-475b-8af0-18183ac282e9", + "label": "Findings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3169a020-99f3-4ff8-a76b-c3be37a60b71", + "label": "Committed to prison for refusal to produce items", + "shortCode": "P", + "level": "O", + "rank": 40000, + "wordGroups": [ + { + "wordGroup": [ + "commit", + "prison", + "refuse" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "18084ac5-1158-49f5-94b6-9ca619f2374b", + "label": "Document or item to be produced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8a4d068d-ca0f-4056-848e-b55b343f1090", + "label": "Witness summons withdrawn", + "shortCode": "WSW", + "level": "C", + "rank": 40100, + "wordGroups": [ + { + "wordGroup": [ + "witness", + "summons", + "withdrawn" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", + "label": "Witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "18084ac5-1158-49f5-94b6-9ca619f2374b", + "label": "Document or item to be produced", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4eb18e66-67e9-43df-8ed6-4b02c486dcc2", + "label": "No parental bind over made", + "shortCode": "NPARBOR", + "level": "D", + "rank": 40200, + "wordGroups": [ + { + "wordGroup": [ + "no", + "parental", + "bind" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3657fa70-aec5-4009-99c0-9e5bcab7319f", + "label": "Reason why court did not make the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d89d0e29-1cc8-4bac-8ff2-80c052398ca6", + "label": "No parenting order made", + "shortCode": "NPAROR", + "level": "D", + "rank": 40300, + "wordGroups": [ + { + "wordGroup": [ + "no", + "parenting", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3657fa70-aec5-4009-99c0-9e5bcab7319f", + "label": "Reason why court did not make the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1628d7d4-b9ec-4680-88dd-0483ee20ed48", + "label": "No reparation order made", + "shortCode": "NREPOR", + "level": "D", + "rank": 40400, + "wordGroups": [ + { + "wordGroup": [ + "no", + "reparation", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3657fa70-aec5-4009-99c0-9e5bcab7319f", + "label": "Reason why court did not make the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "66a52d4d-7ec6-430d-a2fe-5963fe9ba095", + "label": "Detention and training order", + "shortCode": "DTO", + "level": "O", + "rank": 40500, + "wordGroups": [ + { + "wordGroup": [ + "detention", + "training", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", + "label": "Period of detention and training", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", + "label": "Period of detention and training", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49f8c150-93ea-48e7-ae86-f1a467c72a3a", + "label": "DTO reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7f1c407a-8d1b-40ce-9720-66467e723d5c", + "label": "Why the reason for DTO applies", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1003078-ca9c-43ba-a131-8fa755c3a9f4", + "label": "Defendant is a persistent offender", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81ed0c6f-7a58-4d4c-b8a0-6425de4f1d29", + "label": "Detention centre", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1081", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "091cd45b-4312-476e-a122-18cc02fd1699", + "label": "Community requirement: Exclusion not to enter for a period with electronic monitoring", + "shortCode": "ERPEM", + "level": "O", + "rank": 4700, + "wordGroups": [ + { + "wordGroup": [ + "exclusion", + "electronic monitoring", + "Period", + "first" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", + "label": "Start date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f02e3b28-83e7-4650-a8e1-810bbb464bb4", + "label": "Start time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", + "label": "End date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "487358be-eccc-46e4-aa8e-e41495638a2c", + "label": "End time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f9d43a8f-dd19-4c0f-9fad-a3d339fd09b4", + "label": "Total detention and training order", + "shortCode": "TDTO", + "level": "D", + "rank": 40600, + "wordGroups": [ + { + "wordGroup": [ + "Total", + "detention", + "training" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0a1207ad-d35d-478f-a77d-c0277c463507", + "label": "Total detention and training order period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6ab74bbd-3b3b-4658-a6f7-b2be94bd3baa", + "label": "Reparation order", + "shortCode": "REPO", + "level": "O", + "rank": 40700, + "wordGroups": [ + { + "wordGroup": [ + "reparation", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8a044676-c316-4d4c-81bf-b52af663be85", + "label": "Number of reparation hours", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30d0efcf-41df-48e8-891d-ebec2d0ef8fc", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8636315-3ef2-4b2e-ae42-92c249c19a49", + "label": "Local authority", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "57227a07-3b72-4f96-907c-fe13b5d7847f", + "label": "Order details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47f34fca-6355-4612-881a-07a2121b86ba", + "label": "Supervising court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1083", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4feb6756-ffe5-4c38-8c90-e3c94f81b359", + "label": "Certificate that the case is fit for appeal to the Court of Appeal Criminal Division", + "shortCode": "CERTA", + "level": "O", + "rank": 40800, + "wordGroups": [ + { + "wordGroup": [ + "case", + "fit", + "appeal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fae932b8-99cd-45d5-856e-14226aaa67a1", + "label": "Certificate granted Criminal Appeal Act 1968", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4067c886-1d7f-4079-874e-d798c11a8429", + "label": "Conviction / sentence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e5a86c23-5e4f-49e7-8ab0-1827bb77a253", + "label": "Bail granted unconditionally pending appeal to the Court of Appeal Criminal Division", + "shortCode": "UCBCA", + "level": "O", + "rank": 40900, + "wordGroups": [ + { + "wordGroup": [ + "unconditional", + "bail", + "appeal" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "4047", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9b816cc1-7836-44b2-a706-b09ab110f790", + "label": "Bail granted conditionally pending appeal to the Court of Appeal Criminal Division", + "shortCode": "CBBCA", + "level": "O", + "rank": 41000, + "wordGroups": [ + { + "wordGroup": [ + "conditional", + "bail", + "appeal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f7995d94-bf13-41df-a599-79ead4123aad", + "label": "BASS provider", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "4027", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "75fc296e-d16a-44ec-a04c-c0affb549952", + "label": "Bind over surety", + "shortCode": "BOS", + "level": "O", + "rank": 41100, + "wordGroups": [ + { + "wordGroup": [ + "bind", + "surety" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc717d96-41ce-43bd-b0ac-33830c52eea6", + "label": "Surety name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e449e677-80fd-4037-8e84-34e40bba95cd", + "label": "Surety address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label": "Amount of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "440ad312-35f7-42c5-bbae-899a60457abb", + "label": "Defendant or respondent", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1a235ff2-a76f-414c-be31-58db18360810", + "label": "Basis of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "33bdd72c-430b-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a8ca6ddf-6dbd-4cc8-9699-7902297157df", + "label": "Conduct or activity to be refrained from", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "516dbb2c-d9e1-4186-b458-e3b6f798db58", + "label": "To keep the peace especially towards - name of person", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9b35f4f5-531e-48b4-858d-d81e15e77c23", + "label": "Warrant of arrest without bail on sentence of imprisonment in absence", + "shortCode": "WABSN", + "level": "O", + "rank": 41200, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "without", + "bail", + "imprisonment" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label": "Process server name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e498ec52-0adf-41cf-89e2-40955a418393", + "label": "Courthouse name", + "welshLabel": "Enw’r adeilad llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "4576", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2360acdb-4667-4f64-ab40-c2383271ea18", + "label": "Surety", + "shortCode": "suret", + "level": "C", + "rank": 41300, + "wordGroups": [ + { + "wordGroup": [ + "suret" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b20eb2e5-a012-4805-9713-8868579a8ec2", + "label": "Surety's name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9f4821b8-a160-40a0-b01e-0b0ba4f4c39e", + "label": "Surety's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "921cd8cc-0af1-46a7-8bfe-403a3e831a85", + "label": "Amount of recognisance", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e498ec52-0adf-41cf-89e2-40955a418393", + "label": "Courthouse name", + "welshLabel": "Enw’r adeilad llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "19d80e10-7792-4988-bfed-3bb09cd287b5", + "label": "Date of next court hearing", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8f8965c6-fe32-445c-9752-65b36d6f7e08", + "label": "Time of next court hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f6125c7b-0f0d-4cae-a98f-54b1e230c485", + "label": "This applies at each time and place until the conclusion of the case", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3e43af75-59bd-457e-a22a-1f61215a42df", + "label": "Surety declared forfeit (to pay)", + "shortCode": "SFOP", + "level": "O", + "rank": 41400, + "wordGroups": [ + { + "wordGroup": [ + "surety", + "forfeit" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e88fae27-272b-4ab0-b10f-af26d5951c19", + "label": "Date recognizance forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1289c3f-b81b-4abb-93cc-546b340312b0", + "label": "Amount to pay", + "welshLabel": "Swm i’w dalu", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3016", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "673d90bc-e8d7-40fd-8ad1-39517526452d", + "label": "Principal declared forfeit (to pay)", + "shortCode": "PFOP", + "level": "O", + "rank": 41500, + "wordGroups": [ + { + "wordGroup": [ + "principal", + "forfeit" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e88fae27-272b-4ab0-b10f-af26d5951c19", + "label": "Date recognizance forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1289c3f-b81b-4abb-93cc-546b340312b0", + "label": "Amount to pay", + "welshLabel": "Swm i’w dalu", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3016", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "label": "Community requirement: Exclusion not to leave a place for a period with electronic monitoring", + "shortCode": "ERLPEM", + "level": "O", + "rank": 4800, + "wordGroups": [ + { + "wordGroup": [ + "exclusion", + "electronic monitoring", + "residence", + "Period", + "first" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", + "label": "Start date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f02e3b28-83e7-4650-a8e1-810bbb464bb4", + "label": "Start time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", + "label": "End date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "487358be-eccc-46e4-aa8e-e41495638a2c", + "label": "End time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "version": "2021-11-04T13:58:39.210Z", + "startDate": "2021-11-05", + "label": "Community order England / Wales", + "shortCode": "co", + "level": "O", + "rank": 27300, + "wordGroups": [ + { + "wordGroup": [ + "co", + "Community" + ] + } + ], + "prompts": [ + { + "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", + "label": "Judge reserves breach proceedings", + "welshLabel": "Barnwr yn neilltuo achos torri amodau", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "financial": "N", + "reference": "judgeReservesBreachProceedings", + "wordGroup": [ + "reserved" + ], + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedOrganisationName", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "OrganisationName", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress1", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress2", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 3", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress3", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine3", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 4", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress4", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine4", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress5", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine5", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedPostCode", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "PostCode", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedEmailAddress1", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedEmailAddress2", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": "Swyddog cyfrifol", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "financial": "N", + "reference": "responsibleOfficer", + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "userGroups": [ + ], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "welshLabel": "Dyddiad terfyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "financial": "N", + "reference": "endDate", + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "isDurationEndDate": true, + "associatedWithReferenceData": false + }, + { + "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", + "label": "Direction that a failure to comply be dealt with by magistrates' court", + "welshLabel": "Cyfarwyddyd bod llys ynadon yn delio â methiant i gydymffurfio", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "financial": "N", + "reference": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "welshLabel": "Llys sy’n Goruchwylio", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 300, + "financial": "N", + "reference": "supervisingCourt", + "userGroups": [ + ], + "min": "1", + "max": "120", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "referenceDataKey": "supervisingCourt", + "nameEmail": false, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", + "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", + "welshLabel": "Mae'r diffynnydd yn droseddwr parhaus a ddirwywyd yn flaenorol, mae gwneud gorchymyn cymunedol yn lle gosod dirwy am y drosedd hon er budd cyfiawnder oherwydd", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "financial": "N", + "reference": "persistentOffenderPreviouslyFined", + "userGroups": [ + ], + "min": "1", + "max": "1000", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "REV", + "welshLabel": "REV", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "financial": "N", + "reference": "HTYPE", + "userGroups": [ + ], + "min": "1", + "max": "1000", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Gorchymyn cymunedol Cymru / Lloegr", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "Y", + "d20": false, + "dvlaCode": "M", + "cjsCode": "1116", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "jurisdiction": "B", + "libraCode": "COEW", + "lCode": "COEW", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "ruleType": "mandatory" + } + ], + "canBeSubjectOfBreach": true, + "canBeSubjectOfVariation": true, + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "6feb0f2e-8d1e-40c7-af2c-05b28c69e5fc", + "label": "Withdrawn (notice produced)", + "shortCode": "WDRNNOT", + "level": "O", + "rank": 41600, + "wordGroups": [ + { + "wordGroup": [ + "withdrawn", + "notice" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2063", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "615313b5-0647-4d61-b7b8-6b36265d8929", + "label": "No collection order reason", + "shortCode": "NOCOLLO", + "level": "D", + "rank": 41700, + "wordGroups": [ + { + "wordGroup": [ + "no", + "collection", + "reason" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", + "label": "Reason for no collection order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "4e66b3e0-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "04f4c331-754c-4153-9933-3411843836a4", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rheswm dros beidio â gwneud Gorchymyn Casglu", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "eb2e4c4f-b738-4a4d-9cce-0572cecb7cb8", + "label": "Withdrawn", + "shortCode": "WDRN", + "level": "O", + "rank": 41800, + "wordGroups": [ + { + "wordGroup": [ + "WDRN" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2063", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c8326b9e-56eb-406c-b74b-9f90c772b657", + "label": "Withdrawn (recharge at named Court)", + "shortCode": "WDRNOS", + "level": "O", + "rank": 41900, + "wordGroups": [ + { + "wordGroup": [ + "withdrawn", + "recharge", + "court" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9d3ed4ee-40ad-41c4-9778-a657e8e7605e", + "label": "Court handling re-charged offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "4010", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "eaecff82-32da-4cc1-b530-b55195485cc7", + "label": "Withdrawn (recharge at unnamed Court)", + "shortCode": "WDRNOU", + "level": "O", + "rank": 42000, + "wordGroups": [ + { + "wordGroup": [ + "withdrawn", + "recharge", + "unnamed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "4010", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "40cf92bc-1dd9-492c-a7c5-d0d337e91994", + "label": "Wasted costs order - defendant to pay", + "shortCode": "WCOD", + "level": "O", + "rank": 42100, + "wordGroups": [ + { + "wordGroup": [ + "wasted", + "Costs" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "d5c1709c-bbe2-46af-b3e0-91fc2562a120", + "label": "Full amount of costs due to creditor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "22ebf965-8a1c-4229-9894-0df7f8117753", + "label": "Major creditor name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", + "qual": null, + "reference": "CREDNAME", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "2505", + "adjournment": false, + "convicted": false, + "qualifier": "IE", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b786ce8a-ce7a-4fa1-94ce-a3d9777574e4", + "label": "Pay costs to named party (inter partes costs)", + "shortCode": "IPC", + "level": "C", + "rank": 42200, + "wordGroups": [ + { + "wordGroup": [ + "pay", + "Costs", + "names" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "247cfcbd-582e-4e79-bdac-567ad04fbfb3", + "label": "Name of party to pay the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2a7dbf0b-4090-4d0b-abcc-fbf38302d11a", + "label": "Amount of costs", + "welshLabel": "Swm y costau", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "13405496-927f-422c-9b32-1b8d90fe7ebe", + "label": "Name of party to receive costs", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68159a17-22a7-4744-815e-7cd539948af1", + "label": "Payment terms", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f5759650-31a1-11e8-b467-0ed5f89f718b", + "label": "Money security forfeited", + "shortCode": "SECMF", + "level": "O", + "rank": 42300, + "userGroups": [], + "prompts": [ + { + "id": "3e124994-31a2-11e8-b467-0ed5f89f718b", + "label": "Amount forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4f058bd0-31a2-11e8-b467-0ed5f89f718b", + "label": "Youth rehabilitation order England / Wales", + "shortCode": "YRO", + "level": "O", + "rank": 42400, + "wordGroups": [ + { + "wordGroup": [ + "youth", + "Rehabilitation", + "Order" + ] + }, + { + "wordGroup": [ + "YRO" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label": "Start Date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": "responsibleOfficer", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1141", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "574fb809-4473-4a90-ba0f-519a50cfc9ec", + "label": "Youth rehabilitation requirement: Activity - specified", + "shortCode": "YRA1", + "level": "O", + "rank": 42600, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab3c3545-4a09-4a32-b779-33e96763debe", + "label": "Activity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "abb95a52-2a75-40c3-8d3f-a1d75a199c47", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Imprisonment", + "shortCode": "imp", + "level": "O", + "rank": 4900, + "resultWording": "section 12(c)", + "wordGroups": [ + { + "wordGroup": [ + "imp" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "imprisonmentPeriod", + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "imprisonmentPeriod", + "isAvailableForCourtExtract": true, + "durationSequence": 1 + }, + { + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "imprisonmentPeriod", + "courtExtract": "N", + "durationSequence": 1 + }, + { + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "imprisonmentPeriod", + "isAvailableForCourtExtract": false, + "durationSequence": 1 + }, + { + "id": "321c3fd8-ea44-4ccc-b763-bc693ee6be0f", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": "concurrent", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b5ba551-7adb-4555-93b1-dcb6f027f02f", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": "consecutiveToOffenceNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9637677e-c2d7-4609-a750-ffe90eba9351", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": "whereConsecutiveToAnOffence", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e307f79-d4ca-466e-8c5c-a7d874c89b39", + "label": "Imprisonment reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": "imprisonmentReasons", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "622aa563-a3db-4102-ba7e-21c21cee0110", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": "theReasonForThis", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "55a1cab9-8aa6-41f6-a116-0345198324e6", + "label": "Youth rehabilitation requirement: Activity at specified place", + "shortCode": "YRA2", + "level": "O", + "rank": 42700, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7365f685-e91e-4a5f-8021-34246eb56fcb", + "label": "Place to attend", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d0e31533-c60f-4b90-a98a-4a9678ecf69e", + "label": "Person to go to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", + "label": "Youth rehabilitation requirement: Activity with residential exercise at a place", + "shortCode": "YRA3", + "level": "O", + "rank": 42800, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "72a96d2c-d41e-426f-a824-6dffc607ecfc", + "label": "Residential exercise place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c5e204ce-9a2d-4911-96f7-e189565f429e", + "label": "Youth rehabilitation requirement: Activity with residential exercise", + "shortCode": "YRA4", + "level": "O", + "rank": 42900, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "90bc2885-5f74-4b35-ba58-33da0ef1f1df", + "label": "Activity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", + "label": "Youth rehabilitation requirement: Activity - engage in activities in accordance with instructions of responsible officer", + "shortCode": "YRA5", + "level": "O", + "rank": 43000, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96bd9a5b-005c-42ac-b188-fcb786e53b4a", + "label": "Responsible officer may require participation in residential exercise for not more than 7 days", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "191ec139-10b6-4b18-8a2c-1359425244c3", + "label": "Youth rehabilitation requirement: Activity - engage in residential activity in accordance with instructions of responsible officer", + "shortCode": "YRA6", + "level": "O", + "rank": 43100, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "536adc8b-1f26-43f0-9659-4bf25e2b42db", + "label": "Youth rehabilitation requirement: Programme", + "shortCode": "YRP1", + "level": "O", + "rank": 43200, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", + "label": "Programme name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7365f685-e91e-4a5f-8021-34246eb56fcb", + "label": "Place to attend", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3103", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1819e6a0-b13d-47e0-9027-388819457256", + "label": "Youth rehabilitation requirement: Programme with residence", + "shortCode": "YRP2", + "level": "O", + "rank": 43300, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", + "label": "Programme name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4224806d-6caa-48a7-8f80-5ce1ff6baf5b", + "label": "Place to reside", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3103", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "27528205-a237-471b-a487-7943e9284c44", + "label": "Youth rehabilitation requirement: Attendance centre", + "shortCode": "YRAC1", + "level": "O", + "rank": 43400, + "userGroups": [], + "prompts": [ + { + "id": "f13d59b1-88a1-4ad0-972c-e86a22cdd700", + "label": "Number of hours", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Hours" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0995a846-ba03-41b0-bb65-e50323296bdb", + "label": "Attendance Centre name / contact", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "28e2f7e0-8886-4cf6-a828-776849f8d3d4", + "label": "Additional / concurrent to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3111", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d3313cb9-c75e-45e4-b833-8479ff80f9ac", + "label": "Youth rehabilitation requirement: Prohibited activity for a period", + "shortCode": "YRPA1", + "level": "O", + "rank": 43500, + "userGroups": [], + "prompts": [ + { + "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label": "Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label": "Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label": "Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label": "Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label": "Prohibited activities", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3104", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", + "label": "Youth rehabilitation requirement: Prohibited activity for specified days", + "shortCode": "YRPA2", + "level": "O", + "rank": 43600, + "userGroups": [], + "prompts": [ + { + "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label": "Prohibited activities", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "939bb78c-6e15-4270-b22b-86fad8021d53", + "label": "Days of the week", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3104", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "72393fb6-77dd-45b2-98f5-6612966de882", + "label": "Committed to young offender institution", + "shortCode": "yoi", + "level": "O", + "rank": 5000, + "wordGroups": [ + { + "wordGroup": [ + "yoi" + ] + }, + { + "wordGroup": [ + "committed", + "young", + "institution" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d4d8f560-8bf0-4fb3-8bb6-ff90c961c20c", + "label": "Custody reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "69c444b1-9e98-4d1c-9128-dc856a00d8a0", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "fb9fedf8-2b60-496b-8147-168233e81be3", + "label": "Youth rehabilitation requirement: Supervision", + "shortCode": "YRS1", + "level": "O", + "rank": 43700, + "userGroups": [], + "prompts": [ + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1044", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5ab456c8-d272-4082-87ed-cd1f44a0603a", + "label": "Youth rehabilitation requirement: Unpaid work", + "shortCode": "YRUP1", + "level": "O", + "rank": 43800, + "userGroups": [], + "prompts": [ + { + "id": "83f27f8b-0d02-4f19-bbde-3619b88c06ac", + "label": "Number of hours", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Hours", + "wordGroup": [ + "Hours" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "28e2f7e0-8886-4cf6-a828-776849f8d3d4", + "label": "Additional / concurrent to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3101", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8f979084-dc3b-4e71-bceb-87e30a4fc381", + "label": "Youth rehabilitation requirement: Residence at a specified place", + "shortCode": "YRR1", + "level": "O", + "rank": 43900, + "userGroups": [], + "prompts": [ + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0d0b4ec0-1d58-4d53-99aa-96bb0bd12db1", + "label": "Place to reside at", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd192d80-cf96-403e-9c3b-c0738d5a4a13", + "label": "Responsible office may approve different address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3107", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", + "label": "Youth rehabilitation requirement: Residence with an individual", + "shortCode": "YRR2", + "level": "O", + "rank": 44000, + "userGroups": [], + "prompts": [ + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d611217b-4778-4bec-a056-8c821aa6bc22", + "label": "Name of person to live with", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3107", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "63f8c00a-2115-46a9-94ff-b30bbad0f287", + "label": "Youth rehabilitation requirement: Residence in local authority accommodation", + "shortCode": "YRR3", + "level": "O", + "rank": 44100, + "userGroups": [], + "prompts": [ + { + "id": "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f63f692f-3bfc-4d0f-8e45-acd99b06431c", + "label": "Name of local authority", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "eecf7565-8c4a-4059-9a97-b83a7f975e22", + "label": "Name of person youth must NOT reside with", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3107", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "30bd1b11-5336-486e-aae6-1285ab4c8d65", + "label": "Youth rehabilitation requirement: Mental health treatment", + "shortCode": "YRM1", + "level": "O", + "rank": 44200, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HG", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", + "label": "Youth rehabilitation requirement: Mental health treatment residential patient", + "shortCode": "YRM2", + "level": "O", + "rank": 44300, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fb580537-9d36-4139-811b-77af09547b0d", + "label": "Care home / Hospital", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HE", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", + "label": "Youth rehabilitation requirement: Mental health treatment non-residential patient", + "shortCode": "YRM3", + "level": "O", + "rank": 44400, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HF", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", + "label": "Youth rehabilitation requirement: Drug treatment as a resident", + "shortCode": "YRD1", + "level": "O", + "rank": 44500, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b625180-fd12-4422-9150-3185ac672151", + "label": "Name of institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label": "By or under the direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3128", + "adjournment": false, + "convicted": true, + "qualifier": "BM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", + "label": "Youth rehabilitation requirement: Drug treatment as a non-resident", + "shortCode": "YRD2", + "level": "O", + "rank": 44600, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b625180-fd12-4422-9150-3185ac672151", + "label": "Name of institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label": "By or under the direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3128", + "adjournment": false, + "convicted": true, + "qualifier": "BS", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4e786114-e1c0-42bb-9c52-64edeffa3a3b", + "label": "Youth rehabilitation requirement: Drug testing", + "shortCode": "YRDT1", + "level": "O", + "rank": 44700, + "userGroups": [], + "prompts": [ + { + "id": "da2007ba-6b96-4b88-b518-ca7a27144e2d", + "label": "Minimum number of occasions a month samples are to be provided", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3129", + "adjournment": false, + "convicted": true, + "qualifier": "BT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1e78e819-13fc-4e14-a263-c632e4e3c85e", + "label": "Youth rehabilitation requirement: Intoxicating substance treatment as a non-resident", + "shortCode": "YRI1", + "level": "O", + "rank": 44800, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6aaf3645-0806-4917-ada5-b019c6a606c5", + "label": "Treatment intervals", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b625180-fd12-4422-9150-3185ac672151", + "label": "Name of institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label": "By or under the direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3130", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "03a1cbef-e54a-4a00-bcd5-44350f882ced", + "label": "Youth rehabilitation requirement: Intoxicating substance treatment as a resident", + "shortCode": "YRI2", + "level": "O", + "rank": 44900, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b625180-fd12-4422-9150-3185ac672151", + "label": "Name of institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label": "By or under the direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3130", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a17f9787-ba56-43d4-be5f-6fc91d29646e", + "label": "Youth rehabilitation requirement: Education", + "shortCode": "YRE1", + "level": "O", + "rank": 45000, + "userGroups": [], + "prompts": [ + { + "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label": "Period of education", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label": "Period of education", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label": "Period of education", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label": "Period of education", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6766cc06-f1de-443f-8a6b-2ba64cc222f4", + "label": "Local Authority", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3131", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b986b6ad-816c-44d6-bdf8-0df189732648", + "label": "Youth rehabilitation requirement: Exclusion not to enter for a period", + "shortCode": "YREX1", + "level": "O", + "rank": 45100, + "userGroups": [], + "prompts": [ + { + "id": "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6d322ff1-1d95-4053-ac79-19d1b7874f2d", + "label": "End date of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a15102d7-a151-425a-a827-0e35bc159049", + "label": "Youth rehabilitation requirement: Exclusion not to enter with between dates", + "shortCode": "YREX2", + "level": "O", + "rank": 45200, + "userGroups": [], + "prompts": [ + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ac46c9c8-976d-40ef-a913-85c64a6859bc", + "label": "From date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9e41b95c-c776-4d95-b057-05b7fcb155aa", + "label": "Until date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "416684ab-755f-4958-ab83-2795a21d62a3", + "label": "Youth rehabilitation requirement: Exclusion not to enter for a period with electronic monitoring", + "shortCode": "YREX3", + "level": "O", + "rank": 45300, + "userGroups": [], + "prompts": [ + { + "id": "e4f5a70e-c140-4993-ba09-e07ae067a758", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e4f5a70e-c140-4993-ba09-e07ae067a758", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e4f5a70e-c140-4993-ba09-e07ae067a758", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", + "label": "Start date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f02e3b28-83e7-4650-a8e1-810bbb464bb4", + "label": "Start time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", + "label": "End date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "487358be-eccc-46e4-aa8e-e41495638a2c", + "label": "End time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d79c92bb-c301-491a-b4d2-cb86e473b5af", + "label": "Youth rehabilitation requirement: Curfew with electronic monitoring", + "shortCode": "YRC1", + "level": "O", + "rank": 45400, + "userGroups": [], + "prompts": [ + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f18d4d90-954d-4b27-9e70-f4be9c487b0e", + "label": "Start time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd6186a4-d928-47f1-abee-2466b9b80ebf", + "label": "End time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Curfew address, details and timings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAddressDetailAndTiming", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0f7eade6-3602-486c-8491-45e2bdee9960", + "label": "Youth rehabilitation requirement: Curfew", + "shortCode": "YRC2", + "level": "O", + "rank": 45500, + "userGroups": [], + "prompts": [ + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Curfew address, details and timings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAddressDetailAndTiming", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b8654020-f9ed-4707-8757-8db6efb323b9", + "label": "Youth rehabilitation requirement: Curfew with second address", + "shortCode": "YRC3", + "level": "O", + "rank": 45600, + "userGroups": [], + "prompts": [ + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Curfew address, details and timings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAddressDetailAndTiming", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "49939c7c-750f-403e-9ce1-f82e3e568065", + "label": "No separate penalty", + "shortCode": "NSP", + "level": "O", + "rank": 5200, + "wordGroups": [ + { + "wordGroup": [ + "NSP" + ] + }, + { + "wordGroup": [ + "seperate", + "penalty" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1057", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "78d6e77c-fb17-46ae-a719-66eacd6281a9", + "label": "Youth rehabilitation requirement: Curfew waived", + "shortCode": "YRC4", + "level": "O", + "rank": 45700, + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "040c7d54-3e56-4ed1-8004-d63ab3cd5128", + "label": "Date excused", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", + "label": "Excused time from", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ba3cd0c4-2bd0-4b02-9636-2064e293466b", + "label": "Excused time to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3a71ea3c-2083-4584-8c73-e7bb0608c468", + "label": "Excused reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e4fb2729-c6e4-4d32-b3f0-24285f625a87", + "label": "Other curfew requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label": "Start Date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": "responsibleOfficer", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0b5ce679-b262-436d-8f94-aa78de85022a", + "label": "Youth rehabilitation order with intensive supervision and surveillance England / Wales", + "shortCode": "YROISS", + "level": "O", + "rank": 45800, + "wordGroups": [ + { + "wordGroup": [ + "YROISS" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1142", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ae8c21a9-cf2a-487b-8fae-58d50c7104f0", + "label": "Youth rehabilitation order with fostering England / Wales", + "shortCode": "YROF", + "level": "O", + "rank": 45900, + "wordGroups": [ + { + "wordGroup": [ + "YROF" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", + "label": "Period of fostering", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", + "label": "Period of fostering", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", + "label": "Period of fostering", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label": "Start Date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9de7d91b-77a2-4de4-bde0-8481d1f5b42e", + "label": "Name of local authority", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": "responsibleOfficer", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1143", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e9bdae5d-5bec-456c-a361-52d0dae89e11", + "label": "Youth rehabilitation order Northern Ireland", + "shortCode": "YRONI", + "level": "O", + "rank": 46000, + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label": "Start Date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2216f87f-7e1c-489e-a481-8c941796db49", + "label": "Corresponding Northern Ireland order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "555a4eb3-548b-4b1e-84ee-8a000223da2f", + "label": "Relevant officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d8162d74-5d0f-4841-a013-eba02a267ae5", + "label": "Petty Sessional District in Northern Ireland", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1141", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7dadfe69-9486-4edc-84ef-7d4f2e13633e", + "label": "Youth rehabilitation order with intensive supervision and surveillance Northern Ireland", + "shortCode": "YROINI", + "level": "O", + "rank": 46100, + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label": "Start Date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2216f87f-7e1c-489e-a481-8c941796db49", + "label": "Corresponding Northern Ireland order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "555a4eb3-548b-4b1e-84ee-8a000223da2f", + "label": "Relevant officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d8162d74-5d0f-4841-a013-eba02a267ae5", + "label": "Petty Sessional District in Northern Ireland", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1142", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "48646574-8bd7-49f7-9fa1-3aeb60f7c059", + "label": "Youth rehabilitation requirement: Extended activity - specified", + "shortCode": "YREA1", + "level": "O", + "rank": 46200, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e0b217c9-73aa-48b2-b168-56dcd5c1e75c", + "label": "Extended activity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7365f685-e91e-4a5f-8021-34246eb56fcb", + "label": "Place to attend", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d0e31533-c60f-4b90-a98a-4a9678ecf69e", + "label": "Person to go to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "79deff01-d3b0-4453-b290-ea34c60ce3e9", + "label": "Youth rehabilitation requirement: Extended activity with residential exercise at a place", + "shortCode": "YREA2", + "level": "O", + "rank": 46300, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "72a96d2c-d41e-426f-a824-6dffc607ecfc", + "label": "Residential exercise place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", + "label": "Youth rehabilitation requirement: Extended activity with residential exercise", + "shortCode": "YREA3", + "level": "O", + "rank": 46400, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b85e1325-9fc1-436a-82f6-469f7f21de6a", + "label": "Extended activity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", + "label": "Youth rehabilitation requirement: Extended activity - engage in activities in accordance with instructions of responsible officer", + "shortCode": "YREA4", + "level": "O", + "rank": 46500, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96bd9a5b-005c-42ac-b188-fcb786e53b4a", + "label": "Responsible officer may require participation in residential exercise for not more than 7 days", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f029c131-16b3-4a6d-895d-00b609d858e9", + "label": "Referral order", + "shortCode": "YOP", + "level": "O", + "rank": 46600, + "userGroups": [], + "prompts": [ + { + "id": "4492f39a-37fa-4202-8913-868d88e56b2d", + "label": "Referral period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4492f39a-37fa-4202-8913-868d88e56b2d", + "label": "Referral period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label": "Total length of contract period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 1400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label": "Total length of contract period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 1400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a6e65d2-ecbc-471f-8433-5f95d478f650", + "label": "Youth Offender Panel name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d928400b-8f20-4b9e-aff5-868aafa4cc27", + "label": "Parent/Guardian's name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f56d8811-15fb-4f82-b91e-fef8fcce3885", + "label": "Parent/Guardian's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c6677a77-7028-4674-85c9-1cbc2f0e0088", + "label": "This parent / guardian must attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29b5ced8-4101-4073-8642-1fa52791098a", + "label": "This parent / guardian may attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "701fe552-5edd-477d-9fbf-4ed2c6e931e1", + "label": "A local authority representative must attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0c25627d-07d0-406c-9e8e-08081a649cf5", + "label": "A local authority representative may attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "848927d6-fcac-4e0d-96f7-92bb4455a162", + "label": "This is a second referral order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f1619e53-cdb4-4979-8211-7f92134c38c6", + "label": "The Court certified the following facts", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", + "label": "The Court made the following remarks", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1097", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "685cc7e9-8bd1-4559-a05c-d8a7a89f9779", + "label": "Count to remain on file", + "shortCode": "cremfile", + "level": "O", + "rank": 5300, + "wordGroups": [ + { + "wordGroup": [ + "Lie", + "on", + "file" + ] + }, + { + "wordGroup": [ + "cremfile" + ] + }, + { + "wordGroup": [ + "Count", + "remain", + "file" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "2008", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "843f1ba4-af62-4b5b-a5f2-51128b08a128", + "label": "Referral order extended", + "shortCode": "YOPE", + "level": "O", + "rank": 46700, + "userGroups": [], + "prompts": [ + { + "id": "4492f39a-37fa-4202-8913-868d88e56b2d", + "label": "Referral period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4492f39a-37fa-4202-8913-868d88e56b2d", + "label": "Referral period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label": "Total length of contract period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 1300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label": "Total length of contract period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 1300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a6e65d2-ecbc-471f-8433-5f95d478f650", + "label": "Youth Offender Panel name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d928400b-8f20-4b9e-aff5-868aafa4cc27", + "label": "Parent/Guardian's name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f56d8811-15fb-4f82-b91e-fef8fcce3885", + "label": "Parent/Guardian's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c6677a77-7028-4674-85c9-1cbc2f0e0088", + "label": "This parent / guardian must attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29b5ced8-4101-4073-8642-1fa52791098a", + "label": "This parent / guardian may attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "701fe552-5edd-477d-9fbf-4ed2c6e931e1", + "label": "A local authority representative must attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0c25627d-07d0-406c-9e8e-08081a649cf5", + "label": "A local authority representative may attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f1619e53-cdb4-4979-8211-7f92134c38c6", + "label": "The Court certified the following facts", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", + "label": "The Court made the following remarks", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1097", + "adjournment": false, + "convicted": true, + "qualifier": "E", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b4cd9c69-ed12-4d23-948c-f35e7386a05f", + "label": "Committed to prison for refusal to be sworn", + "shortCode": "RSWN", + "level": "O", + "rank": 46800, + "wordGroups": [ + { + "wordGroup": [ + "prison", + "refuse", + "evidence" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ] + }, + { + "id": "5f938747-a0aa-47b7-84a5-31fe87cfb15b", + "label": "Committed to prison for refusal to affirm", + "shortCode": "AFM", + "level": "O", + "rank": 46900, + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ] + }, + { + "id": "005c9631-a1f1-4222-9702-88fb9368a17c", + "label": "Committed to prison for refusal to produce documents", + "shortCode": "CPRPD", + "level": "O", + "rank": 47000, + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "dbb41b1a-a302-485f-96f9-1632c7ce1eff", + "label": "Documents or items to be produced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ] + }, + { + "id": "381f97b8-b8c8-45b0-a8d6-ac8f58da5493", + "label": "Committed to prison for refusal to give evidence and produce documents", + "shortCode": "EVP", + "level": "O", + "rank": 47100, + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "dbb41b1a-a302-485f-96f9-1632c7ce1eff", + "label": "Documents or items to be produced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ] + }, + { + "id": "c09416e2-327c-11e8-b467-0ed5f89f718b", + "label": "Committed to prison for refusal to give evidence", + "shortCode": "EV", + "level": "O", + "rank": 47200, + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ] + }, + { + "id": "8c67b30a-418c-11e8-842f-0ed5f89f718b", + "label": "Defendant's details changed", + "shortCode": "DDCH", + "level": "D", + "rank": 47300, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4592", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "98138ec8-5dd3-11e8-9c2d-fa7ae01bbebc", + "label": "Text", + "shortCode": "TEXT", + "level": "O", + "rank": 47400, + "userGroups": [], + "prompts": [ + { + "id": "b4ac2e46-5dd3-11e8-9c2d-fa7ae01bbebc", + "label": "Text", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", + "label": "Reserve Terms Lump sum plus instalments", + "shortCode": "RLSUMI", + "level": "C", + "rank": 47600, + "wordGroups": [ + { + "wordGroup": [ + "pay", + "reserve", + "terms", + "lump", + "sum", + "instalments" + ] + }, + { + "wordGroup": [ + "reserve", + "terms", + "lump", + "sum", + "instalments" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8e235a65-5ea2-4fff-ba3b-6cdb74195436", + "label": "Lump sum amount", + "welshLabel": "Cyfanswm y lwmp swm", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "LSA", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1393acda-7a35-4d65-859d-6298e1470cf1", + "label": "Instalment amount", + "welshLabel": "Swm y rhandaliad", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "IAMT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b487696e-dfc9-4c89-80d3-337a4319e925", + "label": "Instalment start date", + "welshLabel": "Dyddiad cychwyn y rhandaliad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f2a61e80-c13e-4f44-8e91-8ce23e85596b", + "label": "Payment frequency", + "welshLabel": "Amlder y taliadau", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual": null, + "reference": "PF", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Lwmp swm a rhandaliadau - Telerau Wrth Gefn", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2236c06f-ad8e-4620-abbe-0ee214fa885c", + "label": "Count quashed", + "shortCode": "CQUASH", + "level": "O", + "rank": 5400, + "wordGroups": [ + { + "wordGroup": [ + "Count", + "quashed" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", + "label": "Reserve Terms Instalments only", + "shortCode": "RINSTL", + "level": "C", + "rank": 47700, + "wordGroups": [ + { + "wordGroup": [ + "pay", + "reserve", + "terms", + "instalments" + ] + }, + { + "wordGroup": [ + "reserve", + "terms", + "instalments" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1393acda-7a35-4d65-859d-6298e1470cf1", + "label": "Instalment amount", + "welshLabel": "Swm y rhandaliad", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "IAMT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f2a61e80-c13e-4f44-8e91-8ce23e85596b", + "label": "Payment frequency", + "welshLabel": "Amlder y taliadau", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual": null, + "reference": "PF", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e091af2e-43d0-495d-b3b0-432010358a45", + "label": "Instalment start date", + "welshLabel": "Dyddiad cychwyn y rhandaliad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "ISTD", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rhandaliadau yn unig - Telerau Wrth Gefn", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", + "label": "Lump sum plus instalments", + "shortCode": "LUMSI", + "level": "C", + "rank": 47800, + "wordGroups": [ + { + "wordGroup": [ + "pay", + "lump", + "sum", + "instalments" + ] + }, + { + "wordGroup": [ + "lump", + "sum", + "instalments" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "11ba492a-e2ad-11e8-9f32-f2801f1b9fd1", + "label": "Lump sum amount", + "welshLabel": "Cyfanswm y lwmp swm", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "LSA", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1393acda-7a35-4d65-859d-6298e1470cf1", + "label": "Instalment amount", + "welshLabel": "Swm y rhandaliad", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "IAMT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fb4f761c-29d0-4a8e-a947-3debf281dab0", + "label": "Payment frequency following lump sum", + "welshLabel": "Amlder y taliadau yn dilyn lwmp swm", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual": null, + "reference": "PF", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e091af2e-43d0-495d-b3b0-432010358a45", + "label": "Instalment start date", + "welshLabel": "Dyddiad cychwyn y rhandaliad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "ISTD", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", + "label": "Parent / Guardian to pay", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PARENT_GAURDIAN_TO_PAY", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", + "label": "Number of days in default", + "welshLabel": "Nifer y diwrnodau lle erys y ddyled heb ei thalu", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "DID", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d0f08c9c-e1e5-46eb-b573-f1728bc51414", + "label": "Payment card required", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PAYMENT_CARD_REQUIRED", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Lwmp swm a rhandaliadau", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", + "label": "Instalments only", + "shortCode": "INSTL", + "level": "C", + "rank": 47900, + "wordGroups": [ + { + "wordGroup": [ + "pay", + "instalments", + "only" + ] + }, + { + "wordGroup": [ + "instalments", + "only" + ] + }, + { + "wordGroup": [ + "INSTL" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1393acda-7a35-4d65-859d-6298e1470cf1", + "label": "Instalment amount", + "welshLabel": "Swm y rhandaliad", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "IAMT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f2a61e80-c13e-4f44-8e91-8ce23e85596b", + "label": "Payment frequency", + "welshLabel": "Amlder y taliadau", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual": null, + "reference": "PF", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e091af2e-43d0-495d-b3b0-432010358a45", + "label": "Instalment start date", + "welshLabel": "Dyddiad cychwyn y rhandaliad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "ISTD", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", + "label": "Parent / Guardian to pay", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PARENT_GAURDIAN_TO_PAY", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", + "label": "Number of days in default", + "welshLabel": "Nifer y diwrnodau lle erys y ddyled heb ei thalu", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "DID", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d0f08c9c-e1e5-46eb-b573-f1728bc51414", + "label": "Payment card required", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PAYMENT_CARD_REQUIRED", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rhandaliadau yn unig", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4871697d-6dd1-4da2-8894-707e6b13c361", + "version": "2021-02-25T12:43:06.714Z", + "startDate": "2021-02-26", + "label": "Reserve Terms", + "shortCode": "RT", + "level": "D", + "rank": 8500, + "userGroups": [ + ], + "welshLabel": "Telerau Wrth Gefn", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "I", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "jurisdiction": "B", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", + "ruleType": "oneOf" + } + ], + "isAvailableForCourtExtract": false, + "isBooleanResult": false + }, + { + "id": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", + "version": "2022-01-10T09:35:43.154Z", + "startDate": "2022-01-11", + "label": "Application made for benefit deductions", + "shortCode": "ABDC", + "level": "D", + "rank": 600, + "wordGroups": [ + { + "wordGroup": [ + "application", + "benefit", + "deductions" + ] + }, + { + "wordGroup": [ + "ABDC" + ] + } + ], + "prompts": [ + { + "id": "91687bb9-d0ca-44a7-ada0-b89b71b89b8e", + "label": "DWP AP number", + "welshLabel": "Rhif AP DWP", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "financial": "N", + "reference": "dWPAPNumber", + "userGroups": [ + "CPS", + "Defence", + "Judiciary", + "NCES", + "Probation", + "Prosecuting Authorities", + "YOTs" + ], + "min": "0", + "max": "10", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "8273d5ba-680e-11e8-adc0-fa7ae01bbebc", + "label": "Reason", + "welshLabel": "Rheswm", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 100, + "financial": "N", + "reference": "reason", + "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Cais wedi'i wneud am ddidyniadau o fudd-dal", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "N", + "d20": false, + "cjsCode": "1514", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "M", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "4871697d-6dd1-4da2-8894-707e6b13c361", + "ruleType": "mandatory" + } + ], + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "bdb32555-8d55-4dc1-b4b6-580db5132496", + "label": "Attachment of earnings order", + "shortCode": "AEOC", + "level": "C", + "rank": 48100, + "wordGroups": [ + { + "wordGroup": [ + "attachment", + "earnings", + "Order" + ] + }, + { + "wordGroup": [ + "AEOC" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a289b1bd-06c8-4da3-b117-0bae6017857c", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "485f7d22-718c-4f47-bbd5-f8d934417a03", + "label": "Employer's name", + "welshLabel": "Enw eich cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "86854563-b404-4cd4-9c05-50f1e61a0bfe", + "label": "Employer's address Line 1", + "welshLabel": "Llinell gyntaf cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerAddress1", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef87b9fe-1d9d-46a2-b094-ce5ba24a9835", + "label": "Employer's address Line 2", + "welshLabel": "Ail linell cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerAddress2", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "df1d55f8-29dd-42d2-8f99-cb4d369cb38b", + "label": "Employer's address Line 3", + "welshLabel": "Trydedd linell cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerAddress3", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d3d8e5dc-4ced-4d57-bcbb-5de8f91a580a", + "label": "Employer's address Line 4", + "welshLabel": "Pedwaredd llinell cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerAddress4", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a812f1c7-96df-4d8d-9684-25e4e227b2e2", + "label": "Employer's address Line 5", + "welshLabel": "Pumed llinell cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerAddress5", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4ff32fe8-5508-4b7e-8e6f-b3e79763a9fe", + "label": "Employer's post code", + "welshLabel": "Cod post cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerPostCode", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "eb1d0fdc-2e51-4e98-9f6e-ee0daa14c157", + "label": "Employee reference number", + "welshLabel": "Cyfeirnod y cyflogai", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerReferenceNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Gorchymyn Atafaelu Enillion", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1511", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "76d43772-0660-4a33-b5c6-8f8ccaf6b4e3", + "label": "Costs", + "shortCode": "FCOST", + "level": "C", + "rank": 48200, + "wordGroups": [ + { + "wordGroup": [ + "FCOST" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "db261fd9-c6bb-4e10-b93f-9fd98418f7b0", + "label": "Amount of costs", + "welshLabel": "Swm y costau", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOC", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "22ebf965-8a1c-4229-9894-0df7f8117753", + "label": "Major creditor name", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", + "qual": null, + "reference": "CREDNAME", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "043faecf-e97c-4daf-9763-4b755d941b45", + "label": "Minor creditor title", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "202afd61-e9fb-4bc7-aad6-f0a5799406e2", + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", + "label": "Minor creditor company name", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", + "label": "Minor creditor surname", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", + "label": "Minor creditor initials", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "41576571-5573-498b-a9e9-eee24f7a67fa", + "label": "Minor creditor forename(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", + "label": "Minor creditor address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", + "label": "Minor creditor postcode", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + } + ], + "welshLabel": "Costau", + "isAvailableForCourtExtract": true, + "financial": true, + "category": "F", + "cjsCode": "3011", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c514dcec-804c-11e8-adc0-fa7ae01bbebc", + "label": "Adjournment reason: Equivocal plea", + "shortCode": "EP", + "level": "O", + "rank": 48300, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "equivocal", + "plea" + ] + }, + { + "wordGroup": [ + "adjournment", + "equivocal" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio: Ple amhendant", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "GC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", + "label": "Adjournment reason: To attend or to return the plea form sent with the summons", + "shortCode": "AP", + "level": "O", + "rank": 48400, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "return" + ] + }, + { + "wordGroup": [ + "adjournment", + "attend" + ] + }, + { + "wordGroup": [ + "adjournment", + "appear", + "proceed", + "prove", + "Absence" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio: I fynychu neu i ddychwelyd y ffurflen pledio a anfonwyd gyda'r wŷs", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "DM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Next hearing in magistrates' court", + "shortCode": "NHMC", + "level": "O", + "rank": 48500, + "wordGroups": [ + { + "wordGroup": [ + "NHMC" + ] + }, + { + "wordGroup": [ + "next", + "hearing", + "magistrates" + ] + }, + { + "wordGroup": [ + "adjournment", + "magistrates" + ] + } + ], + "userGroups": [], + "resultTextTemplate": "hearing on {HDATE}[ at {timeOfHearing}][ in {HCROOM},] {HCHOUSE~Name}", + "prompts": [ + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", + "label": "Booking reference", + "resultPromptRule": "optional", + "type": "TXT", + "nameEmail": false, + "hidden": true, + "associateToReferenceData": false, + "sequence": 700, + "userGroups": [], + "courtExtract": "N", + "financial": "N", + "jurisdiction": "M", + "min": "1", + "max": "50", + "reference": "bookingReference" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress1", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine1", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress2", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine2", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 3", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress3", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine3", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 4", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress4", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine4", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress5", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine5", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEPostCode", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "PostCode", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "welshLabel": "Ystafell Llys", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "financial": "N", + "reference": "HCROOM", + "userGroups": [ + ], + "min": "1", + "max": "99", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "referenceDataKey": "HCROOM", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEOrganisationName", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "OrganisationName", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Hours", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Minutes", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", + "label": "Date of hearig", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HDATE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dfac671c-5b85-42a1-bb66-9aeee388a08d", + "label": "Time of hearing", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTIME", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 200, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "courtExtract": "Y", + "financial": "N", + "jurisdiction": "B", + "reference": "timeOfHearing" + }, + { + "id": "5f507153-6dc9-4ec0-94db-c821eff333f1", + "label": "Courtroom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HCROOM", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse name", + "welshLabel": "Enw’r adeilad llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HCHOUSE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "sequence": 15, + "mandatory": false, + "userGroups": [ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" + ], + "reference": "totalCustodialPeriod", + "type": "TXT", + "welshLabel": "TBD" + }, + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "mandatory": false, + "type": "DATE", + "sequence": 16, + "userGroups": [ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" + ], + "reference": "endDate", + "welshLabel": "TBD" + }, + { + "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", + "label": "First review date", + "reference": "firstReviewDate", + "mandatory": false, + "type": "DATE", + "sequence": 17, + "userGroups": [ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" + ], + "welshLabel": "TBD" + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f622f008-f8e7-4f34-a7df-df85a7ed4d47", + "label": "First review time", + "reference": "firstReviewTime", + "mandatory": false, + "type": "TIME", + "sequence": 18, + "userGroups": [ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" + ], + "welshLabel": "TBD" + } + ], + "welshLabel": "Ni wnaeth y Llys barhau â’r treial yn absenoldeb y diffynnydd", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Next hearing", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + {"id":"d278650c-e429-11e8-9f32-f2801f1b9fd1","version":"2024-04-09T14:34:40.618Z","startDate":"2024-04-10","label":"Adjournment","shortCode":"A","level":"O","rank":194200,"wordGroups":[{"wordGroup":["A","adjournment"]}],"prompts":[{"id":"9d4df7b9-bd70-4142-86be-8023531a1d95","label":"THIS NOTICE IS FOR PERSONAL SERVICE","welshLabel":"Mae'r hysbysiad hwn ar gyfer gwasanaeth personol","resultPromptRule":"optional","type":"BOOLEAN","sequence":300,"financial":"N","reference":"tHISNOTICEISFORPERSONALSERVICE","wordGroup":["Service"],"userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"61f951c3-f18d-4a44-ae4a-0cad4efb4133","label":"Defendant to attend the next hearing","welshLabel":"Diffynnydd i fynychu’r gwrandawiad nesaf","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":100,"financial":"N","reference":"defendantToAttendTheNextHearing","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"150a22a8-05d0-4be1-ada7-a0d512a63b5d","label":"Defendant excused attendance at next hearing","welshLabel":"Nid oes rhaid i'r diffynnydd fod yn bresennol yn y gwrandawiad nesaf","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":200,"financial":"N","reference":"defendantExcusedAttendanceAtNextHearing","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false}],"welshLabel":"Gohiriad","financial":"N","unscheduled":false,"adjournment":"N","policeSubjectLineTitle":"Adjourned","category":"I","urgent":false,"convicted":"N","d20":false,"cjsCode":"4506","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":false,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","lCode":"A","resultWording":"","resultDefinitionRules":[{"childResultDefinitionId":"f00359b5-7303-403b-b59e-0b1a1daa89bc","ruleType":"mandatory"},{"childResultDefinitionId":"7fc17a01-2f5a-4433-aae9-28e0c959f73b","ruleType":"mandatory"}],"canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"Adjourned for %NEXH%. Reason: %ADJR%. {defendantToAttendTheNextHearing}{defendantExcusedAttendanceAtNextHearing}.","isAvailableForCourtExtract":true,"isBooleanResult":false}, + { + "id": "5ec54bfb-cde0-4ad2-bf87-d266e54fe072", + "label": "Indictment to remain on file", + "shortCode": "IREMFILE", + "level": "O", + "rank": 5500, + "wordGroups": [ + { + "wordGroup": [ + "indictment", + "remain", + "file" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "2008", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2852b770-a7ad-11e8-98d0-529269fb1459", + "label": "Forfeiture and destruction", + "shortCode": "FDEST", + "level": "O", + "rank": 7700, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "destruction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "13efdd20-a7ae-11e8-98d0-529269fb1459", + "label": "Property to be forfeited and destroyed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7cca9a0e-b11f-4863-9fec-45b9b13f946b", + "label": "Forfeiture and destruction ordered under", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "26d4c112-a7ae-11e8-98d0-529269fb1459", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4a30821a-a7b6-11e8-98d0-529269fb1459", + "label": "Responsible for destroying property", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ea26f773-0a91-4526-b4ad-84d07b5bf940", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3135", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", + "version": "2021-02-25T12:41:20.415Z", + "startDate": "2021-02-26", + "label": "Pay by date", + "shortCode": "PDATE", + "level": "D", + "rank": 76700, + "wordGroups": [ + { + "wordGroup": [ + "PDATE" + ] + }, + { + "wordGroup": [ + "PBD", + "pay", + "full", + "date" + ] + } + ], + "prompts": [ + { + "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", + "label": "Parent / Guardian to pay", + "welshLabel": "Rhiant / Gwarcheidwad i dalu", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "financial": "N", + "reference": "PARENT_GAURDIAN_TO_PAY", + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "ee7d253a-c629-11e8-a355-529269fb1459", + "label": "Date to pay in full by", + "welshLabel": "Dyddiad terfyn ar gyfer talu'r swm llawn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "financial": "N", + "reference": "PBD", + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", + "label": "Number of days in default", + "welshLabel": "Nifer y diwrnodau y mae'r ddyled heb ei thalu", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "financial": "N", + "reference": "DID", + "userGroups": [ + ], + "min": "1", + "max": "999", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Dyddiad terfyn ar gyfer talu", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Payment terms", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "M", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "de946ddc-ad77-44b1-8480-8bbc251cdcfb", + "label": "Court house detention until court rises", + "shortCode": "FIDICI", + "level": "O", + "rank": 48800, + "wordGroups": [ + { + "wordGroup": [ + "court", + "rises", + "until", + "detention" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9be231c5-e4e3-4294-872e-e0ad6c9a39a4", + "label": "Type of detention", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "5769e88c-82c6-457d-9a5e-652a96ec105c", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c92fdcfc-ac7d-4692-a475-de88467f6fcf", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label": "Total amount enforced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "TOTENF", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "isDeemedServed": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5c023b16-e79c-4eb5-9673-e23accbeb35b", + "label": "Court house detention until time", + "shortCode": "FIDICTI", + "level": "O", + "rank": 48900, + "wordGroups": [ + { + "wordGroup": [ + "court", + "Time", + "until", + "detention" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0fd18b3d-d55e-4e6c-adfe-e45ad2241e5e", + "label": "Time of release", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label": "Total amount enforced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "TOTENF", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0e390ae0-8f3c-4735-8c0d-c16e8962537a", + "label": "Detention in police station", + "shortCode": "FIDIPI", + "level": "O", + "rank": 49000, + "wordGroups": [ + { + "wordGroup": [ + "detention", + "police", + "station" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a0e5f5aa-ce4d-41fa-94ba-c2fb293659b4", + "label": "Time of release (by 8pm)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6d2296be-3631-4a13-bfef-6be1d950cf20", + "label": "Police Force providing police station to detain defendant", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label": "Total amount enforced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "TOTENF", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "61c246d8-f771-4420-9e02-30f34c0305b1", + "label": "Community order amended - supervising court or end date", + "shortCode": "COA", + "level": "O", + "rank": 49100, + "wordGroups": [ + { + "wordGroup": [ + "Community", + "Order", + "amended" + ] + }, + { + "wordGroup": [ + "supervising", + "court" + ] + }, + { + "wordGroup": [ + "end", + "date" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0eba630e-a486-439f-8d76-b49b1363067c", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5f1f9ac-f624-4d44-9ad0-7c1e586eee3a", + "label": "Original end date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8a4af2f8-ee31-481e-847d-eb295896b975", + "label": "New supervising court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8bad6b87-9ad5-418f-b3a3-90386d7c2769", + "label": "Compliance date extended. All requiremets to be completed by", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1032", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4a026ff3-e1aa-407e-aafa-015723c1dbd0", + "label": "Community order amended", + "shortCode": "COV", + "level": "O", + "rank": 49300, + "wordGroups": [ + { + "wordGroup": [ + "Community", + "Order", + "amend" + ] + }, + { + "wordGroup": [ + "Requirement", + "cancelled" + ] + }, + { + "wordGroup": [ + "new", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0eba630e-a486-439f-8d76-b49b1363067c", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47f34fca-6355-4612-881a-07a2121b86ba", + "label": "Supervising court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b12bc7b-dfc7-41b7-9c4e-8c6b53b53274", + "label": "Community requirements cancelled", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "faef913f-70ae-44cf-81dd-356c6dc41f0c", + "label": "The court made new community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", + "label": "The court amended a community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5e438d5-a7de-4be8-9a7d-3e07b8584f6a", + "label": "Original community requirements to continue", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "361cee65-0550-4c9a-9fbd-3a234e9431f1", + "label": "The end date of the order has been changed and the requirements must be complied with by", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06356516-5b1a-4036-afc5-2bb44a446a1a", + "label": "The end date of the order has not been changed and the requirements must be complied with by", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "27bf0204-a185-4e82-8c34-7317287513c8", + "label": "Responsible officer for the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", + "label": "Reason for change", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40d90a02-53a9-43ef-a96f-da9ad1b476b7", + "label": "The court made a new or varied an electronic monitoring requirement", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40f05056-4c54-4251-a7a1-666197409f20", + "label": "This is the first notification to contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c53e274f-ecbf-476e-971c-103a1d5a72d7", + "label": "This is a variation of an electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1933ca78-459c-47f0-b4a9-1a4507e19af6", + "label": "This is an additional electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6be2c968-d9b8-40fe-ba4d-f8d3c06ea129", + "label": "This is a continuation of an electronic monitoring reequirement", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fb1a3668-4675-4541-ad61-7ca3c24ca0cc", + "label": "Conviction quashed", + "shortCode": "QC", + "level": "O", + "rank": 50000, + "wordGroups": [ + { + "wordGroup": [ + "conviction", + "quashed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "80dd4486-fa86-41f0-b09b-bad84b55f61c", + "label": "Date appeal heard", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "CADATE", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "55f15ecf-ea80-40f4-848d-29e7b8d73ae2", + "label": "Sentence varied", + "shortCode": "SV", + "level": "O", + "rank": 50100, + "wordGroups": [ + { + "wordGroup": [ + "sentence", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "80dd4486-fa86-41f0-b09b-bad84b55f61c", + "label": "Date appeal heard", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "CADATE", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "02c8aef6-601a-46e8-bbe5-d614e0da764a", + "label": "Special measures direction: Witness to give evidence by means of a live link", + "shortCode": "SMLL", + "level": "C", + "rank": 50300, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "live", + "link" + ] + }, + { + "wordGroup": [ + "SMD", + "live", + "link" + ] + }, + { + "wordGroup": [ + "SMD", + "witness" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2f08896a-07b0-45b9-b7da-f919b8520480", + "label": "Indictment quashed", + "shortCode": "IQUASH", + "level": "O", + "rank": 5600, + "wordGroups": [ + { + "wordGroup": [ + "indictment", + "quashed" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Special measures direction: A video recording be admitted of the evidence in chief of the interview", + "shortCode": "SMVR", + "level": "C", + "rank": 50400, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "video" + ] + }, + { + "wordGroup": [ + "SMD", + "video" + ] + }, + { + "wordGroup": [ + "SMD", + "in", + "chief" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", + "label": "In respect of witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "inRespectOfWitnessName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "79b64864-8c39-4724-be94-e2db853db393", + "label": "Date of interview", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef04068f-86d0-42a8-8fcf-ca12f340d57d", + "label": "The whole of the video recording disclosed to be admitted", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c472c5b7-9e50-4390-ae59-78d6ca607231", + "label": "Only the following specified part(s) of the video interview to be admitted, namely", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5c2c471c-08a0-46e5-8368-80d819fe4d19", + "label": "Cross examination of the witness and re-examination of the witness to be recorded by means of a video recording and such recording to be admitted in accordance with section 28 of the Youth Justice and Criminal Evidence Act 1999", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b172d954-5aca-447b-b19e-2c836053b0af", + "label": "Special measures direction: The recording must be made in the presence of specified person(s)", + "shortCode": "SMVS", + "level": "C", + "rank": 50500, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "recording", + "presence" + ] + }, + { + "wordGroup": [ + "SMD", + "recording", + "presence" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ef4d6fb2-d61c-4732-9e2c-b1c726be0f93", + "label": "Name(s)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "41a18cc7-3106-4e84-8f66-ad52fe6dee75", + "label": "Special measures direction: A video recording is not to be admitted because the requirements for its admission have not been complied with", + "shortCode": "SMVN", + "level": "C", + "rank": 50600, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "video", + "recording" + ] + }, + { + "wordGroup": [ + "SMD", + "video", + "recording" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", + "label": "In respect of witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "inRespectOfWitnessName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "79b64864-8c39-4724-be94-e2db853db393", + "label": "Date of interview", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ee74631f-c144-4a25-8a93-0253b98a7642", + "label": "Special measures direction: Witness be prevented from seeing the defendant by means of a screen", + "shortCode": "SMDW", + "level": "C", + "rank": 50700, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "screen" + ] + }, + { + "wordGroup": [ + "SMD", + "screen" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "702b365f-dde6-4543-8fb5-1324c6a84ec4", + "label": "Special measures direction: Witness be prevented from seeing the defendant by specified means", + "shortCode": "SMSM", + "level": "C", + "rank": 50800, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "witness", + "prevented" + ] + }, + { + "wordGroup": [ + "SMD", + "witness", + "prevented" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "62abea0f-310d-449a-bc9b-632796dec2d6", + "label": "Specified means", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", + "label": "Special measures direction: The examination is to be conducted through an intermediary", + "shortCode": "SMI", + "level": "C", + "rank": 50900, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "intermediary" + ] + }, + { + "wordGroup": [ + "SMD", + "intermediary" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", + "label": "In respect of witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "inRespectOfWitnessName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "eef5d23c-b75e-4601-9196-02d4ec70bb27", + "label": "Name of intermediary", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", + "label": "Special measures direction: Witness to give evidence in private", + "shortCode": "SMP", + "level": "C", + "rank": 51000, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "witness", + "private" + ] + }, + { + "wordGroup": [ + "SMD", + "witness", + "private" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8683b918-c2bd-49da-bc0a-844659e097e2", + "label": "This direction does not apply to one member of the press, namely", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "52218899-8f26-45cd-ae30-aeff5c189261", + "label": "Special measures direction: Wigs and gowns shall not be worn for the duration of the evidence of a specified witness", + "shortCode": "SMWG", + "level": "C", + "rank": 51100, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "wigs", + "gowns" + ] + }, + { + "wordGroup": [ + "SMD", + "wigs", + "gowns" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "633d192a-cc90-484e-aa1d-318816b7d44a", + "label": "Special measures direction: The accused \"in person\" shall not be permitted to cross-examine a specified witness", + "shortCode": "SMIP", + "level": "C", + "rank": 51200, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "in", + "person", + "cross", + "examine" + ] + }, + { + "wordGroup": [ + "SMD", + "in", + "person", + "cross", + "examine" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca43ea08-3a2b-49cf-bb7f-ac350cc519d6", + "label": "The court appoints a specified person for the purpose of cross examination of the witness, namely", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "67a91dc8-f4f9-4f80-b644-e219326045cc", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Special measures direction: Witness to be provided with an aid to commumication", + "shortCode": "SMAC", + "level": "C", + "rank": 51300, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "aid" + ] + }, + { + "wordGroup": [ + "SMD", + "aid" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f539367f-b941-4873-9567-a235ffb81d85", + "label": "Device", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "device", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4850390f-13b3-4aa0-bae5-2dd0427b97eb", + "label": "Discontinued", + "shortCode": "disc", + "level": "O", + "rank": 5700, + "wordGroups": [ + { + "wordGroup": [ + "disc" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2053", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", + "label": "The court directs that evidence relating to the bad character of the defendant be admitted in the proceedings", + "shortCode": "BCD", + "level": "C", + "rank": 51500, + "wordGroups": [ + { + "wordGroup": [ + "bad", + "character", + "direction", + "admitted", + "evidence" + ] + }, + { + "wordGroup": [ + "BCD", + "admitted" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bad character", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fe77f387-ee64-4cef-8e95-c0776b9799e7", + "label": "The court gives leave for evidence of the bad character of a person to be admitted in the proceedings", + "shortCode": "BCO", + "level": "C", + "rank": 51600, + "wordGroups": [ + { + "wordGroup": [ + "bad", + "character", + "direction", + "leave" + ] + }, + { + "wordGroup": [ + "BCD", + "leave" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6c27cf1e-8f99-4344-b783-62f527882256", + "label": "Name of person", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bad character", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "27bbe7cb-5884-4b68-9c1e-a3373cce6ce6", + "label": "Suspended sentence order of imprisonment amended - supervising court or operational period or supervision period", + "shortCode": "SUSPA", + "level": "O", + "rank": 51700, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "sentence", + "amended", + "supervising" + ] + }, + { + "wordGroup": [ + "SUSPA" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label": "Period of imprisonment previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label": "Period of imprisonment previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label": "Period of imprisonment previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label": "Period of imprisonment previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label": "Original operational period (time suspended for)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label": "Original operational period (time suspended for)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label": "The operational period (period of suspension) is extended to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label": "The operational period (period of suspension) is extended to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", + "label": "Specify court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c6d69d3-c5c3-41fd-b078-32439f516f0b", + "label": "Specify date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", + "label": "All community requirements are cancelled", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "27874127-6eee-4dac-b664-bf1796932b59", + "label": "New supervision period (in full)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8a4af2f8-ee31-481e-847d-eb295896b975", + "label": "New supervising court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1508", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "280a5606-c70a-432f-bdfe-a9dfd49f18c5", + "label": "Suspended sentence order of imprisonment amended", + "shortCode": "SUSPV", + "level": "O", + "rank": 51800, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "sentence", + "amended" + ] + }, + { + "wordGroup": [ + "SUSPV" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7205f528-f69e-4950-9628-a9aff3e31a40", + "label": "Original total imprisonment period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7205f528-f69e-4950-9628-a9aff3e31a40", + "label": "Original total imprisonment period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7205f528-f69e-4950-9628-a9aff3e31a40", + "label": "Original total imprisonment period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7205f528-f69e-4950-9628-a9aff3e31a40", + "label": "Original total imprisonment period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0eba630e-a486-439f-8d76-b49b1363067c", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2a955180-259b-4492-9567-eec3c5ee6c27", + "label": "Date the original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47f34fca-6355-4612-881a-07a2121b86ba", + "label": "Supervising court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", + "label": "The original term of imprisonment is consecutive to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c2f5704c-66f6-4323-a893-d4a212f74bc7", + "label": "Community requirements cancelled", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "faef913f-70ae-44cf-81dd-356c6dc41f0c", + "label": "The court made new community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", + "label": "The court amended a community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02e44066-4850-4a74-8db6-1158f8324eb1", + "label": "Original community requirements to continue", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "27bf0204-a185-4e82-8c34-7317287513c8", + "label": "Responsible officer for the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", + "label": "Reason for change", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40d90a02-53a9-43ef-a96f-da9ad1b476b7", + "label": "The court made a new or varied an electronic monitoring requirement", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40f05056-4c54-4251-a7a1-666197409f20", + "label": "This is the first notification to contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c53e274f-ecbf-476e-971c-103a1d5a72d7", + "label": "This is a variation of an electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1933ca78-459c-47f0-b4a9-1a4507e19af6", + "label": "This is an additional electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", + "label": "This is a continuation of an electronic monitoring requirement", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1508", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fe2670ca-8fe9-4558-86a8-c611a18fd866", + "label": "Witness summons", + "shortCode": "SUMWITN", + "level": "O", + "rank": 51900, + "wordGroups": [ + { + "wordGroup": [ + "witness", + "summons" + ] + }, + { + "wordGroup": [ + "SUMWITN" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a528bbfd-54b8-45d6-bad0-26a3a95eb274", + "label": "Date of hearing", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", + "label": "Time of hearing", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e498ec52-0adf-41cf-89e2-40955a418393", + "label": "Courthouse name", + "welshLabel": "Enw’r adeilad llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4b7bc1cf-e157-4f2f-9500-04dfa5504ff1", + "label": "Courthouse address", + "welshLabel": "Cyfeiriad y llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b0a4f0ea-2767-4327-8a49-6949bdf90791", + "label": "Witness date of birth", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fff16e2a-b141-4659-94f6-edcd9581f127", + "label": "Parent of witness name and address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0bb65e58-5d55-4f1a-8fb1-5d676b9f4cc3", + "label": "Parent of witness date of birth", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a85ecb60-5fb4-4a5d-95c4-771de5220f39", + "label": "Witness is required to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "854089e2-e9e1-45e7-bcf7-44de22bcc81d", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "00dbdd03-5c78-4a15-9787-f3843b90dade", + "label": "The specified documents or things are", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ed6c7388-9103-41c2-af4f-3fe69d8582e8", + "label": "Hearsay direction", + "shortCode": "HD", + "level": "C", + "rank": 52000, + "wordGroups": [ + { + "wordGroup": [ + "hearsay", + "direction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2b04ace9-583f-4d2a-ae84-c3c377070f3c", + "label": "Hearsay direction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c5b29640-fb51-4483-a1a9-845b75c7e8a4", + "label": "Suspended sentence order of detention amended - supervising court or operational period or supervision period", + "shortCode": "SUSPAD", + "level": "O", + "rank": 52100, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "sentence", + "amend", + "supervising" + ] + }, + { + "wordGroup": [ + "SUSPAD" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label": "Period of detention previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label": "Period of detention previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label": "Period of detention previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label": "Period of detention previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label": "Original operational period (time suspended for)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label": "Original operational period (time suspended for)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label": "The operational period (period of suspension) is extended to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label": "The operational period (period of suspension) is extended to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", + "label": "Specify court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c6d69d3-c5c3-41fd-b078-32439f516f0b", + "label": "Specify date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", + "label": "All community requirements are cancelled", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "27874127-6eee-4dac-b664-bf1796932b59", + "label": "New supervision period (in full)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8a4af2f8-ee31-481e-847d-eb295896b975", + "label": "New supervising court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "726c4beb-9ead-4b6b-bed9-b761b5b43553", + "label": "Suspended sentence order of detention amended", + "shortCode": "SUSPVD", + "level": "O", + "rank": 52200, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "sentence", + "amend" + ] + }, + { + "wordGroup": [ + "SUSPVD" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "c711a619-92ac-449c-bd62-cf3218e986ad", + "label": "Original total detention period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c711a619-92ac-449c-bd62-cf3218e986ad", + "label": "Original total detention period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c711a619-92ac-449c-bd62-cf3218e986ad", + "label": "Original total detention period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c711a619-92ac-449c-bd62-cf3218e986ad", + "label": "Original total detention period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0eba630e-a486-439f-8d76-b49b1363067c", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2a955180-259b-4492-9567-eec3c5ee6c27", + "label": "Date the original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47f34fca-6355-4612-881a-07a2121b86ba", + "label": "Supervising court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", + "label": "The original term of imprisonment is consecutive to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "12bca5a7-6dce-472f-b424-9d9e4a9e973d", + "label": "Community requirements cancelled", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "faef913f-70ae-44cf-81dd-356c6dc41f0c", + "label": "The court made new community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", + "label": "The court amended a community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02e44066-4850-4a74-8db6-1158f8324eb1", + "label": "Original community requirements to continue", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "27bf0204-a185-4e82-8c34-7317287513c8", + "label": "Responsible officer for the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", + "label": "Reason for change", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40d90a02-53a9-43ef-a96f-da9ad1b476b7", + "label": "The court made a new or varied an electronic monitoring requirement", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40f05056-4c54-4251-a7a1-666197409f20", + "label": "This is the first notification to contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c53e274f-ecbf-476e-971c-103a1d5a72d7", + "label": "This is a variation of an electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1933ca78-459c-47f0-b4a9-1a4507e19af6", + "label": "This is an additional electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", + "label": "This is a continuation of an electronic monitoring requirement", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1508", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3d2c05b3-fcd6-49c2-b5a9-52855be7f90a", + "label": "Summons on referral to other court", + "shortCode": "SUMRTO", + "level": "O", + "rank": 52300, + "userGroups": [], + "prompts": [ + { + "id": "a528bbfd-54b8-45d6-bad0-26a3a95eb274", + "label": "Date of hearing", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", + "label": "Time of hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5699b34-f32f-466e-b7d8-40b4173df154", + "label": "Magistrates' court", + "welshLabel": "Llys Ynadon", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dbbb47c9-2202-4913-9a0d-db0a048bfd5f", + "label": "Reason for referring to court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c20d50a5-d3f5-4ff7-9366-f0a27b0c95ac", + "label": "Case re-opened", + "shortCode": "ROPEN", + "level": "C", + "rank": 52400, + "userGroups": [], + "prompts": [ + { + "id": "dcc576fb-f2ad-486f-b907-43f9db32ae40", + "label": "Date re-opened", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b40c7eb-2095-4570-b56e-5ebbfe88e49a", + "label": "Libra account number", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "79aa0f1a-a79b-4923-afbf-29ee3a911ef6", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Total custodial period", + "shortCode": "TIMP", + "level": "D", + "rank": 5800, + "resultWording": "section 13(c)", + "userGroups": [], + "prompts": [ + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total imprisonment period", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalImprisonmentPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total imprisonment period", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalImprisonmentPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total imprisonment period", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalImprisonmentPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total imprisonment period", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalImprisonmentPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3a0bf7f8-674f-4b5f-998d-aae0e2b2842e", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": "sentencedInAbsence", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "19d9d7b4-a55c-4f52-8cca-edf9c63e98e5", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalSentenceConsequenceToWhat", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9dbe839c-3804-4c47-bf9e-5be6f9b9b3bb", + "label": "Total imprisonment period is life", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalImprisonmentPeriodInLife", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "21549bc3-5be9-4a91-abc7-57d8ed1b1676", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "reasonForSentenceWithoutPSR", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "266a2bbe-b6b5-4b24-830d-70ceff3e2cac", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "probationPeriodTobeNotified", + "isAvailableForCourtExtract": false, + "durationSequence": null + }, + { + "id": "52c9c1f5-2a00-45ee-bca3-024d43626773", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "600edfc3-a584-4f9f-a52e-5bb8a99646c1", + "label": "Refer for a full court hearing", + "shortCode": "SUMRCC", + "level": "O", + "rank": 52500, + "userGroups": [], + "prompts": [ + { + "id": "bca4e07c-17e0-48f1-84f4-7b6ff8bab5e2", + "label": "Reasons for referring to court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "a47a312a-79fe-4f3e-84ab-63a39f52bc75", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f7784e82-20b5-4d2c-b174-6fd57ebf8d7c", + "label": "Adjourn to a later SJP hearing session", + "shortCode": "ADJOURNSJP", + "level": "O", + "rank": 52600, + "userGroups": [], + "prompts": [ + { + "id": "185e6a04-8b44-430d-8073-d8d12f69733a", + "label": "Adjourn to date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0149ab92-5466-11e8-9c2d-fa7ae01bbebc", + "label": "Referred for resulting in another SJP session", + "shortCode": "SJPR", + "level": "C", + "rank": 52700, + "wordGroups": [ + { + "wordGroup": [ + "SJPR" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1e96d1a9-9618-4ddd-a925-ca6a0ef86018", + "label": "Transfer of Fine Order to a Court in England or Wales", + "shortCode": "TFOUT", + "level": "D", + "rank": 52800, + "wordGroups": [ + { + "wordGroup": [ + "transfer", + "fine" + ] + }, + { + "wordGroup": [ + "TFOUT" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5f589095-2986-4d2b-98fa-30ab00f675d4", + "label": "Court to which fine is transferred", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f31eadd5-41d4-4cff-98d8-effd946e7a09", + "label": "Full bail argument", + "shortCode": "FBA", + "level": "O", + "rank": 52900, + "wordGroups": [ + { + "wordGroup": [ + "full", + "argument" + ] + }, + { + "wordGroup": [ + "FBA" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "78c79d11-a1ba-4c34-89d2-5b25977af957", + "label": "The court certifies that full argument was heard on", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "474e4dc5-6751-4e31-849f-f03952b5597a", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8d29667b-15df-48af-9e5c-39b740b99d70", + "label": "New considerations were placed before the court and this change in circumstances was found", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4532", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4d2fc4cf-970e-49db-83af-2756e43e106e", + "label": "Unable to proceed with case on the Common Platform, entered into Libra", + "shortCode": "UNABLE", + "level": "C", + "rank": 49200, + "wordGroups": [ + { + "wordGroup": [ + "UNABLE" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d3139b79-696b-4cb7-a39d-7f06fcc24f4a", + "label": "Discharged", + "shortCode": "DISCH", + "level": "O", + "rank": 49400, + "wordGroups": [ + { + "wordGroup": [ + "not", + "guilty", + "discharged" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "19463792-2c34-4c4e-bbbe-fbac0955a314", + "label": "Anti-social behaviour injunction", + "shortCode": "ABI", + "level": "O", + "rank": 49500, + "wordGroups": [ + { + "wordGroup": [ + "anti", + "Social", + "behaviour", + "injunction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a13a81c9-113b-4156-8bf5-77280d5107b7", + "label": "Duration period for anti-social behaviour injunction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7f15a291-0e73-4055-8b6c-067f628646da", + "label": "Power of arrest attached to the following provisions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1c033a31-1fdd-400d-8277-cf520ef81de6", + "label": "Power of arrest period ", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ecac709-0dbe-45a7-ac04-cca8454377cc", + "label": "Requirement supervisor for the injunction requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "33408f3d-885c-43f4-a4a8-76e37906569f", + "label": "Police force name (for power of arrest)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2da00d65-6cdc-4149-9d51-df6cb43d9729", + "label": "Police force address (for power of arrest) line 1", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ceb435f2-3d72-4b5a-929a-ce976881ace7", + "label": "Police force address (for power of arrest) line 2", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "aa72f5cb-221a-42ce-b1f3-81f110be0e12", + "label": "Police force address (for power of arrest) line 3", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6516de6a-2998-4ae5-9833-ea37b408558f", + "label": "Police force address (for power of arrest) line 4", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6dacab3d-a730-4020-aed3-15d442fbdff5", + "label": "Police force address (for power of arrest) line 5", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4a13b230-a819-4955-87d8-fe1f1318abc1", + "label": "Anti-social behaviour injunction requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "18266b45-aae2-43b5-8a0b-e647df78e61a", + "label": "Anti-social behaviour injunction prohibitions", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3516", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "32cc8e43-1d98-4fc9-a11a-265ea5af0715", + "label": "Credit for time", + "shortCode": "CREFT", + "level": "D", + "rank": 5900, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "3f4f9b75-418f-46ed-a311-230a6dbca6cb", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "0683d44b-c84f-49e7-b449-242bb6a9c60e", + "label": "Forfeiture and deprivation", + "shortCode": "FORAD", + "level": "O", + "rank": 7600, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "2852b770-a7ad-11e8-98d0-529269fb1459", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "32177be4-0a1f-4889-9ca2-c729f49d7d85", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "290435b9-cce7-43be-b340-1c7db48c5413", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e7ef0248-fe71-4733-8749-ff0c23a04f95", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "19026543-7d59-467b-9649-35ddf89b30cc", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7610d8a1-07fe-4e69-812d-22f821d3f334", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6532b8f4-7794-420a-9f30-8aced3e41517", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "661bdce3-ce01-4cb6-a152-6424540bbbce", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "label": "Adjournment reasons", + "shortCode": "ADJR", + "level": "O", + "rank": 33100, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio:", + "isAvailableForCourtExtract": false, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "c93c5a18-838a-41d3-a017-c203b37f5655", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "4958de15-8a0a-4d2b-9f7e-56e037cf03da", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c2eca548-4511-4023-bbe6-50fe0b679b4a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9fd6a4ef-1055-4e54-b035-f1130a524388", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c514dcec-804c-11e8-adc0-fa7ae01bbebc", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "version": "2022-01-10T09:35:48.476Z", + "startDate": "2022-01-11", + "label": "Payment terms", + "shortCode": "PAYT", + "level": "D", + "rank": 300, + "wordGroups": [ + { + "wordGroup": [ + "PAYT" + ] + }, + { + "wordGroup": [ + "terms", + "payment" + ] + } + ], + "userGroups": [ + ], + "welshLabel": "Telerau talu", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "jurisdiction": "B", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "a0b426c1-74b8-43cd-9885-f0f31625352e", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", + "ruleType": "oneOf" + } + ], + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "874911d0-acf2-4b6f-bcca-cacbb6bb2862", + "label": "Pre-release bail conditions", + "shortCode": "PREBC", + "level": "O", + "rank": 26900, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": false, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "4ddda002-526e-4d70-9df7-eeaae75cfab7", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d85486c4-06f1-4813-859b-5495ca578bde", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bb0a2862-a565-46aa-96ed-1e6f972949d0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1ebd5ca1-866d-43a0-ad9a-464e8a228235", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "279fd36e-17c5-42b2-b56b-a6ab27b9b592", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e5864697-640a-47be-9289-9e6205bbe579", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "4558f9b2-47f8-4430-a0f8-684df5d55761", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b9581c12-81c9-434d-8851-03d9638547fa", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b922e6bd-70a4-4b28-b583-165179af6162", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c51e3522-5363-4af0-b5af-97a5f9eb5462", + "ruleType": "atleastOneOf" + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "userGroups": [], + "resultTextTemplate": "%AllChildText%", + "terminatesOffenceProceedings": false + }, + { + "id": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Bail conditions", + "shortCode": "BAIC", + "level": "O", + "rank": 400, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": false, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "525c4660-9a0b-4a86-80fc-0efce539d6a5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e073f3ba-2585-4c0d-8c31-e51a1662d143", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1aa6a828-fedb-43bd-89e8-bc74586d5e85", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "136725da-5b0a-43d3-adac-54f916bcf2bb", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6889288e-5e4a-4523-be2c-cc993a00af29", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "0649851f-01f8-48fb-928d-6fe100042b2a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "03edddce-c188-4b38-9832-988d9d1ee802", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5c02ff4c-6a33-4089-8c9e-f120a688b018", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d45c8150-3095-4cb3-a55e-b4fd094af560", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "922386e1-bdc2-403e-8902-af1da14e1fd8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d34b643e-74d5-4288-a4b9-bce14d0069d5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "fb9b273e-06c3-4a4a-940c-3c053c559abe", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "481547e6-9099-475e-8028-2bce2c52ff5f", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dfa19118-e944-43f4-93b2-2ed49df5553f", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c1d490ed-1754-43b8-a485-fdab1a25f8cb", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "90146942-b1b9-4a2e-af2b-141f50d45e5c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9da5909e-d715-4f79-a1b8-34780c57acf1", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d709a455-02cc-40d9-b3d2-e4194dc46792", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "3c98b287-fd01-471a-ac34-e0a56d9e95c2", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "4c79ea50-6e14-4c47-8836-c0d0f647e45a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "834ed20a-d7d8-419b-b72d-61b30db36560", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "46051d94-0e60-4010-b86d-cf65e1a464d8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a50ad03e-d299-4da7-874c-0f233d7d503d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c18dd89d-e057-42aa-b071-0a91226da3bf", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "795079ed-4b5a-4750-b077-d653180d43ae", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "71efa12c-a68e-4537-ac7d-27ebf91557a6", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "36951b36-de01-45bc-91a7-1c68f5989ed5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "91141263-7f27-494f-95e9-04a113952974", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", + "ruleType": "atleastOneOf" + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "cacheable": 1, + "userGroups": [], + "resultTextTemplate": "%AllChildText%", + "welshLabel": "Amodau mechnïaeth", + "terminatesOffenceProceedings": false + }, + { + "id": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Next hearing", + "shortCode": "NEXH", + "level": "O", + "rank": 300, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Gwrandawiad nesaf", + "isAvailableForCourtExtract": false, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "fbed768b-ee95-4434-87c8-e81cbc8d24c8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "ruleType": "optional" + } + ] + }, + { + "id": "d076bd4a-17d5-4720-899a-1c6f96e3b35f", + "label": "Remand unconditional bail", + "shortCode": "REMUB", + "level": "O", + "rank": 32900, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "ruleType": "optional" + } + ] + }, + { + "id": "0056b9e1-7585-4bfa-82ec-f06202670bb1", + "label": "Remand in custody", + "shortCode": "REMIC", + "level": "O", + "rank": 33200, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "d0a369c9-5a28-40ec-99cb-da7943550b18", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "d30f1863-f319-49fd-855d-2cf3fa6b3cea", + "label": "Remand appeal", + "shortCode": "REMA", + "level": "O", + "rank": 33400, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6af22d8d-6157-460e-b641-e6db90d15289", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7a0932f5-8264-412e-a83c-2b6d1dce1506", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "074124d5-b07a-4b73-8b9a-792e8462138a", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "62cd1ba4-9aaf-413b-96b0-238cfc82ef18", + "label": "Press", + "shortCode": "PRESS", + "level": "O", + "rank": 34100, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "fcbf777d-1a73-47e7-ab9b-7c51091a022c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "89e3c24b-acbf-42fb-9eee-169b83423035", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c265d589-fcc0-451b-be43-7856e32524ba", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "393c5be8-dadb-484b-ab39-0f1eb57aeae5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9647428f-0946-4a09-aec1-7bdfcd324ac6", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "21271525-76f4-4134-9c93-1be012a574c8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d023e3a7-33ef-45b4-a19b-5137afecbf1f", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2c18aff1-b535-47b6-8415-8841e85eac49", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "335204e2-6b6e-4ea8-ae72-f3341ea75777", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2e725ba6-0e29-4ffb-a5c7-31b67344c211", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "98366b12-b70a-4e66-b71d-a5bbd39bd595", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b3035ace-15d4-44ca-9d79-c83a57dc0e30", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "84222bcb-05ac-4c67-82df-cc8742a850d1", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "07d8fab1-366d-43c5-bdb4-223f8c1229f5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bb90e801-0066-4bdf-85e6-8d64bc683f0c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "3f4f9b75-418f-46ed-a311-230a6dbca6cb", + "label": "Credit for time remanded on bail", + "shortCode": "CREDIT", + "level": "D", + "rank": 6000, + "wordGroups": [ + { + "wordGroup": [ + "Credit", + "remand", + "bail" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Credit for time", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "46bf6aa2-23f3-4c78-8c52-49b567d1193b", + "label": "Warrants of arrest", + "shortCode": "WAROA", + "level": "O", + "rank": 36200, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "c98cb51f-8639-49c1-91f0-a7e820c34355", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b4f7c223-b9d1-4409-b6d3-039f66eb9645", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "671df737-9901-4fa5-b245-aeff0c4c7495", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c8c962df-e28c-4ea8-8496-721badb77b7b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "73242763-44db-4d57-a855-44a6cf4f6226", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9b35f4f5-531e-48b4-858d-d81e15e77c23", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "31b29c58-cfd2-41c6-addf-53f5a2c99fdc", + "label": "Confiscation", + "shortCode": "CON", + "level": "O", + "rank": 38300, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "76b02133-4927-4f21-9f79-1ce361a17b0f", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "733545c5-5612-40b8-bd81-df1a6a154182", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "159c3430-fda4-4aea-8adc-62e4b6f07797", + "label": "Rehabilitation requirement", + "shortCode": "REHR", + "level": "O", + "rank": 42500, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "574fb809-4473-4a90-ba0f-519a50cfc9ec", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "55a1cab9-8aa6-41f6-a116-0345198324e6", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c5e204ce-9a2d-4911-96f7-e189565f429e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "191ec139-10b6-4b18-8a2c-1359425244c3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "536adc8b-1f26-43f0-9659-4bf25e2b42db", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1819e6a0-b13d-47e0-9027-388819457256", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "27528205-a237-471b-a487-7943e9284c44", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d3313cb9-c75e-45e4-b833-8479ff80f9ac", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "fb9fedf8-2b60-496b-8147-168233e81be3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5ab456c8-d272-4082-87ed-cd1f44a0603a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "8f979084-dc3b-4e71-bceb-87e30a4fc381", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "63f8c00a-2115-46a9-94ff-b30bbad0f287", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "30bd1b11-5336-486e-aae6-1285ab4c8d65", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "4e786114-e1c0-42bb-9c52-64edeffa3a3b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1e78e819-13fc-4e14-a263-c632e4e3c85e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "03a1cbef-e54a-4a00-bcd5-44350f882ced", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a17f9787-ba56-43d4-be5f-6fc91d29646e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b986b6ad-816c-44d6-bdf8-0df189732648", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a15102d7-a151-425a-a827-0e35bc159049", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "416684ab-755f-4958-ab83-2795a21d62a3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d79c92bb-c301-491a-b4d2-cb86e473b5af", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "0f7eade6-3602-486c-8491-45e2bdee9960", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b8654020-f9ed-4707-8757-8db6efb323b9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "78d6e77c-fb17-46ae-a719-66eacd6281a9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "48646574-8bd7-49f7-9fa1-3aeb60f7c059", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "79deff01-d3b0-4453-b290-ea34c60ce3e9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "0c5824cd-b6db-4c8f-a8c3-92e7e4cc0195", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Special measures", + "shortCode": "DIRS", + "level": "C", + "rank": 50200, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "02c8aef6-601a-46e8-bbe5-d614e0da764a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b172d954-5aca-447b-b19e-2c836053b0af", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "41a18cc7-3106-4e84-8f66-ad52fe6dee75", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ee74631f-c144-4a25-8a93-0253b98a7642", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "702b365f-dde6-4543-8fb5-1324c6a84ec4", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "52218899-8f26-45cd-ae30-aeff5c189261", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "633d192a-cc90-484e-aa1d-318816b7d44a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "67a91dc8-f4f9-4f80-b644-e219326045cc", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "92ccea16-370d-42cf-ae54-ed0951eaec95", + "label": "Bad character", + "shortCode": "BADC", + "level": "C", + "rank": 51400, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "fe77f387-ee64-4cef-8e95-c0776b9799e7", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "e7e02d63-46c2-4603-8255-921427f410fe", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Send To Crown Court On Conditional Bail", + "shortCode": "SendToCCOnCB", + "level": "O", + "rank": 53000, + "userGroups": [], + "prompts": [ + { + "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label": "Is the defendant excused attendance?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantExcusedAttendance", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "80be59c8-ffaa-4570-b40a-f3a085058208", + "label": "Bail condition reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual": null, + "reference": "bailConditionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dec5104c-3342-4544-b287-31ea969e0f15", + "label": "BASS provider", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bassProvider", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4559", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "ruleType": "mandatory" + } + ] + }, + { + "id": "0118c2ad-9f50-4b0c-8f56-dff14b46b669", + "label": "Interim Anti-social behaviour injunction", + "shortCode": "ABII", + "level": "O", + "rank": 49600, + "userGroups": [], + "prompts": [ + { + "id": "2f1308c6-4fbf-4158-809b-5f382a0dafae", + "label": "Interim Anti-social behaviour injunction made on notice until further order of the court", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "904e7e42-5cf0-44e3-810f-1bc67d10027c", + "label": "Power of arrest attached to the following provisions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "33408f3d-885c-43f4-a4a8-76e37906569f", + "label": "Police force name (for power of arrest)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2da00d65-6cdc-4149-9d51-df6cb43d9729", + "label": "Police force address (for power of arrest) line 1", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ceb435f2-3d72-4b5a-929a-ce976881ace7", + "label": "Police force address (for power of arrest) line 2", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "aa72f5cb-221a-42ce-b1f3-81f110be0e12", + "label": "Police force address (for power of arrest) line 3", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6516de6a-2998-4ae5-9833-ea37b408558f", + "label": "Police force address (for power of arrest) line 4", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6dacab3d-a730-4020-aed3-15d442fbdff5", + "label": "Police force address (for power of arrest) line 5", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4a13b230-a819-4955-87d8-fe1f1318abc1", + "label": "Anti-social behaviour injunction requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "18266b45-aae2-43b5-8a0b-e647df78e61a", + "label": "Anti-social behaviour injunction prohibitions", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3516", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1652f681-8b73-4b35-8982-d418e33e2dca", + "label": "Anti-social behaviour injunction discharged", + "shortCode": "ABID", + "level": "O", + "rank": 49700, + "userGroups": [], + "prompts": [ + { + "id": "9e013766-dc6b-4b33-8691-871cd95bbbb2", + "label": "Date anti-social behaviour injunction made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bacb7dc5-0a23-41c4-9e61-018aa99c7758", + "label": "Name of court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1eefddf4-76eb-4fe8-89d7-2c517bd6da99", + "label": "Name of youth on anti-social behaviour injunction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b509d44-fb0e-463f-8b7f-675cb6903265", + "label": "Parent's name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0be420e0-d53a-4f8e-9b6e-bf32399a8139", + "label": "Parent's address line 1", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0059a0fb-4c1f-4404-a510-ee62103e0ac3", + "label": "Parent's address line 2", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e58ccaaf-b086-454c-945c-0e49e1ff3ac2", + "label": "Parent's address line 3", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "07ca67f2-f61d-43df-b5ba-195c7be45ed4", + "label": "Parent's address line 4", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5a4bca21-33ab-4676-be4e-47a6345e66bb", + "label": "Parent's address line 5", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0305f628-85c3-42d6-82b8-7145d7c6087b", + "label": "Police force address (for removal of power of arrest) Line 1", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dbae711b-d60f-404c-bdac-323bcc2715d8", + "label": "Police force address (for removal of power of arrest) Line 2", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "88c1856d-a5d2-46d7-83db-3e6b9611e607", + "label": "Police station name (for power of arrest removal)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "53060dea-a815-492b-b426-79269ebfaafd", + "label": "Police force address (for removal of power of arrest) Line 3", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "699e217b-6eef-4536-8bbe-8865e7a6cb1f", + "label": "Police force address (for removal of power of arrest) Line 4", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "360992fa-96f8-4087-9cfa-fc2d6e23c931", + "label": "Police force address (for removal of power of arrest) Line 5", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3516", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5c27e390-2656-4117-8104-a41b15b2f01b", + "label": "Anti-social behaviour injunction detention order", + "shortCode": "ABIDO", + "level": "O", + "rank": 49800, + "userGroups": [], + "prompts": [ + { + "id": "ec2d9337-782d-4c1a-be49-2c03b52c4788", + "label": "Duration of detention in youth detention accomodation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "701580e3-d5ea-4318-a8ad-0ecb00558215", + "label": "Rreasons why no other power is available to the court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3516", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "311c8e5c-6f22-44a7-8c97-f72324cb05c4", + "label": "Custody time limit", + "shortCode": "CTL", + "level": "O", + "rank": 53100, + "userGroups": [], + "prompts": [ + { + "id": "5348fd0e-0670-4811-997f-1baa78b06d62", + "label": "Custody time limit expires", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "CTLDATE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4483c255-2761-4549-a70a-314aa311d052", + "label": "Time spent in custody (in days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "CTLTIME", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", + "label": "Credit for time in custody in foreign jurisdiction", + "shortCode": "CREDITF", + "level": "D", + "rank": 6100, + "wordGroups": [ + { + "wordGroup": [ + "Credit", + "foreign", + "custody" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Credit for time", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "66105417-41c8-420d-820f-40b61b507442", + "label": "Risk or vulnerability factors", + "shortCode": "vulnarability", + "level": "D", + "rank": 900, + "wordGroups": [ + { + "wordGroup": [ + "vulnarability", + "risk,vulnerability,factors" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5b3a1f08-8008-4a1d-94b1-e0d4e1bd44df", + "label": "Anti-social behaviour injunction detention order revoked ", + "shortCode": "ABIDOR", + "level": "O", + "rank": 49900, + "userGroups": [], + "prompts": [ + { + "id": "31305c79-6634-4ed7-8ab1-40af1f34f74e", + "label": "Date anti-social behaviour injunction detention order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c108853c-bd16-4677-9352-af7a20395f72", + "label": "Name of youth in detention", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bacb7dc5-0a23-41c4-9e61-018aa99c7758", + "label": "Name of court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e76673b3-7ca8-4a32-898d-dfa2e6047f24", + "label": "Date of birth of youth in detention", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6927b6ac-4c85-4532-838d-88ac00ea83f9", + "label": "Conveyor / custodian name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3516", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4e170564-93b2-4d45-b653-90099acf8313", + "label": "Engagement and support order", + "shortCode": "ESO", + "level": "O", + "rank": 53200, + "userGroups": [], + "prompts": [ + { + "id": "7bc1e57b-4cae-4b3d-bd80-50a8d42b3b41", + "label": "Date by which meetings must take place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "00f2671f-f825-406c-ad80-75ff13e837f9", + "label": "Name of supervisor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1e697e74-f38b-4388-a7b5-51d51180d2f2", + "label": "The Local Justice Area the defendant lives in", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1144", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5e253119-9aab-4d0d-8288-bcdbf3695d86", + "label": "Order", + "shortCode": "ORD", + "level": "O", + "rank": 53300, + "userGroups": [], + "prompts": [ + { + "id": "3da00e9f-7638-4f7d-9c98-275e74ac1e0e", + "label": "Order details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", + "label": "Defendant to notify names and home address", + "shortCode": "DNNH", + "level": "O", + "rank": 800, + "userGroups": [], + "prompts": [ + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 10, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 110, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f9d5418b-eb45-4614-bfb6-0e64d6a8e032", + "label": "Defendant to notify names and home address to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "65f58042-5608-4d48-9aa9-3ba5ea38775e", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ee8a9064-e558-47db-8b18-6818b1c120bf", + "label": "Slavery and trafficking prevention order", + "shortCode": "STPO", + "level": "O", + "rank": 19600, + "userGroups": [], + "prompts": [ + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "11f6a6ca-985b-4aa9-a6f2-de4214fcbe0f", + "label": "This order lasts until further order", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3285", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", + "ruleType": "optional" + } + ] + }, + { + "id": "fcb26a5f-28cc-483e-b430-d823fac808df", + "label": "Excise penalty", + "shortCode": "excise, penalty", + "level": "O", + "rank": 53400, + "wordGroups": [ + { + "wordGroup": [ + "excise, penalty" + ] + }, + { + "wordGroup": [] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b3dfed9a-efba-4126-a08d-cf37d18b4563", + "label": "Amount of excise penalty", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOF", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1119", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "68720a39-3bf6-4678-9d6b-40386da7d53a", + "label": "Warrant for arrest for breach of community penalty with bail (dated)", + "shortCode": "WCPD", + "level": "O", + "rank": 53500, + "userGroups": [], + "prompts": [ + { + "id": "2fa31208-5fed-4f52-a63e-c3a83cc733fa", + "label": "Reason for arrest is a failure to comply with the", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "24b40430-a75e-44ba-b367-bae3139b4d19", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9405e797-240e-4e71-ab35-43e90e3a8a5b", + "label": "Reason for the decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", + "label": "Warrant execution allocated to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "507c4249-d897-43bb-b64d-5c156ef6ba85", + "label": "Bail to be allowed on these conditions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4575", + "adjournment": true, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + } + ] + }, + { + "id": "ed34136f-2a13-45a4-8d4f-27075ae3a8a9", + "label": "Warrant for arrest for breach of community penalty without bail", + "shortCode": "WCPN", + "level": "O", + "rank": 53600, + "userGroups": [], + "prompts": [ + { + "id": "2fa31208-5fed-4f52-a63e-c3a83cc733fa", + "label": "Reason for arrest is a failure to comply with the", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "24b40430-a75e-44ba-b367-bae3139b4d19", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9405e797-240e-4e71-ab35-43e90e3a8a5b", + "label": "Reason for the decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", + "label": "Warrant execution allocated to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4576", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "664d0c0d-115b-4d54-b137-301c9ed74ef9", + "label": "Recommended for deportation when released", + "shortCode": "RDEPD", + "level": "D", + "rank": 6200, + "wordGroups": [ + { + "wordGroup": [ + "deportation", + "release" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "16bb9f17-d3c3-42f1-a4dc-2d953114a214", + "label": "Nationality", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2cbae4d2-e4d0-4451-be7c-713c2a1a8974", + "label": "Residence and reporting restrictions etc", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3006", + "adjournment": false, + "convicted": false, + "qualifier": "CN", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0d1b161b-d6b0-4b1b-ae08-535864e4f631", + "label": "Warrant for arrest for community penalty breach with bail (undated)", + "shortCode": "WCPU", + "level": "O", + "rank": 53700, + "userGroups": [], + "prompts": [ + { + "id": "2fa31208-5fed-4f52-a63e-c3a83cc733fa", + "label": "Reason for arrest is a failure to comply with the", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "24b40430-a75e-44ba-b367-bae3139b4d19", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9405e797-240e-4e71-ab35-43e90e3a8a5b", + "label": "Reason for the decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", + "label": "Warrant execution allocated to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4577", + "adjournment": true, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "491e30e9-2508-4e3a-9291-dfaf16d975ab", + "label": "Sent to Crown Court for trial", + "shortCode": "SCC", + "level": "O", + "rank": 53800, + "userGroups": [], + "prompts": [ + { + "id": "4362a1a4-aa80-4a68-ae61-f57962709f3d", + "label": "Sent for trial under", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": "999ecc93-0fd8-47d8-8b2d-9286c0c5d491", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f83671fb-7f2f-4b38-b6f3-71db90768485", + "label": "Indicated plea", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": "84d620c3-35ca-49ae-879d-95efaaf670af", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d7d2c7b1-f27a-44ed-a227-ea9b917f0229", + "label": "No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "654fce8c-238a-468a-92db-f7509394cf08", + "label": "A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5dfec956-547d-4e2b-b1f6-743376511589", + "label": "Trial issues identified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "49365935-e535-42db-bc41-a18c8fee5258", + "label": "Directions made", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8", + "label": "No indication given re victim personal statement", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6", + "label": "Victim wishes to read victim personal statement to court", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "583ea6cb-4251-406e-b07a-445fb0dde914", + "label": "Victim personal statement to be presented to court by prosecutor or other person", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e2b9a67c-cbd8-4479-89ff-57b2b6632835", + "label": "Additional details re victim personal statement", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7e657be6-9e6f-410d-ba6a-74cfedb1b3f9", + "label": "Probation / Youth Offending Team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "05496e53-66f5-47a0-9fff-f31cbd5191a0", + "label": "Was a PSR ordered?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ca16bc9f-9d62-4dd3-b8af-a77004ff8002", + "label": "Recommended for deportation when detained", + "shortCode": "RDEPN", + "level": "D", + "rank": 6300, + "wordGroups": [ + { + "wordGroup": [ + "deportation", + "detained" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "16bb9f17-d3c3-42f1-a4dc-2d953114a214", + "label": "Nationality", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3006", + "adjournment": false, + "convicted": false, + "qualifier": "CQ", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e866cd11-6073-4fdf-a229-51c9d694e1d0", + "label": "Surcharge", + "shortCode": "FVS", + "level": "D", + "rank": 6400, + "wordGroups": [ + { + "wordGroup": [ + "FVS" + ] + }, + { + "wordGroup": [ + "victim", + "surcharge" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "629a971e-9d7a-4526-838d-0a4cb922b5cb", + "label": "Amount of surcharge", + "welshLabel": "Swm y gordal", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOS", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Gordal", + "isAvailableForCourtExtract": true, + "financial": true, + "category": "A", + "cjsCode": "3117", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5eb79085-3035-4a00-a549-6dd24abafe8c", + "label": "No action taken on breach", + "shortCode": "NOACT", + "level": "O", + "rank": 6500, + "wordGroups": [ + { + "wordGroup": [ + "action", + "breach" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "d144ad72-f68a-4b16-a145-ab3c95599dcc", + "label": "Imposing court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "13cd9c54-228b-4dd0-966b-93f4e9bf3a0b", + "label": "Date of original imposition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1087", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "969f150c-cd05-46b0-9dd9-30891efcc766", + "version": "2021-02-25T12:38:32.964Z", + "startDate": "2021-02-26", + "label": "Fine", + "shortCode": "FO", + "level": "O", + "rank": 22300, + "canExtendActiveOrder": true, + "wordGroups": [ + { + "wordGroup": [ + "FO", + "fine" + ] + } + ], + "prompts": [ + { + "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", + "label": "Amount of fine", + "welshLabel": "Swm y ddirwy", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "financial": "Y", + "reference": "AOF", + "wordGroup": [ + "Amount" + ], + "userGroups": [ + ], + "min": "0", + "max": "999999999", + "wording": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false, + "activeOrderExtended": true, + "activeOrderNotExtended": false + } + ], + "welshLabel": "Dirwy", + "financial": "Y", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "Y", + "d20": false, + "resultDefinitionGroup": "Imposition", + "cjsCode": "1015", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "jurisdiction": "B", + "libraCode": "FO", + "lCode": "FINE", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "9ea0d845-5096-44f6-9ce0-8ae801141eac", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "bdb32555-8d55-4dc1-b4b6-580db5132496", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", + "ruleType": "optional" + } + ], + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "f5d492b8-a09b-4f70-9ceb-aa06c306a7dc", + "rollUpPrompts": false, + "publishedForNows": true, + "label": "Costs to Crown Prosecution Service", + "shortCode": "FCPC", + "level": "C", + "rank": 6700, + "wordGroups": [ + { + "wordGroup": [ + "Costs", + "CPS" + ] + }, + { + "wordGroup": [ + "FCPC" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f63b0bb5-7d93-4dab-bc3d-b4bd27152871", + "label": "Amount of costs", + "welshLabel": "Swm y costau", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOC", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Costau i Wasanaeth Erlyn y Goron", + "isAvailableForCourtExtract": true, + "financial": true, + "category": "F", + "cjsCode": "3011", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ae89b99c-e0e3-47b5-b218-24d4fca3ca53", + "label": "Compensation", + "shortCode": "FCOMP", + "level": "O", + "rank": 6800, + "wordGroups": [ + { + "wordGroup": [ + "FCOMP" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "26985e5b-fe1f-4d7d-a21a-57207c5966e7", + "label": "Amount of compensation", + "welshLabel": "Swm yr iawndal", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOCOM", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "af921cf4-06e7-4f6b-a4ea-dcb58aab0dbe", + "label": "Major creditor name", + "welshLabel": "Enw’r Prif Gredydwr", + "resultPromptRule": "oneOf", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", + "qual": null, + "reference": "CREDNAME", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", + "label": "Minor creditor company name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "043faecf-e97c-4daf-9763-4b755d941b45", + "label": "Minor creditor title", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "202afd61-e9fb-4bc7-aad6-f0a5799406e2", + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", + "label": "Minor creditor surname", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", + "label": "Minor creditor initials", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "41576571-5573-498b-a9e9-eee24f7a67fa", + "label": "Minor creditor forename(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", + "label": "Minor creditor address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", + "label": "Minor creditor postcode", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + } + ], + "welshLabel": "Iawndal", + "isAvailableForCourtExtract": true, + "financial": true, + "category": "F", + "cjsCode": "3012", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "label": "Community requirement: Electronic monitoring whereabouts", + "shortCode": "EMW", + "level": "O", + "rank": 1400, + "wordGroups": [ + { + "wordGroup": [ + "Electronic", + "Monitoring", + "Whereabouts", + "first", + "GPS" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f18d4d90-954d-4b27-9e70-f4be9c487b0e", + "label": "Start time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd6186a4-d928-47f1-abee-2466b9b80ebf", + "label": "End time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3148", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ae617390-b41e-46ac-bd63-68a28512676a", + "label": "Community order Scotland", + "shortCode": "COS", + "level": "O", + "rank": 6900, + "wordGroups": [ + { + "wordGroup": [ + "Community", + "Order", + "scotland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad4f684d-0a83-4ee1-b04f-7864487eb41c", + "label": "Appropriate Scottish Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5cf339ba-1dd4-4476-99a5-281c833dd134", + "label": "Locality in Scotland", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "93861000-c4dd-449c-a876-83381beb9719", + "label": "Corresponding Scottish Order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1280d70e-ea43-42d3-8e96-ce72b8933876", + "label": "Persistent offender previously fined", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1116", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a19714a0-5d58-4666-bc15-3d9dd2692f77", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d683f73c-488e-4d8e-a685-d37049c2a3e5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "66aac609-8987-44cf-a0dc-fb49a7195090", + "label": "Community order Northern Ireland", + "shortCode": "CONI", + "level": "O", + "rank": 7000, + "wordGroups": [ + { + "wordGroup": [ + "Community", + "Order", + "ireland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", + "label": "Petty Sessions District", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b76491aa-02fe-4c14-80d7-4401cc1105e1", + "label": "Corresponding Northern Ireland Order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": "responsibleOfficer", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1280d70e-ea43-42d3-8e96-ce72b8933876", + "label": "Persistent offender previously fined", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1116", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a19714a0-5d58-4666-bc15-3d9dd2692f77", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d683f73c-488e-4d8e-a685-d37049c2a3e5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "23f2178b-0083-4bd1-a830-d9c7291f02bd", + "label": "Suspended sentence order Scotland - imprisonment", + "shortCode": "SUSPSS", + "level": "O", + "rank": 7100, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "imprisonment", + "scotland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0f3114e6-b7b2-4281-8b96-168cbbcd064b", + "label": "Imprisonment reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad4f684d-0a83-4ee1-b04f-7864487eb41c", + "label": "Appropriate Scottish Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5cf339ba-1dd4-4476-99a5-281c833dd134", + "label": "Locality in Scotland", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1115", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "mandatory" + } + ] + }, + { + "id": "8fac72a9-3193-47ec-9010-e73158813cfd", + "label": "Suspended sentence order Northern Ireland - imprisonment", + "shortCode": "SUSPSNI", + "level": "O", + "rank": 7200, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "imprisonment", + "ireland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0f3114e6-b7b2-4281-8b96-168cbbcd064b", + "label": "Imprisonment reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", + "label": "Petty Sessions District", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1115", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "mandatory" + } + ] + }, + { + "id": "9161f3cb-e821-44e5-a9ee-4680b358a037", + "label": "Guilty plea taken into account", + "shortCode": "GPTAC", + "level": "O", + "rank": 7300, + "wordGroups": [ + { + "wordGroup": [ + "Guility", + "plea", + "account" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1f413a5a-f385-4264-9e23-1fdc80455091", + "label": "Comment on discount / reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "554c2622-c1cc-459e-a98d-b7f317ab065c", + "label": "Conditional discharge", + "shortCode": "CD", + "level": "O", + "rank": 7400, + "wordGroups": [ + { + "wordGroup": [ + "conditional", + "discharge" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label": "Period of conditional discharge", + "welshLabel": "Cyfnod o ryddhad amodol", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label": "Period of conditional discharge", + "welshLabel": "Cyfnod o ryddhad amodol", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label": "Period of conditional discharge", + "welshLabel": "Cyfnod o ryddhad amodol", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label": "Period of conditional discharge", + "welshLabel": "Cyfnod o ryddhad amodol", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + } + ], + "welshLabel": "Ryddhad Amodol", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1018", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b9c6047b-fb84-4b12-97a1-2175e4b8bbac", + "label": "Absolute discharge", + "shortCode": "AD", + "level": "O", + "rank": 7500, + "wordGroups": [ + { + "wordGroup": [ + "absolute", + "discharge" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rhyddhad diamod", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1017", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "32177be4-0a1f-4889-9ca2-c729f49d7d85", + "label": "Forfeiture order (other than vehicle)", + "shortCode": "forfov", + "level": "O", + "rank": 7800, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "destruction", + "vehicle" + ] + }, + { + "wordGroup": [ + "forfov" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c5aa7f9-326e-4525-803a-63eedc16e4e2", + "label": "Property to be forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "98a562ee-7583-405a-ab05-3f922ada4872", + "label": "Type of forfeiture", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "26d4c112-a7ae-11e8-98d0-529269fb1459", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d5cfcf4-abb5-4449-b9ba-844353fc6035", + "label": "Destruction / dispose of / deal with / sell", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ba14f9b0-9912-4529-ae63-46eda7708500", + "label": "Method of disposal etc", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "564e9cd7-5a71-4b8d-b404-211afe28f0ed", + "label": "Specify who is to destroy etc", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3054", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "290435b9-cce7-43be-b340-1c7db48c5413", + "label": "Forfeiture order (Vehicle - Section 33C of the Environmental Protection Act 1990)", + "shortCode": "FORVEPO", + "level": "O", + "rank": 7900, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "vehicle" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e0aab342-1b85-4942-8efb-232ef97d81d1", + "label": "Defendant to be deprived of vehicle described as", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b729ae65-ca66-466f-a858-bb33581cd580", + "label": "Name of enforcement authority", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3138", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", + "label": "Order for deprivation of the defendant's rights (other than vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", + "shortCode": "DEPO", + "level": "O", + "rank": 8000, + "wordGroups": [ + { + "wordGroup": [ + "deprivation", + "not", + "vehicle" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3cfbca15-fd95-4a23-9f57-f60d62f22936", + "label": "Defendant to be deprived of this property", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3055", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Community requirement: Curfew with electronic monitoring", + "shortCode": "CURE", + "level": "O", + "rank": 1600, + "wordGroups": [ + { + "wordGroup": [ + "Electronic", + "Monitoring", + "Curfew", + "first" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f18d4d90-954d-4b27-9e70-f4be9c487b0e", + "label": "Start time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd6186a4-d928-47f1-abee-2466b9b80ebf", + "label": "End time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Curfew address, details and timings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAddressDetailAndTiming", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", + "label": "Order for deprivation of rights (vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", + "shortCode": "DEPV", + "level": "O", + "rank": 8100, + "wordGroups": [ + { + "wordGroup": [ + "deprivation", + "vehicle" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e0aab342-1b85-4942-8efb-232ef97d81d1", + "label": "Defendant to be deprived of vehicle described as", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3055", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", + "label": "Forfeiture order (land vehicle - Modern Slavery Act 2015)", + "shortCode": "FORFMS", + "level": "O", + "rank": 8200, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "slavery" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e0aab342-1b85-4942-8efb-232ef97d81d1", + "label": "Defendant to be deprived of vehicle described as", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3138", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cfbe83c8-935b-4410-a68c-49452519f2d3", + "label": "Mandatory life imprisonment", + "shortCode": "MLI", + "level": "O", + "rank": 8300, + "wordGroups": [ + { + "wordGroup": [ + "mandatory", + "Life", + "imprisonment" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label": "Early release provisions apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Early", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label": "Early release provisions do not apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Early", + "not", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "96349367-2d04-4265-978f-6c6b417497fd", + "label": "Mandatory custody for life", + "shortCode": "MCL", + "level": "O", + "rank": 8400, + "wordGroups": [ + { + "wordGroup": [ + "Mandotory", + "custody", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label": "Early release provisions apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Early", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label": "Early release provisions do not apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Early", + "not", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "qualifier": "AB", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "3f608dba-20ad-4710-bebc-d78b4b3ff08d", + "label": "Custody for life", + "shortCode": "CFL", + "level": "O", + "rank": 8500, + "wordGroups": [ + { + "wordGroup": [ + "custody", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label": "Early release provisions apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Early", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label": "Early release provisions do not apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Early", + "not", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "d65f3285-f5f0-4ab1-b703-0c95f0f6ed89", + "label": "Life imprisonment for second listed offence", + "shortCode": "LIMP2", + "level": "O", + "rank": 8600, + "wordGroups": [ + { + "wordGroup": [ + "Life", + "imprisonment", + "second" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "qualifier": "AC", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "d844cdd8-c110-4bb8-b8f2-1a8bd5fdc0c7", + "label": "Custody for life for second listed offence", + "shortCode": "LIMPS2O", + "level": "O", + "rank": 8700, + "wordGroups": [ + { + "wordGroup": [ + "Life", + "custody", + "second" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "qualifier": "AC", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "cf70d7ed-8049-4fe2-b02f-5a23b5e39184", + "label": "Life imprisonment for serious offence (S.225)", + "shortCode": "LIMPSO", + "level": "O", + "rank": 8800, + "wordGroups": [ + { + "wordGroup": [ + "Life", + "imprisonment", + "serious" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "6e42d694-a785-4cbf-a4a8-09f2d1802d4d", + "label": "Custody for life for serious offence  (S.255)", + "shortCode": "CFLS", + "level": "O", + "rank": 8900, + "wordGroups": [ + { + "wordGroup": [ + "Life", + "custody", + "serious" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "4f640ea6-88d4-4a3a-b816-ff5a79eaaa14", + "label": "Special custodial sentence of imprisonment for offender of particular concern", + "shortCode": "SPECC", + "level": "O", + "rank": 9000, + "wordGroups": [ + { + "wordGroup": [ + "special", + "custody", + "concern" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label": "Term of sentence of imprisonment (aggregate)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label": "Term of sentence of imprisonment (aggregate)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label": "Term of sentence of imprisonment (aggregate)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label": "Term of sentence of imprisonment (aggregate)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "label": "Community requirement: Curfew", + "shortCode": "CUR", + "level": "O", + "rank": 1500, + "wordGroups": [ + { + "wordGroup": [ + "Curfew", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Curfew address, details and timings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAddressDetailAndTiming", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a920be42-b376-420b-ace9-d2d0634559b0", + "label": "Extended sentence of imprisonment for violent or sexual offence (21 and over)(S.226A)", + "shortCode": "EXTIVS", + "level": "O", + "rank": 9100, + "wordGroups": [ + { + "wordGroup": [ + "extended", + "imprisonment", + "violent", + "sexual", + "over", + "21" + ] + }, + { + "wordGroup": [ + "extended", + "imprisonment" + ] + }, + { + "wordGroup": [ + "EXTIVS" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label": "Extended sentence of imprisonment term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label": "Extended sentence of imprisonment term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label": "Extended sentence of imprisonment term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label": "Extended sentence of imprisonment term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", + "label": "Reason for significant risk to public of serious harm", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "qualifier": "AF", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "optional" + } + ] + }, + { + "id": "752aab8f-ba5f-45a8-80c8-4df7770e70e4", + "label": "Extended sentence of detention for violent or sexual offence (18-20)(S.226A)", + "shortCode": "EXTDVS", + "level": "O", + "rank": 9200, + "wordGroups": [ + { + "wordGroup": [ + "extended", + "detention", + "violent", + "sexual", + "over", + "18" + ] + }, + { + "wordGroup": [ + "detained", + "extended", + "over" + ] + }, + { + "wordGroup": [ + "EXTDVS" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", + "label": "Reason for significant risk to public of serious harm", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "qualifier": "AF", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "1dd2e245-a9af-4d04-84b6-92f64dc312fe", + "label": "Extended sentence of detention for violent or sexual offence (under 18)(S.226B)", + "shortCode": "EXTDVSU", + "level": "O", + "rank": 9300, + "wordGroups": [ + { + "wordGroup": [ + "detained", + "extended", + "under" + ] + }, + { + "wordGroup": [ + "extended", + "detention", + "violent", + "sexual", + "under", + "18" + ] + }, + { + "wordGroup": [ + "EXTDVSU" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", + "label": "Reason for significant risk to public of serious harm", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1007", + "adjournment": false, + "convicted": true, + "qualifier": "AF", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "892de3ce-1e80-454e-8c72-44e694b06e93", + "label": "Detained at Her Majesty's pleasure (under 18)(S.90)", + "shortCode": "DETMP", + "level": "O", + "rank": 9400, + "wordGroups": [ + { + "wordGroup": [ + "detained", + "pleasure", + "under", + "18" + ] + }, + { + "wordGroup": [ + "detained", + "majesty" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1003", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "optional" + } + ] + }, + { + "id": "70fe7114-b511-4d9b-a550-2c040b9a8d34", + "label": "Detained for specified period for serious offence (under 18)(S.91)", + "shortCode": "DETSO", + "level": "O", + "rank": 9500, + "wordGroups": [ + { + "wordGroup": [ + "detained", + "Period", + "serious", + "under", + "18" + ] + }, + { + "wordGroup": [ + "detained", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "746c833a-7d33-4800-a40c-425dbacf7492", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": "concurrent", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7784b81d-44d2-43c0-a903-a53b0e73683b", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": "consecutiveToOffenceNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "da9c91a6-7090-44f3-8644-b4b184533fc4", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8115982c-af5c-4439-b6ff-c9c6303a6292", + "label": "Detention reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1007", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "7f410e16-bda3-4bca-944e-ef88832e41b5", + "label": "Minimum sentence of detention in young offender institution for drug trafficking", + "shortCode": "MINDDT", + "level": "O", + "rank": 9600, + "wordGroups": [ + { + "wordGroup": [ + "minimum", + "detention", + "yoi", + "Drug" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label": "Custody period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label": "Custody period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label": "Custody period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label": "Custody period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "qualifier": "AD", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "1bcdae76-37f8-4331-9076-fd46dbd4b1fc", + "label": "Minimum sentence of detention in young offender institution for domestic burglary", + "shortCode": "MINDDB", + "level": "O", + "rank": 9700, + "wordGroups": [ + { + "wordGroup": [ + "minimum", + "detention", + "yoi", + "domestic" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label": "Custody Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label": "Custody Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label": "Custody Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label": "Custody Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "qualifier": "AE", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "47f143eb-7961-4e85-834b-1aa5e47cb3ef", + "label": "Minimum sentence of Imprisonment for drug trafficking", + "shortCode": "MINIDT", + "level": "O", + "rank": 9800, + "wordGroups": [ + { + "wordGroup": [ + "Miniumum", + "imprisonment", + "Drug" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "qualifier": "AD", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "97fdae65-37a0-4156-912f-a35363e26f31", + "label": "Minimum sentence of Imprisonment for domestic burglary", + "shortCode": "MINIDB", + "level": "O", + "rank": 9900, + "wordGroups": [ + { + "wordGroup": [ + "minimum", + "imprisonment", + "domestic" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "qualifier": "AE", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "5679e5b7-0ca8-4d2a-ba80-7a50025fb589", + "label": "Suspended sentence order - detention in a young offender institution", + "shortCode": "SUSPSD", + "level": "O", + "rank": 10000, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "detention", + "yoi" + ] + }, + { + "wordGroup": [ + "suspended", + "detention" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label": "Custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label": "Custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label": "Custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label": "Custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "31e2a7a7-03fc-472b-97ad-67d5aae41a70", + "label": "Custody reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": "responsibleOfficer", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1134", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "mandatory" + } + ] + }, + { + "id": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "version": "2024-04-09T14:32:54.430Z", + "startDate": "2024-04-10", + "label": "Further curfew requirement made", + "shortCode": "CURA", + "level": "O", + "rank": 64200, + "wordGroups": [ + { + "wordGroup": [ + "CURA", + "Curfew", + "Curfew", + "second" + ] + } + ], + "prompts": [ + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Defendant to remain at", + "welshLabel": "Diffynnydd i aros yn", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "financial": "N", + "reference": "curfewAddressDetailsAndTimings", + "wordGroup": [ + "Curfew address" + ], + "userGroups": [], + "min": "1", + "max": "500", + "qual": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "e5b96ed6-7ec0-464d-a698-62bc94a7f52f", + "label": "Details and timings", + "welshLabel": "Manylion ac amseroedd", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "financial": "N", + "reference": "detailsAndTimings", + "userGroups": [], + "min": "1", + "max": "1500", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "6dd7348a-29e8-4487-a956-ae07d7fe7668", + "label": "End date", + "welshLabel": "Dyddiad terfyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "financial": "N", + "reference": "endDate", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "financial": "N", + "reference": "startDate", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Gofyniad cyrffyw pellach wedi’i wneud", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Community Requirement", + "cjsCode": "3105", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "B", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "Curfew Requirement: Further curfew requirement made. Start date {startDate}. End date {endDate}. Offender to remain at {curfewAddressDetailsAndTimings} {detailsAndTimings}", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "06f0ddcd-30d5-49ac-9500-3d66daeeda9b", + "label": "Suspended sentence order Scotland - detention in a young offender institution", + "shortCode": "SUSPSDS", + "level": "O", + "rank": 10100, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "detention", + "yoi", + "scotland" + ] + }, + { + "wordGroup": [ + "suspended", + "detention", + "scotland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "31e2a7a7-03fc-472b-97ad-67d5aae41a70", + "label": "Custody reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad4f684d-0a83-4ee1-b04f-7864487eb41c", + "label": "Appropriate Scottish Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5cf339ba-1dd4-4476-99a5-281c833dd134", + "label": "Locality in Scotland", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1134", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "optional" + } + ] + }, + { + "id": "a78b50cc-0777-403d-8e51-5458e1ee3513", + "label": "Suspended sentence order Northern Ireland - detention in a young offender institution", + "shortCode": "SUSPSDNI", + "level": "O", + "rank": 10200, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "detention", + "yoi", + "ireland" + ] + }, + { + "wordGroup": [ + "suspended", + "detention", + "ireland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "31e2a7a7-03fc-472b-97ad-67d5aae41a70", + "label": "Custody reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", + "label": "Petty Sessions District", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1134", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "optional" + } + ] + }, + { + "id": "d4490cde-3f85-4f51-9545-e2648e458a13", + "label": "Suspended sentence of imprisonment activated unaltered", + "shortCode": "SSI", + "level": "O", + "rank": 10300, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "imprisonment", + "activate" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label": "Name of court that imposed suspended sentence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label": "Date suspended sentence imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1507", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8847f470-7bf6-4d7f-aad3-efb31104f337", + "label": "Suspended sentence of imprisonment activated with lesser term", + "shortCode": "SSIV", + "level": "O", + "rank": 10400, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "imprisonment", + "activate", + "lesser" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label": "Name of court that imposed suspended sentence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label": "Date suspended sentence imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1507", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1f9c69f6-8fb6-478e-95ba-4501974c3c00", + "label": "Suspended sentence of detention in a young offender institution activated unaltered", + "shortCode": "SSID", + "level": "O", + "rank": 10500, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "detention", + "activate" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label": "Name of court that imposed suspended sentence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label": "Date suspended sentence imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1507", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "01c907a7-6035-40d0-9b90-e25799797dda", + "label": "Suspended sentence of detention in a young offender institution activated with lesser term", + "shortCode": "SSIVD", + "level": "O", + "rank": 10600, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "detention", + "activate", + "lesser" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label": "Name of court that imposed suspended sentence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label": "Date suspended sentence imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1507", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c93c5a18-838a-41d3-a017-c203b37f5655", + "label": "Adjournment reason: At request of the defence", + "shortCode": "DEF", + "level": "O", + "rank": 10700, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "request", + "defence" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rheswm dros ohirio: Ar gais yr amddiffyniad", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "DB", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4958de15-8a0a-4d2b-9f7e-56e037cf03da", + "label": "Adjournment reason: For the trial to take place", + "shortCode": "TRIAL", + "level": "O", + "rank": 10800, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "trial" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio: Er mwyn cynnal y treial", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "GC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", + "label": "Adjournment reason: At request of the prosecution", + "shortCode": "PROS", + "level": "O", + "rank": 10900, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "request", + "prosecution" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rheswm dros ohirio: Ar gais yr erlyniad", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "DC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c2eca548-4511-4023-bbe6-50fe0b679b4a", + "label": "Adjournment reason: To plead guilty or not guilty to the offence(s)", + "shortCode": "PLEA", + "level": "O", + "rank": 11000, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "plea" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio: I bledio’n euog neu’n ddieuog i'r trosedd(au)", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "DM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "label": "Community requirement: Curfew waived", + "shortCode": "CURW", + "level": "O", + "rank": 1800, + "wordGroups": [ + { + "wordGroup": [ + "Curfew", + "waived" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "040c7d54-3e56-4ed1-8004-d63ab3cd5128", + "label": "Date excused", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 1", + "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", + "label": "Excused time from", + "welshLabel": null, "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress1", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, "userGroups": [ - + "Court Clerks", + "Legal Advisers" ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 2", + "id": "ba3cd0c4-2bd0-4b02-9636-2064e293466b", + "label": "Excused time to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3a71ea3c-2083-4584-8c73-e7bb0608c468", + "label": "Excused reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e4fb2729-c6e4-4d32-b3f0-24285f625a87", + "label": "Other curfew requirements", + "welshLabel": null, "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress2", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, "userGroups": [ - + "Court Clerks", + "Legal Advisers" ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", + "label": "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity", + "shortCode": "D49", + "level": "O", + "rank": 60000, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "49", + "publicity" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8b419e6d-c248-4f9e-8638-470d237022b1", + "label": "Details of reporting restriction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "PressOn", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", + "version": "2021-02-25T12:42:54.190Z", + "startDate": "2021-02-26", + "label": "Account Consolidated", + "shortCode": "ACON", + "level": "D", + "rank": 8800, + "wordGroups": [ + { + "wordGroup": [ + "ACON" + ] }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 3", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "wordGroup": [ + "consolidated", + "account" + ] + } + ], + "prompts": [ + { + "id": "e6861c6e-0de2-4029-ab8c-c89769daea29", + "label": "Account to be consolidated with existing accounts", + "welshLabel": "Cyfrif i’w gyfuno â chyfrifon presennol", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 200, "financial": "N", - "reference": "probationteamtobenotifiedAddress3", + "reference": "accountToBeConsolidatedWithExistingAccounts", + "wordGroup": [ + "Consolidated" + ], "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine3", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 4", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "id": "d05f476d-a0b9-47c7-bf95-d9cfd591b747", + "label": "Account to be consolidated with existing account number", + "welshLabel": "Cyfrif i’w gyfuno â rhif cyfrif presennol", + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 100, "financial": "N", - "reference": "probationteamtobenotifiedAddress4", + "reference": "accountToBeConsolidatedWithExistingAccountNumber", + "wordGroup": [ + "Consolidated" + ], "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", + "min": "1", + "max": "20", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine4", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 5", + "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label": "Additional information", + "welshLabel": "Gwybodaeth ychwanegol", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "type": "TXT", + "sequence": 300, "financial": "N", - "reference": "probationteamtobenotifiedAddress5", + "reference": "additionalInformation", "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", + "min": "1", + "max": "1000", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine5", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Cyfrif wedi’i gyfuno", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "B", + "libraCode": "ACON", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "8b1cff00-a456-40da-9ce4-f11c20959084", + "version": "2022-12-08T20:00:45.162Z", + "startDate": "2022-12-09", + "label": "Suspended sentence order - imprisonment", + "shortCode": "SUSPS", + "level": "O", + "rank": 30500, + "wordGroups": [ + { + "wordGroup": [ + "SUSPS" + ] }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified post code", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "wordGroup": [ + "suspended", + "imprisonment" + ] + } + ], + "prompts": [ + { + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", "financial": "N", - "reference": "probationteamtobenotifiedPostCode", - "userGroups": [ - + "reference": "imprisonmentPeriod", + "wordGroup": [ + "Years" ], - "min": "", - "max": "", - "courtExtract": "N", + "userGroups": [], + "durationSequence": 1, + "welshDuration": "Flynedd", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "PostCode", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, + "type": "INT", + "sequence": 100, + "duration": "Months", "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress1", - "userGroups": [ - + "reference": "imprisonmentPeriod", + "wordGroup": [ + "Months" ], - "min": "", - "max": "", - "courtExtract": "N", + "userGroups": [], + "durationSequence": 1, + "welshDuration": "Mis", + "courtExtract": "Y", "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress2", - "userGroups": [ - + "reference": "imprisonmentPeriod", + "wordGroup": [ + "Weeks" ], - "min": "", - "max": "", - "courtExtract": "N", + "userGroups": [], + "durationSequence": 1, + "welshDuration": "Wythnos", + "courtExtract": "Y", "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "welshLabel": "Swyddog cyfrifol", + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, + "type": "INT", + "sequence": 100, + "duration": "Days", "financial": "N", - "reference": "responsibleOfficer", - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "userGroups": [ - + "reference": "imprisonmentPeriod", + "wordGroup": [ + "Days" ], - "courtExtract": "N", + "userGroups": [], + "durationSequence": 1, + "welshDuration": "Niwrnod", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label": "End Date", - "welshLabel": "Dyddiad terfyn", + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": "Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)", "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, + "type": "INT", + "sequence": 700, "financial": "N", - "reference": "endDate", - "userGroups": [ - + "reference": "bailRemandDaysToCountTaggedDays", + "wordGroup": [ + "Tagged days" ], - "courtExtract": "Y", + "userGroups": [], + "min": "0", + "max": "999", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, - "isDurationEndDate": true, "associatedWithReferenceData": false }, { - "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", - "label": "Direction that a failure to comply be dealt with by magistrates' court", - "welshLabel": "Cyfarwyddyd bod llys ynadon yn delio â methiant i gydymffurfio", + "id": "746c833a-7d33-4800-a40c-425dbacf7492", + "label": "Concurrent", + "welshLabel": "Cydamserol", "resultPromptRule": "optional", "type": "BOOLEAN", - "sequence": 600, + "sequence": 120, "financial": "N", - "reference": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", - "userGroups": [ - + "reference": "concurrent", + "wordGroup": [ + "Concurrent" ], + "userGroups": [], + "qual": "C", "courtExtract": "Y", - "jurisdiction": "C", + "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "welshLabel": "Llys sy’n Goruchwylio", + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 300, + "type": "INT", + "sequence": 200, + "duration": "Years", "financial": "N", - "reference": "supervisingCourt", - "userGroups": [ - + "reference": "suspendedPeriod", + "wordGroup": [ + "Years" ], - "min": "1", - "max": "120", + "userGroups": [], + "durationSequence": 2, + "welshDuration": "Flynedd", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "supervisingCourt", "nameEmail": false, - "cacheable": 2, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", - "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", - "welshLabel": "Mae'r diffynnydd yn droseddwr parhaus a ddirwywyd yn flaenorol, mae gwneud gorchymyn cymunedol yn lle gosod dirwy am y drosedd hon er budd cyfiawnder oherwydd", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", "financial": "N", - "reference": "persistentOffenderPreviouslyFined", - "userGroups": [ - + "reference": "suspendedPeriod", + "wordGroup": [ + "Months" ], - "min": "1", - "max": "1000", + "userGroups": [], + "durationSequence": 2, + "welshDuration": "Mis", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, - "associatedWithReferenceData": false}, + "associatedWithReferenceData": false + }, { - - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "REV", - "welshLabel": "REV", + "id": "7784b81d-44d2-43c0-a903-a53b0e73683b", + "label": "Consecutive to offence", "resultPromptRule": "optional", "type": "TXT", - "sequence": 400, + "sequence": 140, "financial": "N", - "reference": "HTYPE", - "userGroups": [ - + "reference": "consecutiveToOffenceNumber", + "wordGroup": [ + "Consecutive to" ], + "userGroups": [], "min": "1", - "max": "1000", + "max": "99", + "qual": "F", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false - } - ], - "welshLabel": "Gorchymyn cymunedol Cymru / Lloegr", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "Y", - "d20": false, - "dvlaCode": "M", - "cjsCode": "1116", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "libraCode": "COEW", - "lCode": "COEW", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "ruleType": "mandatory" }, { - "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "ruleType": "mandatory" - } - ], - "canBeSubjectOfBreach": true, - "canBeSubjectOfVariation": true, - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id" : "6feb0f2e-8d1e-40c7-af2c-05b28c69e5fc", - "label" : "Withdrawn (notice produced)", - "shortCode" : "WDRNNOT", - "level" : "O", - "rank" : 41600, - "wordGroups" : [ { - "wordGroup" : [ "withdrawn", "notice" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2063", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "615313b5-0647-4d61-b7b8-6b36265d8929", - "label" : "No collection order reason", - "shortCode" : "NOCOLLO", - "level" : "D", - "rank" : 41700, - "wordGroups" : [ { - "wordGroup" : [ "no", "collection", "reason" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", - "label" : "Reason for no collection order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "4e66b3e0-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "04f4c331-754c-4153-9933-3411843836a4", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros beidio â gwneud Gorchymyn Casglu", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "eb2e4c4f-b738-4a4d-9cce-0572cecb7cb8", - "label" : "Withdrawn", - "shortCode" : "WDRN", - "level" : "O", - "rank" : 41800, - "wordGroups" : [ { - "wordGroup" : [ "WDRN" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2063", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c8326b9e-56eb-406c-b74b-9f90c772b657", - "label" : "Withdrawn (recharge at named Court)", - "shortCode" : "WDRNOS", - "level" : "O", - "rank" : 41900, - "wordGroups" : [ { - "wordGroup" : [ "withdrawn", "recharge", "court" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9d3ed4ee-40ad-41c4-9778-a657e8e7605e", - "label" : "Court handling re-charged offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "4010", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "eaecff82-32da-4cc1-b530-b55195485cc7", - "label" : "Withdrawn (recharge at unnamed Court)", - "shortCode" : "WDRNOU", - "level" : "O", - "rank" : 42000, - "wordGroups" : [ { - "wordGroup" : [ "withdrawn", "recharge", "unnamed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "4010", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "40cf92bc-1dd9-492c-a7c5-d0d337e91994", - "label" : "Wasted costs order - defendant to pay", - "shortCode" : "WCOD", - "level" : "O", - "rank" : 42100, - "wordGroups" : [ { - "wordGroup" : [ "wasted", "Costs" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "d5c1709c-bbe2-46af-b3e0-91fc2562a120", - "label" : "Full amount of costs due to creditor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "22ebf965-8a1c-4229-9894-0df7f8117753", - "label" : "Major creditor name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", - "qual" : null, - "reference" : "CREDNAME", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "2505", - "adjournment" : false, - "convicted" : false, - "qualifier" : "IE", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b786ce8a-ce7a-4fa1-94ce-a3d9777574e4", - "label" : "Pay costs to named party (inter partes costs)", - "shortCode" : "IPC", - "level" : "C", - "rank" : 42200, - "wordGroups" : [ { - "wordGroup" : [ "pay", "Costs", "names" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "247cfcbd-582e-4e79-bdac-567ad04fbfb3", - "label" : "Name of party to pay the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2a7dbf0b-4090-4d0b-abcc-fbf38302d11a", - "label" : "Amount of costs", - "welshLabel" : "Swm y costau", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "13405496-927f-422c-9b32-1b8d90fe7ebe", - "label" : "Name of party to receive costs", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68159a17-22a7-4744-815e-7cd539948af1", - "label" : "Payment terms", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f5759650-31a1-11e8-b467-0ed5f89f718b", - "label" : "Money security forfeited", - "shortCode" : "SECMF", - "level" : "O", - "rank" : 42300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "3e124994-31a2-11e8-b467-0ed5f89f718b", - "label" : "Amount forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4f058bd0-31a2-11e8-b467-0ed5f89f718b", - "label" : "Youth rehabilitation order England / Wales", - "shortCode" : "YRO", - "level" : "O", - "rank" : 42400, - "wordGroups" : [ { - "wordGroup" : [ "youth", "Rehabilitation", "Order" ] - }, { - "wordGroup" : [ "YRO" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label" : "Start Date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : "responsibleOfficer", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1141", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "574fb809-4473-4a90-ba0f-519a50cfc9ec", - "label" : "Youth rehabilitation requirement: Activity - specified", - "shortCode" : "YRA1", - "level" : "O", - "rank" : 42600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab3c3545-4a09-4a32-b779-33e96763debe", - "label" : "Activity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "abb95a52-2a75-40c3-8d3f-a1d75a199c47", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Imprisonment", - "shortCode" : "imp", - "level" : "O", - "rank" : 4900, - "resultWording": "section 12(c)", - "wordGroups" : [ { - "wordGroup" : [ "imp" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "76f15753-1706-42fb-b922-0d56d01e5706", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "imprisonmentPeriod", - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "76f15753-1706-42fb-b922-0d56d01e5706", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "imprisonmentPeriod", - "isAvailableForCourtExtract" : true, - "durationSequence" : 1 - }, { - "id" : "76f15753-1706-42fb-b922-0d56d01e5706", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "imprisonmentPeriod", - "courtExtract" : "N", - "durationSequence" : 1 - }, { - "id" : "76f15753-1706-42fb-b922-0d56d01e5706", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "imprisonmentPeriod", - "isAvailableForCourtExtract" : false, - "durationSequence" : 1 - }, { - "id" : "321c3fd8-ea44-4ccc-b763-bc693ee6be0f", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : "concurrent", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b5ba551-7adb-4555-93b1-dcb6f027f02f", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : "consecutiveToOffenceNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9637677e-c2d7-4609-a750-ffe90eba9351", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : "whereConsecutiveToAnOffence", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e307f79-d4ca-466e-8c5c-a7d874c89b39", - "label" : "Imprisonment reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : "imprisonmentReasons", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "622aa563-a3db-4102-ba7e-21c21cee0110", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : "theReasonForThis", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "55a1cab9-8aa6-41f6-a116-0345198324e6", - "label" : "Youth rehabilitation requirement: Activity at specified place", - "shortCode" : "YRA2", - "level" : "O", - "rank" : 42700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7365f685-e91e-4a5f-8021-34246eb56fcb", - "label" : "Place to attend", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d0e31533-c60f-4b90-a98a-4a9678ecf69e", - "label" : "Person to go to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", - "label" : "Youth rehabilitation requirement: Activity with residential exercise at a place", - "shortCode" : "YRA3", - "level" : "O", - "rank" : 42800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "72a96d2c-d41e-426f-a824-6dffc607ecfc", - "label" : "Residential exercise place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c5e204ce-9a2d-4911-96f7-e189565f429e", - "label" : "Youth rehabilitation requirement: Activity with residential exercise", - "shortCode" : "YRA4", - "level" : "O", - "rank" : 42900, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "90bc2885-5f74-4b35-ba58-33da0ef1f1df", - "label" : "Activity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", - "label" : "Youth rehabilitation requirement: Activity - engage in activities in accordance with instructions of responsible officer", - "shortCode" : "YRA5", - "level" : "O", - "rank" : 43000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96bd9a5b-005c-42ac-b188-fcb786e53b4a", - "label" : "Responsible officer may require participation in residential exercise for not more than 7 days", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "191ec139-10b6-4b18-8a2c-1359425244c3", - "label" : "Youth rehabilitation requirement: Activity - engage in residential activity in accordance with instructions of responsible officer", - "shortCode" : "YRA6", - "level" : "O", - "rank" : 43100, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "536adc8b-1f26-43f0-9659-4bf25e2b42db", - "label" : "Youth rehabilitation requirement: Programme", - "shortCode" : "YRP1", - "level" : "O", - "rank" : 43200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", - "label" : "Programme name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7365f685-e91e-4a5f-8021-34246eb56fcb", - "label" : "Place to attend", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3103", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1819e6a0-b13d-47e0-9027-388819457256", - "label" : "Youth rehabilitation requirement: Programme with residence", - "shortCode" : "YRP2", - "level" : "O", - "rank" : 43300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", - "label" : "Programme name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4224806d-6caa-48a7-8f80-5ce1ff6baf5b", - "label" : "Place to reside", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3103", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "27528205-a237-471b-a487-7943e9284c44", - "label" : "Youth rehabilitation requirement: Attendance centre", - "shortCode" : "YRAC1", - "level" : "O", - "rank" : 43400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "f13d59b1-88a1-4ad0-972c-e86a22cdd700", - "label" : "Number of hours", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Hours" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0995a846-ba03-41b0-bb65-e50323296bdb", - "label" : "Attendance Centre name / contact", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "28e2f7e0-8886-4cf6-a828-776849f8d3d4", - "label" : "Additional / concurrent to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3111", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d3313cb9-c75e-45e4-b833-8479ff80f9ac", - "label" : "Youth rehabilitation requirement: Prohibited activity for a period", - "shortCode" : "YRPA1", - "level" : "O", - "rank" : 43500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label" : "Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label" : "Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label" : "Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label" : "Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label" : "Prohibited activities", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3104", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", - "label" : "Youth rehabilitation requirement: Prohibited activity for specified days", - "shortCode" : "YRPA2", - "level" : "O", - "rank" : 43600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label" : "Prohibited activities", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "939bb78c-6e15-4270-b22b-86fad8021d53", - "label" : "Days of the week", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3104", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "72393fb6-77dd-45b2-98f5-6612966de882", - "label" : "Committed to young offender institution", - "shortCode" : "yoi", - "level" : "O", - "rank" : 5000, - "wordGroups" : [ { - "wordGroup" : [ "yoi" ] - }, { - "wordGroup" : [ "committed", "young", "institution" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d4d8f560-8bf0-4fb3-8bb6-ff90c961c20c", - "label" : "Custody reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "69c444b1-9e98-4d1c-9128-dc856a00d8a0", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "fb9fedf8-2b60-496b-8147-168233e81be3", - "label" : "Youth rehabilitation requirement: Supervision", - "shortCode" : "YRS1", - "level" : "O", - "rank" : 43700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1044", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5ab456c8-d272-4082-87ed-cd1f44a0603a", - "label" : "Youth rehabilitation requirement: Unpaid work", - "shortCode" : "YRUP1", - "level" : "O", - "rank" : 43800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "83f27f8b-0d02-4f19-bbde-3619b88c06ac", - "label" : "Number of hours", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Hours", - "wordGroup" : [ "Hours" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "28e2f7e0-8886-4cf6-a828-776849f8d3d4", - "label" : "Additional / concurrent to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3101", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8f979084-dc3b-4e71-bceb-87e30a4fc381", - "label" : "Youth rehabilitation requirement: Residence at a specified place", - "shortCode" : "YRR1", - "level" : "O", - "rank" : 43900, - "userGroups" : [ ], - "prompts" : [ { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden" : false - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden" : false - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden" : false - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0d0b4ec0-1d58-4d53-99aa-96bb0bd12db1", - "label" : "Place to reside at", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd192d80-cf96-403e-9c3b-c0738d5a4a13", - "label" : "Responsible office may approve different address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3107", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", - "label" : "Youth rehabilitation requirement: Residence with an individual", - "shortCode" : "YRR2", - "level" : "O", - "rank" : 44000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d611217b-4778-4bec-a056-8c821aa6bc22", - "label" : "Name of person to live with", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3107", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "63f8c00a-2115-46a9-94ff-b30bbad0f287", - "label" : "Youth rehabilitation requirement: Residence in local authority accommodation", - "shortCode" : "YRR3", - "level" : "O", - "rank" : 44100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f63f692f-3bfc-4d0f-8e45-acd99b06431c", - "label" : "Name of local authority", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "eecf7565-8c4a-4059-9a97-b83a7f975e22", - "label" : "Name of person youth must NOT reside with", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3107", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "30bd1b11-5336-486e-aae6-1285ab4c8d65", - "label" : "Youth rehabilitation requirement: Mental health treatment", - "shortCode" : "YRM1", - "level" : "O", - "rank" : 44200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HG", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", - "label" : "Youth rehabilitation requirement: Mental health treatment residential patient", - "shortCode" : "YRM2", - "level" : "O", - "rank" : 44300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fb580537-9d36-4139-811b-77af09547b0d", - "label" : "Care home / Hospital", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HE", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", - "label" : "Youth rehabilitation requirement: Mental health treatment non-residential patient", - "shortCode" : "YRM3", - "level" : "O", - "rank" : 44400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HF", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", - "label" : "Youth rehabilitation requirement: Drug treatment as a resident", - "shortCode" : "YRD1", - "level" : "O", - "rank" : 44500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b625180-fd12-4422-9150-3185ac672151", - "label" : "Name of institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label" : "By or under the direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3128", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", - "label" : "Youth rehabilitation requirement: Drug treatment as a non-resident", - "shortCode" : "YRD2", - "level" : "O", - "rank" : 44600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b625180-fd12-4422-9150-3185ac672151", - "label" : "Name of institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label" : "By or under the direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3128", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BS", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4e786114-e1c0-42bb-9c52-64edeffa3a3b", - "label" : "Youth rehabilitation requirement: Drug testing", - "shortCode" : "YRDT1", - "level" : "O", - "rank" : 44700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "da2007ba-6b96-4b88-b518-ca7a27144e2d", - "label" : "Minimum number of occasions a month samples are to be provided", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3129", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1e78e819-13fc-4e14-a263-c632e4e3c85e", - "label" : "Youth rehabilitation requirement: Intoxicating substance treatment as a non-resident", - "shortCode" : "YRI1", - "level" : "O", - "rank" : 44800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6aaf3645-0806-4917-ada5-b019c6a606c5", - "label" : "Treatment intervals", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b625180-fd12-4422-9150-3185ac672151", - "label" : "Name of institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label" : "By or under the direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3130", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "03a1cbef-e54a-4a00-bcd5-44350f882ced", - "label" : "Youth rehabilitation requirement: Intoxicating substance treatment as a resident", - "shortCode" : "YRI2", - "level" : "O", - "rank" : 44900, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b625180-fd12-4422-9150-3185ac672151", - "label" : "Name of institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label" : "By or under the direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3130", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a17f9787-ba56-43d4-be5f-6fc91d29646e", - "label" : "Youth rehabilitation requirement: Education", - "shortCode" : "YRE1", - "level" : "O", - "rank" : 45000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label" : "Period of education", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label" : "Period of education", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label" : "Period of education", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label" : "Period of education", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6766cc06-f1de-443f-8a6b-2ba64cc222f4", - "label" : "Local Authority", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3131", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b986b6ad-816c-44d6-bdf8-0df189732648", - "label" : "Youth rehabilitation requirement: Exclusion not to enter for a period", - "shortCode" : "YREX1", - "level" : "O", - "rank" : 45100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6d322ff1-1d95-4053-ac79-19d1b7874f2d", - "label" : "End date of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a15102d7-a151-425a-a827-0e35bc159049", - "label" : "Youth rehabilitation requirement: Exclusion not to enter with between dates", - "shortCode" : "YREX2", - "level" : "O", - "rank" : 45200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ac46c9c8-976d-40ef-a913-85c64a6859bc", - "label" : "From date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9e41b95c-c776-4d95-b057-05b7fcb155aa", - "label" : "Until date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "416684ab-755f-4958-ab83-2795a21d62a3", - "label" : "Youth rehabilitation requirement: Exclusion not to enter for a period with electronic monitoring", - "shortCode" : "YREX3", - "level" : "O", - "rank" : 45300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "e4f5a70e-c140-4993-ba09-e07ae067a758", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e4f5a70e-c140-4993-ba09-e07ae067a758", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e4f5a70e-c140-4993-ba09-e07ae067a758", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", - "label" : "Start date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f02e3b28-83e7-4650-a8e1-810bbb464bb4", - "label" : "Start time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", - "label" : "End date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "487358be-eccc-46e4-aa8e-e41495638a2c", - "label" : "End time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d79c92bb-c301-491a-b4d2-cb86e473b5af", - "label" : "Youth rehabilitation requirement: Curfew with electronic monitoring", - "shortCode" : "YRC1", - "level" : "O", - "rank" : 45400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f18d4d90-954d-4b27-9e70-f4be9c487b0e", - "label" : "Start time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd6186a4-d928-47f1-abee-2466b9b80ebf", - "label" : "End time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0f7eade6-3602-486c-8491-45e2bdee9960", - "label" : "Youth rehabilitation requirement: Curfew", - "shortCode" : "YRC2", - "level" : "O", - "rank" : 45500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b8654020-f9ed-4707-8757-8db6efb323b9", - "label" : "Youth rehabilitation requirement: Curfew with second address", - "shortCode" : "YRC3", - "level" : "O", - "rank" : 45600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "49939c7c-750f-403e-9ce1-f82e3e568065", - "label" : "No separate penalty", - "shortCode" : "NSP", - "level" : "O", - "rank" : 5200, - "wordGroups" : [ { - "wordGroup" : [ "NSP" ] - }, { - "wordGroup" : [ "seperate", "penalty" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1057", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "78d6e77c-fb17-46ae-a719-66eacd6281a9", - "label" : "Youth rehabilitation requirement: Curfew waived", - "shortCode" : "YRC4", - "level" : "O", - "rank" : 45700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "040c7d54-3e56-4ed1-8004-d63ab3cd5128", - "label" : "Date excused", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", - "label" : "Excused time from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ba3cd0c4-2bd0-4b02-9636-2064e293466b", - "label" : "Excused time to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3a71ea3c-2083-4584-8c73-e7bb0608c468", - "label" : "Excused reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e4fb2729-c6e4-4d32-b3f0-24285f625a87", - "label" : "Other curfew requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label" : "Start Date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : "responsibleOfficer", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0b5ce679-b262-436d-8f94-aa78de85022a", - "label" : "Youth rehabilitation order with intensive supervision and surveillance England / Wales", - "shortCode" : "YROISS", - "level" : "O", - "rank" : 45800, - "wordGroups" : [ { - "wordGroup" : [ "YROISS" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1142", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ae8c21a9-cf2a-487b-8fae-58d50c7104f0", - "label" : "Youth rehabilitation order with fostering England / Wales", - "shortCode" : "YROF", - "level" : "O", - "rank" : 45900, - "wordGroups" : [ { - "wordGroup" : [ "YROF" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", - "label" : "Period of fostering", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", - "label" : "Period of fostering", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", - "label" : "Period of fostering", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label" : "Start Date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9de7d91b-77a2-4de4-bde0-8481d1f5b42e", - "label" : "Name of local authority", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : "responsibleOfficer", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1143", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e9bdae5d-5bec-456c-a361-52d0dae89e11", - "label" : "Youth rehabilitation order Northern Ireland", - "shortCode" : "YRONI", - "level" : "O", - "rank" : 46000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label" : "Start Date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2216f87f-7e1c-489e-a481-8c941796db49", - "label" : "Corresponding Northern Ireland order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "555a4eb3-548b-4b1e-84ee-8a000223da2f", - "label" : "Relevant officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d8162d74-5d0f-4841-a013-eba02a267ae5", - "label" : "Petty Sessional District in Northern Ireland", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1141", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7dadfe69-9486-4edc-84ef-7d4f2e13633e", - "label" : "Youth rehabilitation order with intensive supervision and surveillance Northern Ireland", - "shortCode" : "YROINI", - "level" : "O", - "rank" : 46100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label" : "Start Date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2216f87f-7e1c-489e-a481-8c941796db49", - "label" : "Corresponding Northern Ireland order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "555a4eb3-548b-4b1e-84ee-8a000223da2f", - "label" : "Relevant officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d8162d74-5d0f-4841-a013-eba02a267ae5", - "label" : "Petty Sessional District in Northern Ireland", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1142", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "48646574-8bd7-49f7-9fa1-3aeb60f7c059", - "label" : "Youth rehabilitation requirement: Extended activity - specified", - "shortCode" : "YREA1", - "level" : "O", - "rank" : 46200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e0b217c9-73aa-48b2-b168-56dcd5c1e75c", - "label" : "Extended activity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7365f685-e91e-4a5f-8021-34246eb56fcb", - "label" : "Place to attend", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d0e31533-c60f-4b90-a98a-4a9678ecf69e", - "label" : "Person to go to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "79deff01-d3b0-4453-b290-ea34c60ce3e9", - "label" : "Youth rehabilitation requirement: Extended activity with residential exercise at a place", - "shortCode" : "YREA2", - "level" : "O", - "rank" : 46300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "72a96d2c-d41e-426f-a824-6dffc607ecfc", - "label" : "Residential exercise place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", - "label" : "Youth rehabilitation requirement: Extended activity with residential exercise", - "shortCode" : "YREA3", - "level" : "O", - "rank" : 46400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b85e1325-9fc1-436a-82f6-469f7f21de6a", - "label" : "Extended activity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", - "label" : "Youth rehabilitation requirement: Extended activity - engage in activities in accordance with instructions of responsible officer", - "shortCode" : "YREA4", - "level" : "O", - "rank" : 46500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96bd9a5b-005c-42ac-b188-fcb786e53b4a", - "label" : "Responsible officer may require participation in residential exercise for not more than 7 days", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f029c131-16b3-4a6d-895d-00b609d858e9", - "label" : "Referral order", - "shortCode" : "YOP", - "level" : "O", - "rank" : 46600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", - "label" : "Referral period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", - "label" : "Referral period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label" : "Total length of contract period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 1400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label" : "Total length of contract period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 1400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a6e65d2-ecbc-471f-8433-5f95d478f650", - "label" : "Youth Offender Panel name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d928400b-8f20-4b9e-aff5-868aafa4cc27", - "label" : "Parent/Guardian's name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f56d8811-15fb-4f82-b91e-fef8fcce3885", - "label" : "Parent/Guardian's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c6677a77-7028-4674-85c9-1cbc2f0e0088", - "label" : "This parent / guardian must attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29b5ced8-4101-4073-8642-1fa52791098a", - "label" : "This parent / guardian may attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "701fe552-5edd-477d-9fbf-4ed2c6e931e1", - "label" : "A local authority representative must attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0c25627d-07d0-406c-9e8e-08081a649cf5", - "label" : "A local authority representative may attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "848927d6-fcac-4e0d-96f7-92bb4455a162", - "label" : "This is a second referral order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f1619e53-cdb4-4979-8211-7f92134c38c6", - "label" : "The Court certified the following facts", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", - "label" : "The Court made the following remarks", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1097", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "685cc7e9-8bd1-4559-a05c-d8a7a89f9779", - "label" : "Count to remain on file", - "shortCode" : "cremfile", - "level" : "O", - "rank" : 5300, - "wordGroups" : [ { - "wordGroup" : [ "Lie", "on", "file" ] - }, { - "wordGroup" : [ "cremfile" ] - }, { - "wordGroup" : [ "Count", "remain", "file" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "2008", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "843f1ba4-af62-4b5b-a5f2-51128b08a128", - "label" : "Referral order extended", - "shortCode" : "YOPE", - "level" : "O", - "rank" : 46700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", - "label" : "Referral period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", - "label" : "Referral period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label" : "Total length of contract period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 1300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label" : "Total length of contract period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 1300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a6e65d2-ecbc-471f-8433-5f95d478f650", - "label" : "Youth Offender Panel name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d928400b-8f20-4b9e-aff5-868aafa4cc27", - "label" : "Parent/Guardian's name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f56d8811-15fb-4f82-b91e-fef8fcce3885", - "label" : "Parent/Guardian's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c6677a77-7028-4674-85c9-1cbc2f0e0088", - "label" : "This parent / guardian must attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29b5ced8-4101-4073-8642-1fa52791098a", - "label" : "This parent / guardian may attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "701fe552-5edd-477d-9fbf-4ed2c6e931e1", - "label" : "A local authority representative must attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0c25627d-07d0-406c-9e8e-08081a649cf5", - "label" : "A local authority representative may attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f1619e53-cdb4-4979-8211-7f92134c38c6", - "label" : "The Court certified the following facts", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", - "label" : "The Court made the following remarks", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1097", - "adjournment" : false, - "convicted" : true, - "qualifier" : "E", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b4cd9c69-ed12-4d23-948c-f35e7386a05f", - "label" : "Committed to prison for refusal to be sworn", - "shortCode" : "RSWN", - "level" : "O", - "rank" : 46800, - "wordGroups" : [ { - "wordGroup" : [ "prison", "refuse", "evidence" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", - "ruleType" : "optional" - } ] - }, { - "id" : "5f938747-a0aa-47b7-84a5-31fe87cfb15b", - "label" : "Committed to prison for refusal to affirm", - "shortCode" : "AFM", - "level" : "O", - "rank" : 46900, - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", - "ruleType" : "optional" - } ] - }, { - "id" : "005c9631-a1f1-4222-9702-88fb9368a17c", - "label" : "Committed to prison for refusal to produce documents", - "shortCode" : "CPRPD", - "level" : "O", - "rank" : 47000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "dbb41b1a-a302-485f-96f9-1632c7ce1eff", - "label" : "Documents or items to be produced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", - "ruleType" : "optional" - } ] - }, { - "id" : "381f97b8-b8c8-45b0-a8d6-ac8f58da5493", - "label" : "Committed to prison for refusal to give evidence and produce documents", - "shortCode" : "EVP", - "level" : "O", - "rank" : 47100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "dbb41b1a-a302-485f-96f9-1632c7ce1eff", - "label" : "Documents or items to be produced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", - "ruleType" : "optional" - } ] - }, { - "id" : "c09416e2-327c-11e8-b467-0ed5f89f718b", - "label" : "Committed to prison for refusal to give evidence", - "shortCode" : "EV", - "level" : "O", - "rank" : 47200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", - "ruleType" : "optional" - } ] - }, { - "id" : "8c67b30a-418c-11e8-842f-0ed5f89f718b", - "label" : "Defendant's details changed", - "shortCode" : "DDCH", - "level" : "D", - "rank" : 47300, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4592", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "98138ec8-5dd3-11e8-9c2d-fa7ae01bbebc", - "label" : "Text", - "shortCode" : "TEXT", - "level" : "O", - "rank" : 47400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "b4ac2e46-5dd3-11e8-9c2d-fa7ae01bbebc", - "label" : "Text", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", - "version": "2021-02-25T12:41:15.256Z", - "startDate": "2021-02-26", - "label": "Reserve Terms Lump sum", - "shortCode": "RLSUM", - "level": "D", - "rank": 9000, - "wordGroups": [ - { - "wordGroup": [ - "RLSUM" - ] + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": "Swyddog cyfrifol", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 340, + "financial": "N", + "reference": "responsibleOfficer", + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "wordGroup": [ - "rt", - "ls" - ] + "id": "90d17fe3-8f87-43f2-bd96-a4108e4603ae", + "label": "The reasons for this", + "welshLabel": "Y rhesymau dros hyn", + "resultPromptRule": "optional", + "type": "FIXLOM", + "sequence": 300, + "financial": "N", + "reference": "theReasonsForThis", + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "M", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "wordGroup": [ - "pay", - "reserve", - "terms", - "lump" - ] + "id": "da9c91a6-7090-44f3-8644-b4b184533fc4", + "label": "which is on case number", + "welshLabel": "sydd dan y rhif achos", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 160, + "financial": "N", + "reference": "whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber", + "userGroups": [], + "min": "1", + "max": "20", + "qual": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "wordGroup": [ - "terms", - "lump", - "sum", - "reserve" - ] - } - ], - "prompts": [ - { - "id": "c131cab0-5dd6-11e8-9c2d-fa7ae01bbebc", - "label": "Pay lump sum in full within", - "welshLabel": "Talu cyfandaliad yn llawn o fewn", + "id": "ea957761-0813-4a92-9e7c-b536654325f0", + "label": "Imprisonment reasons", + "welshLabel": "Rhesymau dros garcharu", "resultPromptRule": "mandatory", "type": "FIXL", - "sequence": 100, + "sequence": 200, "financial": "N", - "reference": "LSPW", - "fixedListId": "cd4cc782-5dd6-11e8-9c2d-fa7ae01bbebc", - "userGroups": [ - - ], + "reference": "imprisonmentReasons", + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "M", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "welshLabel": "Llys sy’n Goruchwylio", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 360, + "financial": "N", + "reference": "supervisingCourt", + "userGroups": [], + "min": "1", + "max": "120", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "referenceDataKey": "supervisingCourt", "nameEmail": false, - "associatedWithReferenceData": false + "cacheable": 2, + "associatedWithReferenceData": true } ], - "welshLabel": "Cyfandaliad y Telerau Wrth Gefn", + "welshLabel": "Gorchymyn dedfryd ohiriedig - carcharu", "financial": "N", "unscheduled": false, "adjournment": "N", "category": "F", "urgent": false, - "convicted": "N", + "convicted": "Y", "d20": false, - "resultDefinitionGroup": "Payment terms", + "dvlaCode": "C", + "cjsCode": "1115", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, - "rollUpPrompts": false, + "rollUpPrompts": true, "publishedForNows": false, "publishedAsAPrompt": false, "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "M", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, { - "id" : "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", - "label" : "Reserve Terms Lump sum plus instalments", - "shortCode" : "RLSUMI", - "level" : "C", - "rank" : 47600, - "wordGroups" : [ { - "wordGroup" : [ "pay", "reserve", "terms", "lump", "sum", "instalments" ] - }, { - "wordGroup" : [ "reserve", "terms", "lump", "sum", "instalments" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8e235a65-5ea2-4fff-ba3b-6cdb74195436", - "label" : "Lump sum amount", - "welshLabel" : "Cyfanswm y lwmp swm", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "LSA", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", - "label" : "Instalment amount", - "welshLabel" : "Swm y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "IAMT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b487696e-dfc9-4c89-80d3-337a4319e925", - "label" : "Instalment start date", - "welshLabel" : "Dyddiad cychwyn y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f2a61e80-c13e-4f44-8e91-8ce23e85596b", - "label" : "Payment frequency", - "welshLabel" : "Amlder y taliadau", - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual" : null, - "reference" : "PF", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Lwmp swm a rhandaliadau - Telerau Wrth Gefn", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2236c06f-ad8e-4620-abbe-0ee214fa885c", - "label" : "Count quashed", - "shortCode" : "CQUASH", - "level" : "O", - "rank" : 5400, - "wordGroups" : [ { - "wordGroup" : [ "Count", "quashed" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", - "label" : "Reserve Terms Instalments only", - "shortCode" : "RINSTL", - "level" : "C", - "rank" : 47700, - "wordGroups" : [ { - "wordGroup" : [ "pay", "reserve", "terms", "instalments" ] - }, { - "wordGroup" : [ "reserve", "terms", "instalments" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", - "label" : "Instalment amount", - "welshLabel" : "Swm y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "IAMT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f2a61e80-c13e-4f44-8e91-8ce23e85596b", - "label" : "Payment frequency", - "welshLabel" : "Amlder y taliadau", - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual" : null, - "reference" : "PF", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e091af2e-43d0-495d-b3b0-432010358a45", - "label" : "Instalment start date", - "welshLabel" : "Dyddiad cychwyn y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "ISTD", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rhandaliadau yn unig - Telerau Wrth Gefn", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", - "label" : "Lump sum plus instalments", - "shortCode" : "LUMSI", - "level" : "C", - "rank" : 47800, - "wordGroups" : [ { - "wordGroup" : [ "pay", "lump", "sum", "instalments" ] - }, { - "wordGroup" : [ "lump", "sum", "instalments" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "11ba492a-e2ad-11e8-9f32-f2801f1b9fd1", - "label" : "Lump sum amount", - "welshLabel" : "Cyfanswm y lwmp swm", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "LSA", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", - "label" : "Instalment amount", - "welshLabel" : "Swm y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "IAMT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fb4f761c-29d0-4a8e-a947-3debf281dab0", - "label" : "Payment frequency following lump sum", - "welshLabel" : "Amlder y taliadau yn dilyn lwmp swm", - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual" : null, - "reference" : "PF", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e091af2e-43d0-495d-b3b0-432010358a45", - "label" : "Instalment start date", - "welshLabel" : "Dyddiad cychwyn y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "ISTD", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a9ad5002-ea38-4374-a475-4b352cdfa207", - "label" : "Parent / Guardian to pay", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PARENT_GAURDIAN_TO_PAY", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", - "label" : "Number of days in default", - "welshLabel" : "Nifer y diwrnodau lle erys y ddyled heb ei thalu", - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "DID", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d0f08c9c-e1e5-46eb-b573-f1728bc51414", - "label" : "Payment card required", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PAYMENT_CARD_REQUIRED", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Lwmp swm a rhandaliadau", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", - "label" : "Instalments only", - "shortCode" : "INSTL", - "level" : "C", - "rank" : 47900, - "wordGroups" : [ { - "wordGroup" : [ "pay", "instalments", "only" ] - }, { - "wordGroup" : [ "instalments", "only" ] - }, { - "wordGroup" : [ "INSTL" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", - "label" : "Instalment amount", - "welshLabel" : "Swm y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "IAMT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f2a61e80-c13e-4f44-8e91-8ce23e85596b", - "label" : "Payment frequency", - "welshLabel" : "Amlder y taliadau", - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual" : null, - "reference" : "PF", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e091af2e-43d0-495d-b3b0-432010358a45", - "label" : "Instalment start date", - "welshLabel" : "Dyddiad cychwyn y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "ISTD", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a9ad5002-ea38-4374-a475-4b352cdfa207", - "label" : "Parent / Guardian to pay", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PARENT_GAURDIAN_TO_PAY", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", - "label" : "Number of days in default", - "welshLabel" : "Nifer y diwrnodau lle erys y ddyled heb ei thalu", - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "DID", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d0f08c9c-e1e5-46eb-b573-f1728bc51414", - "label" : "Payment card required", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PAYMENT_CARD_REQUIRED", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rhandaliadau yn unig", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id": "4871697d-6dd1-4da2-8894-707e6b13c361", - "version": "2021-02-25T12:43:06.714Z", - "startDate": "2021-02-26", - "label": "Reserve Terms", - "shortCode": "RT", - "level": "D", - "rank": 8500, - "userGroups": [ - - ], - "welshLabel": "Telerau Wrth Gefn", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "I", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": true, "alwaysPublished": false, "jurisdiction": "B", + "libraCode": "SUSPS", "resultDefinitionRules": [ { - "childResultDefinitionId": "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", - "ruleType": "oneOf" + "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "ruleType": "optional" }, { - "childResultDefinitionId": "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", - "ruleType": "oneOf" + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "mandatory" }, { - "childResultDefinitionId": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", - "ruleType": "oneOf" + "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "859c7729-93bf-4fda-8345-3e56695dddb5", + "ruleType": "optional" } ], - "isAvailableForCourtExtract": false, + "canBeSubjectOfBreach": true, + "canBeSubjectOfVariation": true, + "resultTextTemplate": "Committed to prison for {imprisonmentPeriod}[ {concurrent}][ consecutive to offence {consecutiveToOffenceNumber}][ which is on case number {whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber}] suspended. Reason: {imprisonmentReasons}.[ Reason for custody: {theReasonsForThis}.] [The defendant must comply with the requirements (shown below) within the supervision period.%CRS%] %FRHS% In the event of activation of sentence: {bailRemandDaysToCountTaggedDays} bail remand days to count. %STIMP%", + "dependantResultDefinitionGroup": "Community Requirements", + "isAvailableForCourtExtract": true, "isBooleanResult": false - },{ - "id": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", - "version": "2022-01-10T09:35:43.154Z", - "startDate": "2022-01-11", - "label": "Application made for benefit deductions", - "shortCode": "ABDC", + }, + { + "id": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "version": "2022-12-08T20:00:45.902Z", + "startDate": "2022-12-09", + "label": "Total suspended custodial period", + "shortCode": "STIMP", "level": "D", - "rank": 600, + "rank": 29200, "wordGroups": [ { "wordGroup": [ - "application", - "benefit", - "deductions" + "STIMP" ] }, { "wordGroup": [ - "ABDC" + "SSO", + "suspended", + "custodial", + "imprisonment", + "period", + "Total" ] } ], "prompts": [ { - "id": "91687bb9-d0ca-44a7-ada0-b89b71b89b8e", - "label": "DWP AP number", - "welshLabel": "Rhif AP DWP", + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "financial": "N", + "reference": "totalCustodialPeriod", + "wordGroup": [ + "Years" + ], + "userGroups": [], + "welshDuration": "Flynedd", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "financial": "N", + "reference": "totalCustodialPeriod", + "wordGroup": [ + "Months" + ], + "userGroups": [], + "welshDuration": "Mis", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "financial": "N", + "reference": "totalCustodialPeriod", + "wordGroup": [ + "Weeks" + ], + "userGroups": [], + "welshDuration": "Wythnos", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "financial": "N", + "reference": "totalCustodialPeriod", + "wordGroup": [ + "Days" + ], + "userGroups": [], + "welshDuration": "Niwrnod", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", + "label": "Judge reserves breach proceedings", + "welshLabel": "Barnwr yn neilltuo achos torri amodau", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1600, + "financial": "N", + "reference": "judgeReservesBreachProceedings", + "wordGroup": [ + "reserved" + ], + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 500, + "duration": "Years", + "financial": "N", + "reference": "supervisionPeriod", + "wordGroup": [ + "Years" + ], + "userGroups": [], + "welshDuration": "Flynedd", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 500, + "duration": "Months", + "financial": "N", + "reference": "supervisionPeriod", + "wordGroup": [ + "Months" + ], + "userGroups": [], + "welshDuration": "Mis", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 500, + "duration": "Weeks", + "financial": "N", + "reference": "supervisionPeriod", + "wordGroup": [ + "Weeks" + ], + "userGroups": [], + "welshDuration": "Wythnos", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", "resultPromptRule": "optional", - "type": "TXT", + "type": "INT", + "sequence": 500, + "duration": "Days", + "financial": "N", + "reference": "supervisionPeriod", + "wordGroup": [ + "Days" + ], + "userGroups": [], + "welshDuration": "Niwrnod", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", + "resultPromptRule": "mandatory", + "type": "INT", "sequence": 200, + "duration": "Years", "financial": "N", - "reference": "dWPAPNumber", - "userGroups": [ - "CPS", - "Defence", - "Judiciary", - "NCES", - "Probation", - "Prosecuting Authorities", - "YOTs" + "reference": "suspendedPeriod", + "wordGroup": [ + "Years" ], - "min": "0", - "max": "10", - "courtExtract": "N", + "userGroups": [], + "durationSequence": 2, + "welshDuration": "Flynedd", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "8273d5ba-680e-11e8-adc0-fa7ae01bbebc", - "label": "Reason", - "welshLabel": "Rheswm", - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 100, + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", "financial": "N", - "reference": "reason", - "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", - "userGroups": [ - + "reference": "suspendedPeriod", + "wordGroup": [ + "Months" ], + "userGroups": [], + "durationSequence": 2, + "welshDuration": "Mis", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false - } - ], - "welshLabel": "Cais wedi'i wneud am ddidyniadau o fudd-dal", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "N", - "d20": false, - "cjsCode": "1514", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "M", - "resultDefinitionRules": [ + }, { - "childResultDefinitionId": "4871697d-6dd1-4da2-8894-707e6b13c361", - "ruleType": "mandatory" - } - ], - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, { - "id" : "bdb32555-8d55-4dc1-b4b6-580db5132496", - "label" : "Attachment of earnings order", - "shortCode" : "AEOC", - "level" : "C", - "rank" : 48100, - "wordGroups" : [ { - "wordGroup" : [ "attachment", "earnings", "Order" ] - }, { - "wordGroup" : [ "AEOC" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a289b1bd-06c8-4da3-b117-0bae6017857c", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "485f7d22-718c-4f47-bbd5-f8d934417a03", - "label" : "Employer's name", - "welshLabel" : "Enw eich cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "86854563-b404-4cd4-9c05-50f1e61a0bfe", - "label" : "Employer's address Line 1", - "welshLabel" : "Llinell gyntaf cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerAddress1", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef87b9fe-1d9d-46a2-b094-ce5ba24a9835", - "label" : "Employer's address Line 2", - "welshLabel" : "Ail linell cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerAddress2", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "df1d55f8-29dd-42d2-8f99-cb4d369cb38b", - "label" : "Employer's address Line 3", - "welshLabel" : "Trydedd linell cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerAddress3", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d3d8e5dc-4ced-4d57-bcbb-5de8f91a580a", - "label" : "Employer's address Line 4", - "welshLabel" : "Pedwaredd llinell cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerAddress4", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a812f1c7-96df-4d8d-9684-25e4e227b2e2", - "label" : "Employer's address Line 5", - "welshLabel" : "Pumed llinell cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerAddress5", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4ff32fe8-5508-4b7e-8e6f-b3e79763a9fe", - "label" : "Employer's post code", - "welshLabel" : "Cod post cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerPostCode", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "eb1d0fdc-2e51-4e98-9f6e-ee0daa14c157", - "label" : "Employee reference number", - "welshLabel" : "Cyfeirnod y cyflogai", - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerReferenceNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Gorchymyn Atafaelu Enillion", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1511", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "76d43772-0660-4a33-b5c6-8f8ccaf6b4e3", - "label" : "Costs", - "shortCode" : "FCOST", - "level" : "C", - "rank" : 48200, - "wordGroups" : [ { - "wordGroup" : [ "FCOST" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "db261fd9-c6bb-4e10-b93f-9fd98418f7b0", - "label" : "Amount of costs", - "welshLabel" : "Swm y costau", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOC", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "22ebf965-8a1c-4229-9894-0df7f8117753", - "label" : "Major creditor name", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", - "qual" : null, - "reference" : "CREDNAME", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "043faecf-e97c-4daf-9763-4b755d941b45", - "label" : "Minor creditor title", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "202afd61-e9fb-4bc7-aad6-f0a5799406e2", - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", - "label" : "Minor creditor company name", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", - "label" : "Minor creditor surname", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", - "label" : "Minor creditor initials", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "41576571-5573-498b-a9e9-eee24f7a67fa", - "label" : "Minor creditor forename(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", - "label" : "Minor creditor address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", - "label" : "Minor creditor postcode", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - } ], - "welshLabel" : "Costau", - "isAvailableForCourtExtract" : true, - "financial" : true, - "category" : "F", - "cjsCode" : "3011", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c514dcec-804c-11e8-adc0-fa7ae01bbebc", - "label" : "Adjournment reason: Equivocal plea", - "shortCode" : "EP", - "level" : "O", - "rank" : 48300, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "equivocal", "plea" ] - }, { - "wordGroup" : [ "adjournment", "equivocal" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio: Ple amhendant", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "GC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", - "label" : "Adjournment reason: To attend or to return the plea form sent with the summons", - "shortCode" : "AP", - "level" : "O", - "rank" : 48400, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "return" ] - }, { - "wordGroup" : [ "adjournment", "attend" ] - }, { - "wordGroup" : [ "adjournment", "appear", "proceed", "prove", "Absence" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio: I fynychu neu i ddychwelyd y ffurflen pledio a anfonwyd gyda'r wŷs", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "DM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Next hearing in magistrates' court", - "shortCode" : "NHMC", - "level" : "O", - "rank" : 48500, - "wordGroups" : [ { - "wordGroup" : [ "NHMC" ] - }, { - "wordGroup" : [ "next", "hearing", "magistrates" ] - }, { - "wordGroup" : [ "adjournment", "magistrates" ] - } ], - "userGroups" : [ ], - "resultTextTemplate": "hearing on {HDATE}[ at {timeOfHearing}][ in {HCROOM},] {HCHOUSE~Name}", - "prompts" : [ { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - },{ - "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", - "label": "Booking reference", - "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": true, - "associateToReferenceData": false, - "sequence": 700, - "userGroups": [], - "courtExtract": "N", - "financial": "N", - "jurisdiction": "M", - "min": "1", - "max": "50", - "reference": "bookingReference" - }, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedOrganisationName", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "OrganisationName", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 1", - "resultPromptRule": "optional", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 1", + "resultPromptRule": "mandatory", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEAddress1", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedAddress1", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "AddressLine1", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true - }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 2", + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 2", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEAddress2", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedAddress2", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "AddressLine2", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 3", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 3", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEAddress3", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedAddress3", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "AddressLine3", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 4", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 4", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEAddress4", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedAddress4", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "AddressLine4", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 5", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 5", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEAddress5", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedAddress5", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "AddressLine5", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse post code", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified post code", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEPostCode", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedPostCode", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "PostCode", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "welshLabel": "Ystafell Llys", - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 700, "financial": "N", - "reference": "HCROOM", - "userGroups": [ - ], - "min": "1", - "max": "99", - "courtExtract": "Y", + "reference": "probationteamtobenotifiedEmailAddress1", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", - "hidden": false, - "referenceDataKey": "HCROOM", - "nameEmail": false, + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress1", + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse organisation name", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 2", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEOrganisationName", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedEmailAddress2", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", - "hidden": false, + "hidden": true, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "OrganisationName", - "nameEmail": false, + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress2", + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Hours", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Minutes", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", - "label" : "Date of hearig", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HDATE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dfac671c-5b85-42a1-bb66-9aeee388a08d", - "label" : "Time of hearing", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTIME", - "courtExtract" : "Y", - "durationSequence" : null - },{ - "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", - "label": "Time of hearing", + "id": "0ccd9da5-d611-4f9e-92ff-02375be8bb11", + "label": "Total sentence consecutive to", + "welshLabel": "Y ddedfryd gyfan yn dilyn y", "resultPromptRule": "optional", - "type": "TIME", - "sequence": 200, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "Y", + "type": "TXT", + "sequence": 300, "financial": "N", + "reference": "totalSentenceConsecutiveTo", + "userGroups": [], + "min": "1", + "max": "150", + "courtExtract": "Y", "jurisdiction": "B", - "reference": "timeOfHearing" - }, - { - "id" : "5f507153-6dc9-4ec0-94db-c821eff333f1", - "label" : "Courtroom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HCROOM", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "66868c04-72c4-46d9-a4fc-860a82107475", - "label" : "Courthouse name", - "welshLabel" : "Enw’r adeilad llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HCHOUSE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null - }, - { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "sequence":15, - "mandatory":false, - "userGroups":[ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "reference":"totalCustodialPeriod", - "type":"TXT", - "welshLabel":"TBD" - }, - { - "id":"d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label":"End Date", - "mandatory":false, - "type":"DATE", - "sequence":16, - "userGroups":[ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "reference":"endDate", - "welshLabel":"TBD" - }, - { - "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", - "label": "First review date", - "reference": "firstReviewDate", - "mandatory":false, - "type":"DATE", - "sequence":17, - "userGroups":[ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "welshLabel":"TBD" - }, - { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null - }, - { - "id": "f622f008-f8e7-4f34-a7df-df85a7ed4d47", - "label": "First review time", - "reference": "firstReviewTime", - "mandatory":false, - "type":"TIME", - "sequence":18, - "userGroups":[ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "welshLabel":"TBD" - } - ], - "welshLabel" : "Ni wnaeth y Llys barhau â’r treial yn absenoldeb y diffynnydd", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Next hearing", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d278650c-e429-11e8-9f32-f2801f1b9fd1", - "label" : "Adjournment", - "shortCode" : "A", - "level" : "O", - "rank" : 48600, - "wordGroups" : [ { - "wordGroup" : [ "A" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label" : "Is the defendant excused attendance?", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantExcusedAttendance", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Gohiriad", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4506", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5ec54bfb-cde0-4ad2-bf87-d266e54fe072", - "label" : "Indictment to remain on file", - "shortCode" : "IREMFILE", - "level" : "O", - "rank" : 5500, - "wordGroups" : [ { - "wordGroup" : [ "indictment", "remain", "file" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "2008", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2852b770-a7ad-11e8-98d0-529269fb1459", - "label" : "Forfeiture and destruction", - "shortCode" : "FDEST", - "level" : "O", - "rank" : 7700, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "destruction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "13efdd20-a7ae-11e8-98d0-529269fb1459", - "label" : "Property to be forfeited and destroyed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7cca9a0e-b11f-4863-9fec-45b9b13f946b", - "label" : "Forfeiture and destruction ordered under", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "26d4c112-a7ae-11e8-98d0-529269fb1459", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4a30821a-a7b6-11e8-98d0-529269fb1459", - "label" : "Responsible for destroying property", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ea26f773-0a91-4526-b4ad-84d07b5bf940", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3135", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", - "version": "2021-02-25T12:41:20.415Z", - "startDate": "2021-02-26", - "label": "Pay by date", - "shortCode": "PDATE", - "level": "D", - "rank": 76700, - "wordGroups": [ - { - "wordGroup": [ - "PDATE" - ] + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "wordGroup": [ - "PBD", - "pay", - "full", - "date" - ] - } - ], - "prompts": [ - { - "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", - "label": "Parent / Guardian to pay", - "welshLabel": "Rhiant / Gwarcheidwad i dalu", + "id": "3e7dab34-bb9d-46df-9a45-139113ee0b09", + "label": "which was imposed by", + "welshLabel": "a orfodwyd gan", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, + "type": "FIXL", + "sequence": 400, "financial": "N", - "reference": "PARENT_GAURDIAN_TO_PAY", - "userGroups": [ - - ], + "reference": "whichWasImpBy", + "userGroups": [], "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "referenceDataKey": "whichWasImpBy", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "ee7d253a-c629-11e8-a355-529269fb1459", - "label": "Date to pay in full by", - "welshLabel": "Dyddiad terfyn ar gyfer talu'r swm llawn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, + "id": "21549bc3-5be9-4a91-abc7-57d8ed1b1676", + "label": "Reason for sentence without PSR", + "welshLabel": "Rheswm dros ddedfryd heb PSR", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, "financial": "N", - "reference": "PBD", - "userGroups": [ - - ], + "reference": "reasonForSentenceWithoutPSR", + "userGroups": [], + "min": "1", + "max": "1000", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -35956,6793 +65250,66 @@ "associatedWithReferenceData": false }, { - "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", - "label": "Number of days in default", - "welshLabel": "Nifer y diwrnodau y mae'r ddyled heb ei thalu", + "id": "850439de-16ca-4282-b0f1-0ce6bf418f4e", + "label": "The custodial sentence has been suspended because", + "welshLabel": "Mae'r ddedfryd o garchar wedi'i gohirio oherwydd", "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, + "type": "TXT", + "sequence": 600, "financial": "N", - "reference": "DID", - "userGroups": [ - - ], + "reference": "theCustodialSentenceHasBeenSuspendedBecause", + "userGroups": [], "min": "1", - "max": "999", + "max": "500", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, - "associatedWithReferenceData": false - } - ], - "welshLabel": "Dyddiad terfyn ar gyfer talu", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Payment terms", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "M", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, { - "id" : "de946ddc-ad77-44b1-8480-8bbc251cdcfb", - "label" : "Court house detention until court rises", - "shortCode" : "FIDICI", - "level" : "O", - "rank" : 48800, - "wordGroups" : [ { - "wordGroup" : [ "court", "rises", "until", "detention" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9be231c5-e4e3-4294-872e-e0ad6c9a39a4", - "label" : "Type of detention", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "5769e88c-82c6-457d-9a5e-652a96ec105c", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c92fdcfc-ac7d-4692-a475-de88467f6fcf", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label" : "Total amount enforced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "TOTENF", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5c023b16-e79c-4eb5-9673-e23accbeb35b", - "label" : "Court house detention until time", - "shortCode" : "FIDICTI", - "level" : "O", - "rank" : 48900, - "wordGroups" : [ { - "wordGroup" : [ "court", "Time", "until", "detention" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0fd18b3d-d55e-4e6c-adfe-e45ad2241e5e", - "label" : "Time of release", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label" : "Total amount enforced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "TOTENF", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0e390ae0-8f3c-4735-8c0d-c16e8962537a", - "label" : "Detention in police station", - "shortCode" : "FIDIPI", - "level" : "O", - "rank" : 49000, - "wordGroups" : [ { - "wordGroup" : [ "detention", "police", "station" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a0e5f5aa-ce4d-41fa-94ba-c2fb293659b4", - "label" : "Time of release (by 8pm)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6d2296be-3631-4a13-bfef-6be1d950cf20", - "label" : "Police Force providing police station to detain defendant", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label" : "Total amount enforced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "TOTENF", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "61c246d8-f771-4420-9e02-30f34c0305b1", - "label" : "Community order amended - supervising court or end date", - "shortCode" : "COA", - "level" : "O", - "rank" : 49100, - "wordGroups" : [ { - "wordGroup" : [ "Community", "Order", "amended" ] - }, { - "wordGroup" : [ "supervising", "court" ] - }, { - "wordGroup" : [ "end", "date" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0eba630e-a486-439f-8d76-b49b1363067c", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5f1f9ac-f624-4d44-9ad0-7c1e586eee3a", - "label" : "Original end date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8a4af2f8-ee31-481e-847d-eb295896b975", - "label" : "New supervising court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8bad6b87-9ad5-418f-b3a3-90386d7c2769", - "label" : "Compliance date extended. All requiremets to be completed by", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1032", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4a026ff3-e1aa-407e-aafa-015723c1dbd0", - "label" : "Community order amended", - "shortCode" : "COV", - "level" : "O", - "rank" : 49300, - "wordGroups" : [ { - "wordGroup" : [ "Community", "Order", "amend" ] - }, { - "wordGroup" : [ "Requirement", "cancelled" ] - }, { - "wordGroup" : [ "new", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0eba630e-a486-439f-8d76-b49b1363067c", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47f34fca-6355-4612-881a-07a2121b86ba", - "label" : "Supervising court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b12bc7b-dfc7-41b7-9c4e-8c6b53b53274", - "label" : "Community requirements cancelled", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "faef913f-70ae-44cf-81dd-356c6dc41f0c", - "label" : "The court made new community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", - "label" : "The court amended a community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5e438d5-a7de-4be8-9a7d-3e07b8584f6a", - "label" : "Original community requirements to continue", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "361cee65-0550-4c9a-9fbd-3a234e9431f1", - "label" : "The end date of the order has been changed and the requirements must be complied with by", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06356516-5b1a-4036-afc5-2bb44a446a1a", - "label" : "The end date of the order has not been changed and the requirements must be complied with by", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "27bf0204-a185-4e82-8c34-7317287513c8", - "label" : "Responsible officer for the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", - "label" : "Reason for change", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40d90a02-53a9-43ef-a96f-da9ad1b476b7", - "label" : "The court made a new or varied an electronic monitoring requirement", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "92566757-ef79-4804-bced-c63ebb0937e7", - "label" : "Electronic monitoring contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40f05056-4c54-4251-a7a1-666197409f20", - "label" : "This is the first notification to contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c53e274f-ecbf-476e-971c-103a1d5a72d7", - "label" : "This is a variation of an electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1933ca78-459c-47f0-b4a9-1a4507e19af6", - "label" : "This is an additional electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6be2c968-d9b8-40fe-ba4d-f8d3c06ea129", - "label" : "This is a continuation of an electronic monitoring reequirement", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fb1a3668-4675-4541-ad61-7ca3c24ca0cc", - "label" : "Conviction quashed", - "shortCode" : "QC", - "level" : "O", - "rank" : 50000, - "wordGroups" : [ { - "wordGroup" : [ "conviction", "quashed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "80dd4486-fa86-41f0-b09b-bad84b55f61c", - "label" : "Date appeal heard", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "CADATE", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "55f15ecf-ea80-40f4-848d-29e7b8d73ae2", - "label" : "Sentence varied", - "shortCode" : "SV", - "level" : "O", - "rank" : 50100, - "wordGroups" : [ { - "wordGroup" : [ "sentence", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "80dd4486-fa86-41f0-b09b-bad84b55f61c", - "label" : "Date appeal heard", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "CADATE", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "02c8aef6-601a-46e8-bbe5-d614e0da764a", - "label" : "Special measures direction: Witness to give evidence by means of a live link", - "shortCode" : "SMLL", - "level" : "C", - "rank" : 50300, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "live", "link" ] - }, { - "wordGroup" : [ "SMD", "live", "link" ] - }, { - "wordGroup" : [ "SMD", "witness" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2f08896a-07b0-45b9-b7da-f919b8520480", - "label" : "Indictment quashed", - "shortCode" : "IQUASH", - "level" : "O", - "rank" : 5600, - "wordGroups" : [ { - "wordGroup" : [ "indictment", "quashed" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Special measures direction: A video recording be admitted of the evidence in chief of the interview", - "shortCode" : "SMVR", - "level" : "C", - "rank" : 50400, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "video" ] - }, { - "wordGroup" : [ "SMD", "video" ] - }, { - "wordGroup" : [ "SMD", "in", "chief" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", - "label" : "In respect of witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "inRespectOfWitnessName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "79b64864-8c39-4724-be94-e2db853db393", - "label" : "Date of interview", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef04068f-86d0-42a8-8fcf-ca12f340d57d", - "label" : "The whole of the video recording disclosed to be admitted", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c472c5b7-9e50-4390-ae59-78d6ca607231", - "label" : "Only the following specified part(s) of the video interview to be admitted, namely", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5c2c471c-08a0-46e5-8368-80d819fe4d19", - "label" : "Cross examination of the witness and re-examination of the witness to be recorded by means of a video recording and such recording to be admitted in accordance with section 28 of the Youth Justice and Criminal Evidence Act 1999", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b172d954-5aca-447b-b19e-2c836053b0af", - "label" : "Special measures direction: The recording must be made in the presence of specified person(s)", - "shortCode" : "SMVS", - "level" : "C", - "rank" : 50500, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "recording", "presence" ] - }, { - "wordGroup" : [ "SMD", "recording", "presence" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ef4d6fb2-d61c-4732-9e2c-b1c726be0f93", - "label" : "Name(s)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "41a18cc7-3106-4e84-8f66-ad52fe6dee75", - "label" : "Special measures direction: A video recording is not to be admitted because the requirements for its admission have not been complied with", - "shortCode" : "SMVN", - "level" : "C", - "rank" : 50600, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "video", "recording" ] - }, { - "wordGroup" : [ "SMD", "video", "recording" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", - "label" : "In respect of witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "inRespectOfWitnessName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "79b64864-8c39-4724-be94-e2db853db393", - "label" : "Date of interview", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ee74631f-c144-4a25-8a93-0253b98a7642", - "label" : "Special measures direction: Witness be prevented from seeing the defendant by means of a screen", - "shortCode" : "SMDW", - "level" : "C", - "rank" : 50700, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "screen" ] - }, { - "wordGroup" : [ "SMD", "screen" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "702b365f-dde6-4543-8fb5-1324c6a84ec4", - "label" : "Special measures direction: Witness be prevented from seeing the defendant by specified means", - "shortCode" : "SMSM", - "level" : "C", - "rank" : 50800, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "witness", "prevented" ] - }, { - "wordGroup" : [ "SMD", "witness", "prevented" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "62abea0f-310d-449a-bc9b-632796dec2d6", - "label" : "Specified means", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", - "label" : "Special measures direction: The examination is to be conducted through an intermediary", - "shortCode" : "SMI", - "level" : "C", - "rank" : 50900, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "intermediary" ] - }, { - "wordGroup" : [ "SMD", "intermediary" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", - "label" : "In respect of witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "inRespectOfWitnessName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "eef5d23c-b75e-4601-9196-02d4ec70bb27", - "label" : "Name of intermediary", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", - "label" : "Special measures direction: Witness to give evidence in private", - "shortCode" : "SMP", - "level" : "C", - "rank" : 51000, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "witness", "private" ] - }, { - "wordGroup" : [ "SMD", "witness", "private" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8683b918-c2bd-49da-bc0a-844659e097e2", - "label" : "This direction does not apply to one member of the press, namely", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "52218899-8f26-45cd-ae30-aeff5c189261", - "label" : "Special measures direction: Wigs and gowns shall not be worn for the duration of the evidence of a specified witness", - "shortCode" : "SMWG", - "level" : "C", - "rank" : 51100, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "wigs", "gowns" ] - }, { - "wordGroup" : [ "SMD", "wigs", "gowns" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "633d192a-cc90-484e-aa1d-318816b7d44a", - "label" : "Special measures direction: The accused \"in person\" shall not be permitted to cross-examine a specified witness", - "shortCode" : "SMIP", - "level" : "C", - "rank" : 51200, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "in", "person", "cross", "examine" ] - }, { - "wordGroup" : [ "SMD", "in", "person", "cross", "examine" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca43ea08-3a2b-49cf-bb7f-ac350cc519d6", - "label" : "The court appoints a specified person for the purpose of cross examination of the witness, namely", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "67a91dc8-f4f9-4f80-b644-e219326045cc", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Special measures direction: Witness to be provided with an aid to commumication", - "shortCode" : "SMAC", - "level" : "C", - "rank" : 51300, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "aid" ] - }, { - "wordGroup" : [ "SMD", "aid" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f539367f-b941-4873-9567-a235ffb81d85", - "label" : "Device", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "device", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4850390f-13b3-4aa0-bae5-2dd0427b97eb", - "label" : "Discontinued", - "shortCode" : "disc", - "level" : "O", - "rank" : 5700, - "wordGroups" : [ { - "wordGroup" : [ "disc" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2053", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", - "label" : "The court directs that evidence relating to the bad character of the defendant be admitted in the proceedings", - "shortCode" : "BCD", - "level" : "C", - "rank" : 51500, - "wordGroups" : [ { - "wordGroup" : [ "bad", "character", "direction", "admitted", "evidence" ] - }, { - "wordGroup" : [ "BCD", "admitted" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bad character", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fe77f387-ee64-4cef-8e95-c0776b9799e7", - "label" : "The court gives leave for evidence of the bad character of a person to be admitted in the proceedings", - "shortCode" : "BCO", - "level" : "C", - "rank" : 51600, - "wordGroups" : [ { - "wordGroup" : [ "bad", "character", "direction", "leave" ] - }, { - "wordGroup" : [ "BCD", "leave" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6c27cf1e-8f99-4344-b783-62f527882256", - "label" : "Name of person", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bad character", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "27bbe7cb-5884-4b68-9c1e-a3373cce6ce6", - "label" : "Suspended sentence order of imprisonment amended - supervising court or operational period or supervision period", - "shortCode" : "SUSPA", - "level" : "O", - "rank" : 51700, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "sentence", "amended", "supervising" ] - }, { - "wordGroup" : [ "SUSPA" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label" : "Period of imprisonment previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label" : "Period of imprisonment previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label" : "Period of imprisonment previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label" : "Period of imprisonment previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label" : "Original operational period (time suspended for)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label" : "Original operational period (time suspended for)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label" : "The operational period (period of suspension) is extended to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label" : "The operational period (period of suspension) is extended to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", - "label" : "Specify court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c6d69d3-c5c3-41fd-b078-32439f516f0b", - "label" : "Specify date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", - "label" : "All community requirements are cancelled", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "27874127-6eee-4dac-b664-bf1796932b59", - "label" : "New supervision period (in full)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8a4af2f8-ee31-481e-847d-eb295896b975", - "label" : "New supervising court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1508", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "280a5606-c70a-432f-bdfe-a9dfd49f18c5", - "label" : "Suspended sentence order of imprisonment amended", - "shortCode" : "SUSPV", - "level" : "O", - "rank" : 51800, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "sentence", "amended" ] - }, { - "wordGroup" : [ "SUSPV" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", - "label" : "Original total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", - "label" : "Original total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", - "label" : "Original total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", - "label" : "Original total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0eba630e-a486-439f-8d76-b49b1363067c", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2a955180-259b-4492-9567-eec3c5ee6c27", - "label" : "Date the original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47f34fca-6355-4612-881a-07a2121b86ba", - "label" : "Supervising court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", - "label" : "The original term of imprisonment is consecutive to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c2f5704c-66f6-4323-a893-d4a212f74bc7", - "label" : "Community requirements cancelled", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "faef913f-70ae-44cf-81dd-356c6dc41f0c", - "label" : "The court made new community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", - "label" : "The court amended a community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02e44066-4850-4a74-8db6-1158f8324eb1", - "label" : "Original community requirements to continue", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "27bf0204-a185-4e82-8c34-7317287513c8", - "label" : "Responsible officer for the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", - "label" : "Reason for change", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40d90a02-53a9-43ef-a96f-da9ad1b476b7", - "label" : "The court made a new or varied an electronic monitoring requirement", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "92566757-ef79-4804-bced-c63ebb0937e7", - "label" : "Electronic monitoring contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40f05056-4c54-4251-a7a1-666197409f20", - "label" : "This is the first notification to contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c53e274f-ecbf-476e-971c-103a1d5a72d7", - "label" : "This is a variation of an electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1933ca78-459c-47f0-b4a9-1a4507e19af6", - "label" : "This is an additional electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", - "label" : "This is a continuation of an electronic monitoring requirement", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1508", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fe2670ca-8fe9-4558-86a8-c611a18fd866", - "label" : "Witness summons", - "shortCode" : "SUMWITN", - "level" : "O", - "rank" : 51900, - "wordGroups" : [ { - "wordGroup" : [ "witness", "summons" ] - }, { - "wordGroup" : [ "SUMWITN" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a528bbfd-54b8-45d6-bad0-26a3a95eb274", - "label" : "Date of hearing", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", - "label" : "Time of hearing", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e498ec52-0adf-41cf-89e2-40955a418393", - "label" : "Courthouse name", - "welshLabel" : "Enw’r adeilad llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4b7bc1cf-e157-4f2f-9500-04dfa5504ff1", - "label" : "Courthouse address", - "welshLabel" : "Cyfeiriad y llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b0a4f0ea-2767-4327-8a49-6949bdf90791", - "label" : "Witness date of birth", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fff16e2a-b141-4659-94f6-edcd9581f127", - "label" : "Parent of witness name and address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0bb65e58-5d55-4f1a-8fb1-5d676b9f4cc3", - "label" : "Parent of witness date of birth", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a85ecb60-5fb4-4a5d-95c4-771de5220f39", - "label" : "Witness is required to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "854089e2-e9e1-45e7-bcf7-44de22bcc81d", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "00dbdd03-5c78-4a15-9787-f3843b90dade", - "label" : "The specified documents or things are", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ed6c7388-9103-41c2-af4f-3fe69d8582e8", - "label" : "Hearsay direction", - "shortCode" : "HD", - "level" : "C", - "rank" : 52000, - "wordGroups" : [ { - "wordGroup" : [ "hearsay", "direction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2b04ace9-583f-4d2a-ae84-c3c377070f3c", - "label" : "Hearsay direction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c5b29640-fb51-4483-a1a9-845b75c7e8a4", - "label" : "Suspended sentence order of detention amended - supervising court or operational period or supervision period", - "shortCode" : "SUSPAD", - "level" : "O", - "rank" : 52100, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "sentence", "amend", "supervising" ] - }, { - "wordGroup" : [ "SUSPAD" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label" : "Period of detention previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label" : "Period of detention previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label" : "Period of detention previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label" : "Period of detention previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label" : "Original operational period (time suspended for)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label" : "Original operational period (time suspended for)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label" : "The operational period (period of suspension) is extended to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label" : "The operational period (period of suspension) is extended to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", - "label" : "Specify court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c6d69d3-c5c3-41fd-b078-32439f516f0b", - "label" : "Specify date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", - "label" : "All community requirements are cancelled", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "27874127-6eee-4dac-b664-bf1796932b59", - "label" : "New supervision period (in full)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8a4af2f8-ee31-481e-847d-eb295896b975", - "label" : "New supervising court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "726c4beb-9ead-4b6b-bed9-b761b5b43553", - "label" : "Suspended sentence order of detention amended", - "shortCode" : "SUSPVD", - "level" : "O", - "rank" : 52200, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "sentence", "amend" ] - }, { - "wordGroup" : [ "SUSPVD" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", - "label" : "Original total detention period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", - "label" : "Original total detention period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", - "label" : "Original total detention period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", - "label" : "Original total detention period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0eba630e-a486-439f-8d76-b49b1363067c", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2a955180-259b-4492-9567-eec3c5ee6c27", - "label" : "Date the original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47f34fca-6355-4612-881a-07a2121b86ba", - "label" : "Supervising court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", - "label" : "The original term of imprisonment is consecutive to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "12bca5a7-6dce-472f-b424-9d9e4a9e973d", - "label" : "Community requirements cancelled", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "faef913f-70ae-44cf-81dd-356c6dc41f0c", - "label" : "The court made new community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", - "label" : "The court amended a community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02e44066-4850-4a74-8db6-1158f8324eb1", - "label" : "Original community requirements to continue", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "27bf0204-a185-4e82-8c34-7317287513c8", - "label" : "Responsible officer for the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", - "label" : "Reason for change", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40d90a02-53a9-43ef-a96f-da9ad1b476b7", - "label" : "The court made a new or varied an electronic monitoring requirement", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "92566757-ef79-4804-bced-c63ebb0937e7", - "label" : "Electronic monitoring contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40f05056-4c54-4251-a7a1-666197409f20", - "label" : "This is the first notification to contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c53e274f-ecbf-476e-971c-103a1d5a72d7", - "label" : "This is a variation of an electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1933ca78-459c-47f0-b4a9-1a4507e19af6", - "label" : "This is an additional electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", - "label" : "This is a continuation of an electronic monitoring requirement", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1508", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3d2c05b3-fcd6-49c2-b5a9-52855be7f90a", - "label" : "Summons on referral to other court", - "shortCode" : "SUMRTO", - "level" : "O", - "rank" : 52300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "a528bbfd-54b8-45d6-bad0-26a3a95eb274", - "label" : "Date of hearing", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", - "label" : "Time of hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5699b34-f32f-466e-b7d8-40b4173df154", - "label" : "Magistrates' court", - "welshLabel" : "Llys Ynadon", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dbbb47c9-2202-4913-9a0d-db0a048bfd5f", - "label" : "Reason for referring to court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c20d50a5-d3f5-4ff7-9366-f0a27b0c95ac", - "label" : "Case re-opened", - "shortCode" : "ROPEN", - "level" : "C", - "rank" : 52400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "dcc576fb-f2ad-486f-b907-43f9db32ae40", - "label" : "Date re-opened", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b40c7eb-2095-4570-b56e-5ebbfe88e49a", - "label" : "Libra account number", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "79aa0f1a-a79b-4923-afbf-29ee3a911ef6", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Total custodial period", - "shortCode" : "TIMP", - "level" : "D", - "rank" : 5800, - "resultWording": "section 13(c)", - "userGroups" : [ ], - "prompts" : [ { - "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label" : "Total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalImprisonmentPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label" : "Total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalImprisonmentPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label" : "Total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalImprisonmentPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label" : "Total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalImprisonmentPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3a0bf7f8-674f-4b5f-998d-aae0e2b2842e", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : "sentencedInAbsence", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "19d9d7b4-a55c-4f52-8cca-edf9c63e98e5", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalSentenceConsequenceToWhat", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9dbe839c-3804-4c47-bf9e-5be6f9b9b3bb", - "label" : "Total imprisonment period is life", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalImprisonmentPeriodInLife", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "21549bc3-5be9-4a91-abc7-57d8ed1b1676", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "reasonForSentenceWithoutPSR", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "266a2bbe-b6b5-4b24-830d-70ceff3e2cac", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "probationPeriodTobeNotified", - "isAvailableForCourtExtract" : false, - "durationSequence" : null - }, { - "id" : "52c9c1f5-2a00-45ee-bca3-024d43626773", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "600edfc3-a584-4f9f-a52e-5bb8a99646c1", - "label" : "Refer for a full court hearing", - "shortCode" : "SUMRCC", - "level" : "O", - "rank" : 52500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "bca4e07c-17e0-48f1-84f4-7b6ff8bab5e2", - "label" : "Reasons for referring to court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "a47a312a-79fe-4f3e-84ab-63a39f52bc75", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f7784e82-20b5-4d2c-b174-6fd57ebf8d7c", - "label" : "Adjourn to a later SJP hearing session", - "shortCode" : "ADJOURNSJP", - "level" : "O", - "rank" : 52600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "185e6a04-8b44-430d-8073-d8d12f69733a", - "label" : "Adjourn to date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0149ab92-5466-11e8-9c2d-fa7ae01bbebc", - "label" : "Referred for resulting in another SJP session", - "shortCode" : "SJPR", - "level" : "C", - "rank" : 52700, - "wordGroups" : [ { - "wordGroup" : [ "SJPR" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1e96d1a9-9618-4ddd-a925-ca6a0ef86018", - "label" : "Transfer of Fine Order to a Court in England or Wales", - "shortCode" : "TFOUT", - "level" : "D", - "rank" : 52800, - "wordGroups" : [ { - "wordGroup" : [ "transfer", "fine" ] - }, { - "wordGroup" : [ "TFOUT" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5f589095-2986-4d2b-98fa-30ab00f675d4", - "label" : "Court to which fine is transferred", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f31eadd5-41d4-4cff-98d8-effd946e7a09", - "label" : "Full bail argument", - "shortCode" : "FBA", - "level" : "O", - "rank" : 52900, - "wordGroups" : [ { - "wordGroup" : [ "full", "argument" ] - }, { - "wordGroup" : [ "FBA" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "78c79d11-a1ba-4c34-89d2-5b25977af957", - "label" : "The court certifies that full argument was heard on", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "474e4dc5-6751-4e31-849f-f03952b5597a", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8d29667b-15df-48af-9e5c-39b740b99d70", - "label" : "New considerations were placed before the court and this change in circumstances was found", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4532", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4d2fc4cf-970e-49db-83af-2756e43e106e", - "label" : "Unable to proceed with case on the Common Platform, entered into Libra", - "shortCode" : "UNABLE", - "level" : "C", - "rank" : 49200, - "wordGroups" : [ { - "wordGroup" : [ "UNABLE" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d3139b79-696b-4cb7-a39d-7f06fcc24f4a", - "label" : "Discharged", - "shortCode" : "DISCH", - "level" : "O", - "rank" : 49400, - "wordGroups" : [ { - "wordGroup" : [ "not", "guilty", "discharged" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "19463792-2c34-4c4e-bbbe-fbac0955a314", - "label" : "Anti-social behaviour injunction", - "shortCode" : "ABI", - "level" : "O", - "rank" : 49500, - "wordGroups" : [ { - "wordGroup" : [ "anti", "Social", "behaviour", "injunction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a13a81c9-113b-4156-8bf5-77280d5107b7", - "label" : "Duration period for anti-social behaviour injunction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7f15a291-0e73-4055-8b6c-067f628646da", - "label" : "Power of arrest attached to the following provisions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1c033a31-1fdd-400d-8277-cf520ef81de6", - "label" : "Power of arrest period ", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ecac709-0dbe-45a7-ac04-cca8454377cc", - "label" : "Requirement supervisor for the injunction requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "33408f3d-885c-43f4-a4a8-76e37906569f", - "label" : "Police force name (for power of arrest)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2da00d65-6cdc-4149-9d51-df6cb43d9729", - "label" : "Police force address (for power of arrest) line 1", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ceb435f2-3d72-4b5a-929a-ce976881ace7", - "label" : "Police force address (for power of arrest) line 2", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "aa72f5cb-221a-42ce-b1f3-81f110be0e12", - "label" : "Police force address (for power of arrest) line 3", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6516de6a-2998-4ae5-9833-ea37b408558f", - "label" : "Police force address (for power of arrest) line 4", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6dacab3d-a730-4020-aed3-15d442fbdff5", - "label" : "Police force address (for power of arrest) line 5", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4a13b230-a819-4955-87d8-fe1f1318abc1", - "label" : "Anti-social behaviour injunction requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "18266b45-aae2-43b5-8a0b-e647df78e61a", - "label" : "Anti-social behaviour injunction prohibitions", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3516", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "32cc8e43-1d98-4fc9-a11a-265ea5af0715", - "label" : "Credit for time", - "shortCode" : "CREFT", - "level" : "D", - "rank" : 5900, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "3f4f9b75-418f-46ed-a311-230a6dbca6cb", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "0683d44b-c84f-49e7-b449-242bb6a9c60e", - "label" : "Forfeiture and deprivation", - "shortCode" : "FORAD", - "level" : "O", - "rank" : 7600, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "2852b770-a7ad-11e8-98d0-529269fb1459", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "32177be4-0a1f-4889-9ca2-c729f49d7d85", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "290435b9-cce7-43be-b340-1c7db48c5413", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "e7ef0248-fe71-4733-8749-ff0c23a04f95", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "19026543-7d59-467b-9649-35ddf89b30cc", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7610d8a1-07fe-4e69-812d-22f821d3f334", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "6532b8f4-7794-420a-9f30-8aced3e41517", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "661bdce3-ce01-4cb6-a152-6424540bbbce", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "label" : "Adjournment reasons", - "shortCode" : "ADJR", - "level" : "O", - "rank" : 33100, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio:", - "isAvailableForCourtExtract" : false, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : true, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "c93c5a18-838a-41d3-a017-c203b37f5655", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "4958de15-8a0a-4d2b-9f7e-56e037cf03da", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c2eca548-4511-4023-bbe6-50fe0b679b4a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9fd6a4ef-1055-4e54-b035-f1130a524388", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c514dcec-804c-11e8-adc0-fa7ae01bbebc", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", - "ruleType" : "atleastOneOf" - } ] - }, { - "id": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", - "version": "2022-01-10T09:35:48.476Z", - "startDate": "2022-01-11", - "label": "Payment terms", - "shortCode": "PAYT", - "level": "D", - "rank": 300, - "wordGroups": [ - { - "wordGroup": [ - "PAYT" - ] - }, - { - "wordGroup": [ - "terms", - "payment" - ] + "associatedWithReferenceData": false } ], - "userGroups": [ - - ], - "welshLabel": "Telerau talu", + "welshLabel": "Cyfanswm y cyfnod gohiriedig yn y ddalfa", "financial": "N", "unscheduled": false, "adjournment": "N", "category": "A", "urgent": false, - "convicted": "N", + "convicted": "Y", "d20": false, "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, + "rollUpPrompts": true, + "publishedForNows": true, "publishedAsAPrompt": false, - "excludedFromResults": true, + "excludedFromResults": false, "alwaysPublished": false, "jurisdiction": "B", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "a0b426c1-74b8-43cd-9885-f0f31625352e", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", - "ruleType": "oneOf" - } - ], "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, + "resultTextTemplate": "Total custodial period {totalCustodialPeriod} suspended for {suspendedPeriod} [Total sentence consecutive to {totalSentenceConsecutiveTo}][ which was imposed by {whichWasImpBy}]. [Supervision period {supervisionPeriod}.][ The custodial sentence has been suspended because {theCustodialSentenceHasBeenSuspendedBecause}.][ Reason for sentence without PSR {reasonForSentenceWithoutPSR}.]", "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, { - "id" : "874911d0-acf2-4b6f-bcca-cacbb6bb2862", - "label" : "Pre-release bail conditions", - "shortCode" : "PREBC", - "level" : "O", - "rank" : 26900, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : false, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : true, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "4ddda002-526e-4d70-9df7-eeaae75cfab7", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d85486c4-06f1-4813-859b-5495ca578bde", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bb0a2862-a565-46aa-96ed-1e6f972949d0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1ebd5ca1-866d-43a0-ad9a-464e8a228235", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "279fd36e-17c5-42b2-b56b-a6ab27b9b592", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "e5864697-640a-47be-9289-9e6205bbe579", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "4558f9b2-47f8-4430-a0f8-684df5d55761", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b9581c12-81c9-434d-8851-03d9638547fa", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b922e6bd-70a4-4b28-b583-165179af6162", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c51e3522-5363-4af0-b5af-97a5f9eb5462", - "ruleType" : "atleastOneOf" - } ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "jurisdiction": "B", + "isBooleanResult": false, + "resultDefinitionGroup": "Community Requirements" + }, + { + "id": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "version": "2022-07-07T11:34:43.558Z", + "startDate": "2022-07-08", + "label": "Community requirements", + "shortCode": "CRS", + "level": "O", + "rank": 101200, "userGroups": [], - "resultTextTemplate": "%AllChildText%", - "terminatesOffenceProceedings": false - }, { - "id" : "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Bail conditions", - "shortCode" : "BAIC", - "level" : "O", - "rank" : 400, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : false, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : true, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "525c4660-9a0b-4a86-80fc-0efce539d6a5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "e073f3ba-2585-4c0d-8c31-e51a1662d143", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1aa6a828-fedb-43bd-89e8-bc74586d5e85", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "136725da-5b0a-43d3-adac-54f916bcf2bb", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "6889288e-5e4a-4523-be2c-cc993a00af29", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "0649851f-01f8-48fb-928d-6fe100042b2a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "03edddce-c188-4b38-9832-988d9d1ee802", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "5c02ff4c-6a33-4089-8c9e-f120a688b018", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d45c8150-3095-4cb3-a55e-b4fd094af560", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "922386e1-bdc2-403e-8902-af1da14e1fd8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d34b643e-74d5-4288-a4b9-bce14d0069d5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "fb9b273e-06c3-4a4a-940c-3c053c559abe", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "481547e6-9099-475e-8028-2bce2c52ff5f", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "dfa19118-e944-43f4-93b2-2ed49df5553f", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c1d490ed-1754-43b8-a485-fdab1a25f8cb", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "90146942-b1b9-4a2e-af2b-141f50d45e5c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9da5909e-d715-4f79-a1b8-34780c57acf1", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d709a455-02cc-40d9-b3d2-e4194dc46792", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "3c98b287-fd01-471a-ac34-e0a56d9e95c2", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "4c79ea50-6e14-4c47-8836-c0d0f647e45a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "834ed20a-d7d8-419b-b72d-61b30db36560", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "46051d94-0e60-4010-b86d-cf65e1a464d8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a50ad03e-d299-4da7-874c-0f233d7d503d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c18dd89d-e057-42aa-b071-0a91226da3bf", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "795079ed-4b5a-4750-b077-d653180d43ae", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "71efa12c-a68e-4537-ac7d-27ebf91557a6", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "36951b36-de01-45bc-91a7-1c68f5989ed5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "91141263-7f27-494f-95e9-04a113952974", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", - "ruleType" : "atleastOneOf" - } ], + "welshLabel": "Gofynion cymunedol", + "financial": "N", + "unscheduled": false, "adjournment": "N", "category": "A", "urgent": false, "convicted": "N", "d20": false, - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "cacheable": 1, - "userGroups": [], - "resultTextTemplate": "%AllChildText%", - "welshLabel": "Amodau mechnïaeth", - "terminatesOffenceProceedings": false - }, { - "id" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Next hearing", - "shortCode" : "NEXH", - "level" : "O", - "rank" : 300, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Gwrandawiad nesaf", - "isAvailableForCourtExtract" : false, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : true, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "fbed768b-ee95-4434-87c8-e81cbc8d24c8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", - "ruleType" : "optional" - } ] - }, { - "id" : "d076bd4a-17d5-4720-899a-1c6f96e3b35f", - "label" : "Remand unconditional bail", - "shortCode" : "REMUB", - "level" : "O", - "rank" : 32900, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", - "ruleType" : "mandatory" - }, { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "mandatory" - }, { - "childResultDefinitionId" : "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "ruleType" : "optional" - } ] - }, { - "id" : "0056b9e1-7585-4bfa-82ec-f06202670bb1", - "label" : "Remand in custody", - "shortCode" : "REMIC", - "level" : "O", - "rank" : 33200, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "d0a369c9-5a28-40ec-99cb-da7943550b18", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "d30f1863-f319-49fd-855d-2cf3fa6b3cea", - "label" : "Remand appeal", - "shortCode" : "REMA", - "level" : "O", - "rank" : 33400, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6af22d8d-6157-460e-b641-e6db90d15289", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7a0932f5-8264-412e-a83c-2b6d1dce1506", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "074124d5-b07a-4b73-8b9a-792e8462138a", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "62cd1ba4-9aaf-413b-96b0-238cfc82ef18", - "label" : "Press", - "shortCode" : "PRESS", - "level" : "O", - "rank" : 34100, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "fcbf777d-1a73-47e7-ab9b-7c51091a022c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "89e3c24b-acbf-42fb-9eee-169b83423035", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c265d589-fcc0-451b-be43-7856e32524ba", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "393c5be8-dadb-484b-ab39-0f1eb57aeae5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9647428f-0946-4a09-aec1-7bdfcd324ac6", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "21271525-76f4-4134-9c93-1be012a574c8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d023e3a7-33ef-45b4-a19b-5137afecbf1f", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2c18aff1-b535-47b6-8415-8841e85eac49", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "335204e2-6b6e-4ea8-ae72-f3341ea75777", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2e725ba6-0e29-4ffb-a5c7-31b67344c211", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "98366b12-b70a-4e66-b71d-a5bbd39bd595", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b3035ace-15d4-44ca-9d79-c83a57dc0e30", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "84222bcb-05ac-4c67-82df-cc8742a850d1", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "07d8fab1-366d-43c5-bdb4-223f8c1229f5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bb90e801-0066-4bdf-85e6-8d64bc683f0c", - "ruleType" : "atleastOneOf" - },{ - "childResultDefinitionId" : "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", - "ruleType" : "atleastOneOf" - }] - }, { - "id" : "3f4f9b75-418f-46ed-a311-230a6dbca6cb", - "label" : "Credit for time remanded on bail", - "shortCode" : "CREDIT", - "level" : "D", - "rank" : 6000, - "wordGroups" : [ { - "wordGroup" : [ "Credit", "remand", "bail" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Credit for time", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "46bf6aa2-23f3-4c78-8c52-49b567d1193b", - "label" : "Warrants of arrest", - "shortCode" : "WAROA", - "level" : "O", - "rank" : 36200, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "c98cb51f-8639-49c1-91f0-a7e820c34355", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b4f7c223-b9d1-4409-b6d3-039f66eb9645", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "671df737-9901-4fa5-b245-aeff0c4c7495", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c8c962df-e28c-4ea8-8496-721badb77b7b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "73242763-44db-4d57-a855-44a6cf4f6226", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9b35f4f5-531e-48b4-858d-d81e15e77c23", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "31b29c58-cfd2-41c6-addf-53f5a2c99fdc", - "label" : "Confiscation", - "shortCode" : "CON", - "level" : "O", - "rank" : 38300, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "76b02133-4927-4f21-9f79-1ce361a17b0f", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "733545c5-5612-40b8-bd81-df1a6a154182", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "159c3430-fda4-4aea-8adc-62e4b6f07797", - "label" : "Rehabilitation requirement", - "shortCode" : "REHR", - "level" : "O", - "rank" : 42500, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "574fb809-4473-4a90-ba0f-519a50cfc9ec", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "55a1cab9-8aa6-41f6-a116-0345198324e6", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c5e204ce-9a2d-4911-96f7-e189565f429e", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "191ec139-10b6-4b18-8a2c-1359425244c3", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "536adc8b-1f26-43f0-9659-4bf25e2b42db", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1819e6a0-b13d-47e0-9027-388819457256", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "27528205-a237-471b-a487-7943e9284c44", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d3313cb9-c75e-45e4-b833-8479ff80f9ac", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "fb9fedf8-2b60-496b-8147-168233e81be3", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "5ab456c8-d272-4082-87ed-cd1f44a0603a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "8f979084-dc3b-4e71-bceb-87e30a4fc381", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "63f8c00a-2115-46a9-94ff-b30bbad0f287", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "30bd1b11-5336-486e-aae6-1285ab4c8d65", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "4e786114-e1c0-42bb-9c52-64edeffa3a3b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1e78e819-13fc-4e14-a263-c632e4e3c85e", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "03a1cbef-e54a-4a00-bcd5-44350f882ced", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a17f9787-ba56-43d4-be5f-6fc91d29646e", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b986b6ad-816c-44d6-bdf8-0df189732648", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a15102d7-a151-425a-a827-0e35bc159049", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "416684ab-755f-4958-ab83-2795a21d62a3", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d79c92bb-c301-491a-b4d2-cb86e473b5af", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "0f7eade6-3602-486c-8491-45e2bdee9960", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b8654020-f9ed-4707-8757-8db6efb323b9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "78d6e77c-fb17-46ae-a719-66eacd6281a9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "48646574-8bd7-49f7-9fa1-3aeb60f7c059", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "79deff01-d3b0-4453-b290-ea34c60ce3e9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "0c5824cd-b6db-4c8f-a8c3-92e7e4cc0195", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Special measures", - "shortCode" : "DIRS", - "level" : "C", - "rank" : 50200, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "02c8aef6-601a-46e8-bbe5-d614e0da764a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b172d954-5aca-447b-b19e-2c836053b0af", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "41a18cc7-3106-4e84-8f66-ad52fe6dee75", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ee74631f-c144-4a25-8a93-0253b98a7642", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "702b365f-dde6-4543-8fb5-1324c6a84ec4", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "52218899-8f26-45cd-ae30-aeff5c189261", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "633d192a-cc90-484e-aa1d-318816b7d44a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "67a91dc8-f4f9-4f80-b644-e219326045cc", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "92ccea16-370d-42cf-ae54-ed0951eaec95", - "label" : "Bad character", - "shortCode" : "BADC", - "level" : "C", - "rank" : 51400, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "fe77f387-ee64-4cef-8e95-c0776b9799e7", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "e7e02d63-46c2-4603-8255-921427f410fe", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Send To Crown Court On Conditional Bail", - "shortCode" : "SendToCCOnCB", - "level" : "O", - "rank" : 53000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label" : "Is the defendant excused attendance?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantExcusedAttendance", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", - "label" : "Bail condition reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual" : null, - "reference" : "bailConditionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dec5104c-3342-4544-b287-31ea969e0f15", - "label" : "BASS provider", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bassProvider", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4559", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "mandatory" - }, { - "childResultDefinitionId" : "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "ruleType" : "mandatory" - } ] - }, { - "id" : "0118c2ad-9f50-4b0c-8f56-dff14b46b669", - "label" : "Interim Anti-social behaviour injunction", - "shortCode" : "ABII", - "level" : "O", - "rank" : 49600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2f1308c6-4fbf-4158-809b-5f382a0dafae", - "label" : "Interim Anti-social behaviour injunction made on notice until further order of the court", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "904e7e42-5cf0-44e3-810f-1bc67d10027c", - "label" : "Power of arrest attached to the following provisions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "33408f3d-885c-43f4-a4a8-76e37906569f", - "label" : "Police force name (for power of arrest)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2da00d65-6cdc-4149-9d51-df6cb43d9729", - "label" : "Police force address (for power of arrest) line 1", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ceb435f2-3d72-4b5a-929a-ce976881ace7", - "label" : "Police force address (for power of arrest) line 2", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "aa72f5cb-221a-42ce-b1f3-81f110be0e12", - "label" : "Police force address (for power of arrest) line 3", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6516de6a-2998-4ae5-9833-ea37b408558f", - "label" : "Police force address (for power of arrest) line 4", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6dacab3d-a730-4020-aed3-15d442fbdff5", - "label" : "Police force address (for power of arrest) line 5", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4a13b230-a819-4955-87d8-fe1f1318abc1", - "label" : "Anti-social behaviour injunction requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "18266b45-aae2-43b5-8a0b-e647df78e61a", - "label" : "Anti-social behaviour injunction prohibitions", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3516", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1652f681-8b73-4b35-8982-d418e33e2dca", - "label" : "Anti-social behaviour injunction discharged", - "shortCode" : "ABID", - "level" : "O", - "rank" : 49700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "9e013766-dc6b-4b33-8691-871cd95bbbb2", - "label" : "Date anti-social behaviour injunction made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bacb7dc5-0a23-41c4-9e61-018aa99c7758", - "label" : "Name of court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1eefddf4-76eb-4fe8-89d7-2c517bd6da99", - "label" : "Name of youth on anti-social behaviour injunction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b509d44-fb0e-463f-8b7f-675cb6903265", - "label" : "Parent's name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0be420e0-d53a-4f8e-9b6e-bf32399a8139", - "label" : "Parent's address line 1", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0059a0fb-4c1f-4404-a510-ee62103e0ac3", - "label" : "Parent's address line 2", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e58ccaaf-b086-454c-945c-0e49e1ff3ac2", - "label" : "Parent's address line 3", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "07ca67f2-f61d-43df-b5ba-195c7be45ed4", - "label" : "Parent's address line 4", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5a4bca21-33ab-4676-be4e-47a6345e66bb", - "label" : "Parent's address line 5", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0305f628-85c3-42d6-82b8-7145d7c6087b", - "label" : "Police force address (for removal of power of arrest) Line 1", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dbae711b-d60f-404c-bdac-323bcc2715d8", - "label" : "Police force address (for removal of power of arrest) Line 2", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "88c1856d-a5d2-46d7-83db-3e6b9611e607", - "label" : "Police station name (for power of arrest removal)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "53060dea-a815-492b-b426-79269ebfaafd", - "label" : "Police force address (for removal of power of arrest) Line 3", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "699e217b-6eef-4536-8bbe-8865e7a6cb1f", - "label" : "Police force address (for removal of power of arrest) Line 4", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "360992fa-96f8-4087-9cfa-fc2d6e23c931", - "label" : "Police force address (for removal of power of arrest) Line 5", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3516", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5c27e390-2656-4117-8104-a41b15b2f01b", - "label" : "Anti-social behaviour injunction detention order", - "shortCode" : "ABIDO", - "level" : "O", - "rank" : 49800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "ec2d9337-782d-4c1a-be49-2c03b52c4788", - "label" : "Duration of detention in youth detention accomodation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "701580e3-d5ea-4318-a8ad-0ecb00558215", - "label" : "Rreasons why no other power is available to the court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3516", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "311c8e5c-6f22-44a7-8c97-f72324cb05c4", - "label" : "Custody time limit", - "shortCode" : "CTL", - "level" : "O", - "rank" : 53100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5348fd0e-0670-4811-997f-1baa78b06d62", - "label" : "Custody time limit expires", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "CTLDATE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4483c255-2761-4549-a70a-314aa311d052", - "label" : "Time spent in custody (in days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "CTLTIME", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", - "label" : "Credit for time in custody in foreign jurisdiction", - "shortCode" : "CREDITF", - "level" : "D", - "rank" : 6100, - "wordGroups" : [ { - "wordGroup" : [ "Credit", "foreign", "custody" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Credit for time", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "66105417-41c8-420d-820f-40b61b507442", - "label" : "Risk or vulnerability factors", - "shortCode" : "vulnarability", - "level" : "D", - "rank" : 900, - "wordGroups" : [ { - "wordGroup" : [ "vulnarability", "risk,vulnerability,factors" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5b3a1f08-8008-4a1d-94b1-e0d4e1bd44df", - "label" : "Anti-social behaviour injunction detention order revoked ", - "shortCode" : "ABIDOR", - "level" : "O", - "rank" : 49900, - "userGroups" : [ ], - "prompts" : [ { - "id" : "31305c79-6634-4ed7-8ab1-40af1f34f74e", - "label" : "Date anti-social behaviour injunction detention order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c108853c-bd16-4677-9352-af7a20395f72", - "label" : "Name of youth in detention", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bacb7dc5-0a23-41c4-9e61-018aa99c7758", - "label" : "Name of court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e76673b3-7ca8-4a32-898d-dfa2e6047f24", - "label" : "Date of birth of youth in detention", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6927b6ac-4c85-4532-838d-88ac00ea83f9", - "label" : "Conveyor / custodian name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3516", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4e170564-93b2-4d45-b653-90099acf8313", - "label" : "Engagement and support order", - "shortCode" : "ESO", - "level" : "O", - "rank" : 53200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "7bc1e57b-4cae-4b3d-bd80-50a8d42b3b41", - "label" : "Date by which meetings must take place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "00f2671f-f825-406c-ad80-75ff13e837f9", - "label" : "Name of supervisor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1e697e74-f38b-4388-a7b5-51d51180d2f2", - "label" : "The Local Justice Area the defendant lives in", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1144", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5e253119-9aab-4d0d-8288-bcdbf3695d86", - "label" : "Order", - "shortCode" : "ORD", - "level" : "O", - "rank" : 53300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "3da00e9f-7638-4f7d-9c98-275e74ac1e0e", - "label" : "Order details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", - "label" : "Defendant to notify names and home address", - "shortCode" : "DNNH", - "level" : "O", - "rank" : 800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 10, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 110, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f9d5418b-eb45-4614-bfb6-0e64d6a8e032", - "label" : "Defendant to notify names and home address to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "65f58042-5608-4d48-9aa9-3ba5ea38775e", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ee8a9064-e558-47db-8b18-6818b1c120bf", - "label" : "Slavery and trafficking prevention order", - "shortCode" : "STPO", - "level" : "O", - "rank" : 19600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "11f6a6ca-985b-4aa9-a6f2-de4214fcbe0f", - "label" : "This order lasts until further order", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3285", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", - "ruleType" : "optional" - }, { - "childResultDefinitionId" : "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", - "ruleType" : "optional" - }, { - "childResultDefinitionId" : "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", - "ruleType" : "optional" - } ] - }, { - "id" : "fcb26a5f-28cc-483e-b430-d823fac808df", - "label" : "Excise penalty", - "shortCode" : "excise, penalty", - "level" : "O", - "rank" : 53400, - "wordGroups" : [ { - "wordGroup" : [ "excise, penalty" ] - }, { - "wordGroup" : [ ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b3dfed9a-efba-4126-a08d-cf37d18b4563", - "label" : "Amount of excise penalty", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOF", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1119", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "68720a39-3bf6-4678-9d6b-40386da7d53a", - "label" : "Warrant for arrest for breach of community penalty with bail (dated)", - "shortCode" : "WCPD", - "level" : "O", - "rank" : 53500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fa31208-5fed-4f52-a63e-c3a83cc733fa", - "label" : "Reason for arrest is a failure to comply with the", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "24b40430-a75e-44ba-b367-bae3139b4d19", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9405e797-240e-4e71-ab35-43e90e3a8a5b", - "label" : "Reason for the decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", - "label" : "Warrant execution allocated to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "507c4249-d897-43bb-b64d-5c156ef6ba85", - "label" : "Bail to be allowed on these conditions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4575", - "adjournment" : true, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "mandatory" - } ] - }, { - "id" : "ed34136f-2a13-45a4-8d4f-27075ae3a8a9", - "label" : "Warrant for arrest for breach of community penalty without bail", - "shortCode" : "WCPN", - "level" : "O", - "rank" : 53600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fa31208-5fed-4f52-a63e-c3a83cc733fa", - "label" : "Reason for arrest is a failure to comply with the", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "24b40430-a75e-44ba-b367-bae3139b4d19", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9405e797-240e-4e71-ab35-43e90e3a8a5b", - "label" : "Reason for the decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", - "label" : "Warrant execution allocated to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4576", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "664d0c0d-115b-4d54-b137-301c9ed74ef9", - "label" : "Recommended for deportation when released", - "shortCode" : "RDEPD", - "level" : "D", - "rank" : 6200, - "wordGroups" : [ { - "wordGroup" : [ "deportation", "release" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "16bb9f17-d3c3-42f1-a4dc-2d953114a214", - "label" : "Nationality", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2cbae4d2-e4d0-4451-be7c-713c2a1a8974", - "label" : "Residence and reporting restrictions etc", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3006", - "adjournment" : false, - "convicted" : false, - "qualifier" : "CN", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0d1b161b-d6b0-4b1b-ae08-535864e4f631", - "label" : "Warrant for arrest for community penalty breach with bail (undated)", - "shortCode" : "WCPU", - "level" : "O", - "rank" : 53700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fa31208-5fed-4f52-a63e-c3a83cc733fa", - "label" : "Reason for arrest is a failure to comply with the", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "24b40430-a75e-44ba-b367-bae3139b4d19", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9405e797-240e-4e71-ab35-43e90e3a8a5b", - "label" : "Reason for the decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", - "label" : "Warrant execution allocated to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4577", - "adjournment" : true, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "491e30e9-2508-4e3a-9291-dfaf16d975ab", - "label" : "Sent to Crown Court for trial", - "shortCode" : "SCC", - "level" : "O", - "rank" : 53800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "4362a1a4-aa80-4a68-ae61-f57962709f3d", - "label" : "Sent for trial under", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : "999ecc93-0fd8-47d8-8b2d-9286c0c5d491", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f83671fb-7f2f-4b38-b6f3-71db90768485", - "label" : "Indicated plea", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : "84d620c3-35ca-49ae-879d-95efaaf670af", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d7d2c7b1-f27a-44ed-a227-ea9b917f0229", - "label" : "No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "654fce8c-238a-468a-92db-f7509394cf08", - "label" : "A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5dfec956-547d-4e2b-b1f6-743376511589", - "label" : "Trial issues identified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "49365935-e535-42db-bc41-a18c8fee5258", - "label" : "Directions made", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8", - "label" : "No indication given re victim personal statement", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6", - "label" : "Victim wishes to read victim personal statement to court", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "583ea6cb-4251-406e-b07a-445fb0dde914", - "label" : "Victim personal statement to be presented to court by prosecutor or other person", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e2b9a67c-cbd8-4479-89ff-57b2b6632835", - "label" : "Additional details re victim personal statement", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7e657be6-9e6f-410d-ba6a-74cfedb1b3f9", - "label" : "Probation / Youth Offending Team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "05496e53-66f5-47a0-9fff-f31cbd5191a0", - "label" : "Was a PSR ordered?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ca16bc9f-9d62-4dd3-b8af-a77004ff8002", - "label" : "Recommended for deportation when detained", - "shortCode" : "RDEPN", - "level" : "D", - "rank" : 6300, - "wordGroups" : [ { - "wordGroup" : [ "deportation", "detained" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "16bb9f17-d3c3-42f1-a4dc-2d953114a214", - "label" : "Nationality", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3006", - "adjournment" : false, - "convicted" : false, - "qualifier" : "CQ", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e866cd11-6073-4fdf-a229-51c9d694e1d0", - "label" : "Surcharge", - "shortCode" : "FVS", - "level" : "D", - "rank" : 6400, - "wordGroups" : [ { - "wordGroup" : [ "FVS" ] - }, { - "wordGroup" : [ "victim", "surcharge" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "629a971e-9d7a-4526-838d-0a4cb922b5cb", - "label" : "Amount of surcharge", - "welshLabel" : "Swm y gordal", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOS", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Gordal", - "isAvailableForCourtExtract" : true, - "financial" : true, - "category" : "A", - "cjsCode" : "3117", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5eb79085-3035-4a00-a549-6dd24abafe8c", - "label" : "No action taken on breach", - "shortCode" : "NOACT", - "level" : "O", - "rank" : 6500, - "wordGroups" : [ { - "wordGroup" : [ "action", "breach" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "d144ad72-f68a-4b16-a145-ab3c95599dcc", - "label" : "Imposing court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "13cd9c54-228b-4dd0-966b-93f4e9bf3a0b", - "label" : "Date of original imposition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1087", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - },{ - "id": "969f150c-cd05-46b0-9dd9-30891efcc766", - "version": "2021-02-25T12:38:32.964Z", - "startDate": "2021-02-26", - "label": "Fine", - "shortCode": "FO", - "level": "O", - "rank": 22300, - "canExtendActiveOrder": true, - "wordGroups": [ - { - "wordGroup": [ - "FO", - "fine" - ] - } - ], - "prompts": [ - { - "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", - "label": "Amount of fine", - "welshLabel": "Swm y ddirwy", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "financial": "Y", - "reference": "AOF", - "wordGroup": [ - "Amount" - ], - "userGroups": [ - - ], - "min": "0", - "max": "999999999", - "wording": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false, - "activeOrderExtended": true, - "activeOrderNotExtended": false - } - ], - "welshLabel": "Dirwy", - "financial": "Y", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "Y", - "d20": false, - "resultDefinitionGroup": "Imposition", - "cjsCode": "1015", + "resultDefinitionGroup": "Community Requirements, ABC", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, @@ -42752,8217 +65319,442 @@ "excludedFromResults": false, "alwaysPublished": false, "jurisdiction": "B", - "libraCode": "FO", - "lCode": "FINE", "resultDefinitionRules": [ { - "childResultDefinitionId": "9ea0d845-5096-44f6-9ce0-8ae801141eac", - "ruleType": "optional" + "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", + "ruleType": "atleastOneOf" }, { - "childResultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", - "ruleType": "optional" + "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "ruleType": "atleastOneOf" }, { - "childResultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", - "ruleType": "oneOf" + "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "ruleType": "atleastOneOf" }, { - "childResultDefinitionId": "bdb32555-8d55-4dc1-b4b6-580db5132496", - "ruleType": "oneOf" + "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "ruleType": "atleastOneOf" }, { - "childResultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", - "ruleType": "oneOf" + "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "ruleType": "atleastOneOf" }, { - "childResultDefinitionId": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", - "ruleType": "optional" - } - ], - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, { - "id" : "f5d492b8-a09b-4f70-9ceb-aa06c306a7dc", - "rollUpPrompts": false, - "publishedForNows": true, - "label" : "Costs to Crown Prosecution Service", - "shortCode" : "FCPC", - "level" : "C", - "rank" : 6700, - "wordGroups" : [ { - "wordGroup" : [ "Costs", "CPS" ] - }, { - "wordGroup" : [ "FCPC" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f63b0bb5-7d93-4dab-bc3d-b4bd27152871", - "label" : "Amount of costs", - "welshLabel" : "Swm y costau", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOC", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Costau i Wasanaeth Erlyn y Goron", - "isAvailableForCourtExtract" : true, - "financial" : true, - "category" : "F", - "cjsCode" : "3011", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ae89b99c-e0e3-47b5-b218-24d4fca3ca53", - "label" : "Compensation", - "shortCode" : "FCOMP", - "level" : "O", - "rank" : 6800, - "wordGroups" : [ { - "wordGroup" : [ "FCOMP" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "26985e5b-fe1f-4d7d-a21a-57207c5966e7", - "label" : "Amount of compensation", - "welshLabel" : "Swm yr iawndal", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOCOM", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "af921cf4-06e7-4f6b-a4ea-dcb58aab0dbe", - "label" : "Major creditor name", - "welshLabel" : "Enw’r Prif Gredydwr", - "resultPromptRule" : "oneOf", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", - "qual" : null, - "reference" : "CREDNAME", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", - "label" : "Minor creditor company name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "043faecf-e97c-4daf-9763-4b755d941b45", - "label" : "Minor creditor title", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "202afd61-e9fb-4bc7-aad6-f0a5799406e2", - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", - "label" : "Minor creditor surname", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", - "label" : "Minor creditor initials", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "41576571-5573-498b-a9e9-eee24f7a67fa", - "label" : "Minor creditor forename(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", - "label" : "Minor creditor address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", - "label" : "Minor creditor postcode", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - } ], - "welshLabel" : "Iawndal", - "isAvailableForCourtExtract" : true, - "financial" : true, - "category" : "F", - "cjsCode" : "3012", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "label" : "Community requirement: Electronic monitoring whereabouts", - "shortCode" : "EMW", - "level" : "O", - "rank" : 1400, - "wordGroups" : [ { - "wordGroup" : [ "Electronic", "Monitoring", "Whereabouts", "first", "GPS" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f18d4d90-954d-4b27-9e70-f4be9c487b0e", - "label" : "Start time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd6186a4-d928-47f1-abee-2466b9b80ebf", - "label" : "End time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3148", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ae617390-b41e-46ac-bd63-68a28512676a", - "label" : "Community order Scotland", - "shortCode" : "COS", - "level" : "O", - "rank" : 6900, - "wordGroups" : [ { - "wordGroup" : [ "Community", "Order", "scotland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad4f684d-0a83-4ee1-b04f-7864487eb41c", - "label" : "Appropriate Scottish Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5cf339ba-1dd4-4476-99a5-281c833dd134", - "label" : "Locality in Scotland", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "93861000-c4dd-449c-a876-83381beb9719", - "label" : "Corresponding Scottish Order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1280d70e-ea43-42d3-8e96-ce72b8933876", - "label" : "Persistent offender previously fined", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1116", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "9bec5977-1796-4645-9b9e-687d4f23d37d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "cc2cbb94-b75a-4a8c-9840-31c5f8007724", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "61ea03c9-c113-446b-a392-402144fcd9e8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bcf1b451-af1e-4603-9605-586310d0e61e", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a5aa694e-4729-40f5-814e-60a75d9429e0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "65a59f46-61ae-4dac-a040-a25fca647cb2", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1c40353b-a3b8-4437-8691-6b54d5842010", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c1b0dedf-1380-4889-9d31-1816b850e348", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a19714a0-5d58-4666-bc15-3d9dd2692f77", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "364d3065-0699-4df1-a68f-a69c429d0867", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "99586f43-5b18-45da-87f7-1764ad149985", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d683f73c-488e-4d8e-a685-d37049c2a3e5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "091cd45b-4312-476e-a122-18cc02fd1699", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "66aac609-8987-44cf-a0dc-fb49a7195090", - "label" : "Community order Northern Ireland", - "shortCode" : "CONI", - "level" : "O", - "rank" : 7000, - "wordGroups" : [ { - "wordGroup" : [ "Community", "Order", "ireland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", - "label" : "Petty Sessions District", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b76491aa-02fe-4c14-80d7-4401cc1105e1", - "label" : "Corresponding Northern Ireland Order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : "responsibleOfficer", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1280d70e-ea43-42d3-8e96-ce72b8933876", - "label" : "Persistent offender previously fined", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1116", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "9bec5977-1796-4645-9b9e-687d4f23d37d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "cc2cbb94-b75a-4a8c-9840-31c5f8007724", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "61ea03c9-c113-446b-a392-402144fcd9e8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bcf1b451-af1e-4603-9605-586310d0e61e", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a5aa694e-4729-40f5-814e-60a75d9429e0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "65a59f46-61ae-4dac-a040-a25fca647cb2", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1c40353b-a3b8-4437-8691-6b54d5842010", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c1b0dedf-1380-4889-9d31-1816b850e348", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a19714a0-5d58-4666-bc15-3d9dd2692f77", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "364d3065-0699-4df1-a68f-a69c429d0867", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "99586f43-5b18-45da-87f7-1764ad149985", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d683f73c-488e-4d8e-a685-d37049c2a3e5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "091cd45b-4312-476e-a122-18cc02fd1699", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "23f2178b-0083-4bd1-a830-d9c7291f02bd", - "label" : "Suspended sentence order Scotland - imprisonment", - "shortCode" : "SUSPSS", - "level" : "O", - "rank" : 7100, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "imprisonment", "scotland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0f3114e6-b7b2-4281-8b96-168cbbcd064b", - "label" : "Imprisonment reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad4f684d-0a83-4ee1-b04f-7864487eb41c", - "label" : "Appropriate Scottish Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5cf339ba-1dd4-4476-99a5-281c833dd134", - "label" : "Locality in Scotland", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1115", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType" : "mandatory" - } ] - }, { - "id" : "8fac72a9-3193-47ec-9010-e73158813cfd", - "label" : "Suspended sentence order Northern Ireland - imprisonment", - "shortCode" : "SUSPSNI", - "level" : "O", - "rank" : 7200, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "imprisonment", "ireland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0f3114e6-b7b2-4281-8b96-168cbbcd064b", - "label" : "Imprisonment reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", - "label" : "Petty Sessions District", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1115", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType" : "mandatory" - } ] - }, { - "id" : "9161f3cb-e821-44e5-a9ee-4680b358a037", - "label" : "Guilty plea taken into account", - "shortCode" : "GPTAC", - "level" : "O", - "rank" : 7300, - "wordGroups" : [ { - "wordGroup" : [ "Guility", "plea", "account" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1f413a5a-f385-4264-9e23-1fdc80455091", - "label" : "Comment on discount / reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "554c2622-c1cc-459e-a98d-b7f317ab065c", - "label" : "Conditional discharge", - "shortCode" : "CD", - "level" : "O", - "rank" : 7400, - "wordGroups" : [ { - "wordGroup" : [ "conditional", "discharge" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label" : "Period of conditional discharge", - "welshLabel" : "Cyfnod o ryddhad amodol", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label" : "Period of conditional discharge", - "welshLabel" : "Cyfnod o ryddhad amodol", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label" : "Period of conditional discharge", - "welshLabel" : "Cyfnod o ryddhad amodol", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label" : "Period of conditional discharge", - "welshLabel" : "Cyfnod o ryddhad amodol", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - } ], - "welshLabel" : "Ryddhad Amodol", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1018", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b9c6047b-fb84-4b12-97a1-2175e4b8bbac", - "label" : "Absolute discharge", - "shortCode" : "AD", - "level" : "O", - "rank" : 7500, - "wordGroups" : [ { - "wordGroup" : [ "absolute", "discharge" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rhyddhad diamod", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1017", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "32177be4-0a1f-4889-9ca2-c729f49d7d85", - "label" : "Forfeiture order (other than vehicle)", - "shortCode" : "forfov", - "level" : "O", - "rank" : 7800, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "destruction", "vehicle" ] - }, { - "wordGroup" : [ "forfov" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c5aa7f9-326e-4525-803a-63eedc16e4e2", - "label" : "Property to be forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "98a562ee-7583-405a-ab05-3f922ada4872", - "label" : "Type of forfeiture", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "26d4c112-a7ae-11e8-98d0-529269fb1459", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d5cfcf4-abb5-4449-b9ba-844353fc6035", - "label" : "Destruction / dispose of / deal with / sell", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ba14f9b0-9912-4529-ae63-46eda7708500", - "label" : "Method of disposal etc", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "564e9cd7-5a71-4b8d-b404-211afe28f0ed", - "label" : "Specify who is to destroy etc", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3054", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "290435b9-cce7-43be-b340-1c7db48c5413", - "label" : "Forfeiture order (Vehicle - Section 33C of the Environmental Protection Act 1990)", - "shortCode" : "FORVEPO", - "level" : "O", - "rank" : 7900, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "vehicle" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e0aab342-1b85-4942-8efb-232ef97d81d1", - "label" : "Defendant to be deprived of vehicle described as", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b729ae65-ca66-466f-a858-bb33581cd580", - "label" : "Name of enforcement authority", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3138", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", - "label" : "Order for deprivation of the defendant's rights (other than vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", - "shortCode" : "DEPO", - "level" : "O", - "rank" : 8000, - "wordGroups" : [ { - "wordGroup" : [ "deprivation", "not", "vehicle" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3cfbca15-fd95-4a23-9f57-f60d62f22936", - "label" : "Defendant to be deprived of this property", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3055", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Community requirement: Curfew with electronic monitoring", - "shortCode" : "CURE", - "level" : "O", - "rank" : 1600, - "wordGroups" : [ { - "wordGroup" : [ "Electronic", "Monitoring", "Curfew", "first" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f18d4d90-954d-4b27-9e70-f4be9c487b0e", - "label" : "Start time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd6186a4-d928-47f1-abee-2466b9b80ebf", - "label" : "End time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", - "label" : "Order for deprivation of rights (vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", - "shortCode" : "DEPV", - "level" : "O", - "rank" : 8100, - "wordGroups" : [ { - "wordGroup" : [ "deprivation", "vehicle" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e0aab342-1b85-4942-8efb-232ef97d81d1", - "label" : "Defendant to be deprived of vehicle described as", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3055", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", - "label" : "Forfeiture order (land vehicle - Modern Slavery Act 2015)", - "shortCode" : "FORFMS", - "level" : "O", - "rank" : 8200, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "slavery" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e0aab342-1b85-4942-8efb-232ef97d81d1", - "label" : "Defendant to be deprived of vehicle described as", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3138", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cfbe83c8-935b-4410-a68c-49452519f2d3", - "label" : "Mandatory life imprisonment", - "shortCode" : "MLI", - "level" : "O", - "rank" : 8300, - "wordGroups" : [ { - "wordGroup" : [ "mandatory", "Life", "imprisonment" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label" : "Early release provisions apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Early", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label" : "Early release provisions do not apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Early", "not", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "96349367-2d04-4265-978f-6c6b417497fd", - "label" : "Mandatory custody for life", - "shortCode" : "MCL", - "level" : "O", - "rank" : 8400, - "wordGroups" : [ { - "wordGroup" : [ "Mandotory", "custody", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label" : "Early release provisions apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Early", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label" : "Early release provisions do not apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Early", "not", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AB", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "3f608dba-20ad-4710-bebc-d78b4b3ff08d", - "label" : "Custody for life", - "shortCode" : "CFL", - "level" : "O", - "rank" : 8500, - "wordGroups" : [ { - "wordGroup" : [ "custody", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label" : "Early release provisions apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Early", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label" : "Early release provisions do not apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Early", "not", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "d65f3285-f5f0-4ab1-b703-0c95f0f6ed89", - "label" : "Life imprisonment for second listed offence", - "shortCode" : "LIMP2", - "level" : "O", - "rank" : 8600, - "wordGroups" : [ { - "wordGroup" : [ "Life", "imprisonment", "second" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AC", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "d844cdd8-c110-4bb8-b8f2-1a8bd5fdc0c7", - "label" : "Custody for life for second listed offence", - "shortCode" : "LIMPS2O", - "level" : "O", - "rank" : 8700, - "wordGroups" : [ { - "wordGroup" : [ "Life", "custody", "second" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AC", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "cf70d7ed-8049-4fe2-b02f-5a23b5e39184", - "label" : "Life imprisonment for serious offence (S.225)", - "shortCode" : "LIMPSO", - "level" : "O", - "rank" : 8800, - "wordGroups" : [ { - "wordGroup" : [ "Life", "imprisonment", "serious" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "6e42d694-a785-4cbf-a4a8-09f2d1802d4d", - "label" : "Custody for life for serious offence  (S.255)", - "shortCode" : "CFLS", - "level" : "O", - "rank" : 8900, - "wordGroups" : [ { - "wordGroup" : [ "Life", "custody", "serious" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "4f640ea6-88d4-4a3a-b816-ff5a79eaaa14", - "label" : "Special custodial sentence of imprisonment for offender of particular concern", - "shortCode" : "SPECC", - "level" : "O", - "rank" : 9000, - "wordGroups" : [ { - "wordGroup" : [ "special", "custody", "concern" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label" : "Term of sentence of imprisonment (aggregate)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label" : "Term of sentence of imprisonment (aggregate)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label" : "Term of sentence of imprisonment (aggregate)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label" : "Term of sentence of imprisonment (aggregate)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "label" : "Community requirement: Curfew", - "shortCode" : "CUR", - "level" : "O", - "rank" : 1500, - "wordGroups" : [ { - "wordGroup" : [ "Curfew", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a920be42-b376-420b-ace9-d2d0634559b0", - "label" : "Extended sentence of imprisonment for violent or sexual offence (21 and over)(S.226A)", - "shortCode" : "EXTIVS", - "level" : "O", - "rank" : 9100, - "wordGroups" : [ { - "wordGroup" : [ "extended", "imprisonment", "violent", "sexual", "over", "21" ] - }, { - "wordGroup" : [ "extended", "imprisonment" ] - }, { - "wordGroup" : [ "EXTIVS" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label" : "Extended sentence of imprisonment term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label" : "Extended sentence of imprisonment term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label" : "Extended sentence of imprisonment term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label" : "Extended sentence of imprisonment term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", - "label" : "Reason for significant risk to public of serious harm", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AF", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "optional" - } ] - }, { - "id" : "752aab8f-ba5f-45a8-80c8-4df7770e70e4", - "label" : "Extended sentence of detention for violent or sexual offence (18-20)(S.226A)", - "shortCode" : "EXTDVS", - "level" : "O", - "rank" : 9200, - "wordGroups" : [ { - "wordGroup" : [ "extended", "detention", "violent", "sexual", "over", "18" ] - }, { - "wordGroup" : [ "detained", "extended", "over" ] - }, { - "wordGroup" : [ "EXTDVS" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", - "label" : "Reason for significant risk to public of serious harm", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AF", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "1dd2e245-a9af-4d04-84b6-92f64dc312fe", - "label" : "Extended sentence of detention for violent or sexual offence (under 18)(S.226B)", - "shortCode" : "EXTDVSU", - "level" : "O", - "rank" : 9300, - "wordGroups" : [ { - "wordGroup" : [ "detained", "extended", "under" ] - }, { - "wordGroup" : [ "extended", "detention", "violent", "sexual", "under", "18" ] - }, { - "wordGroup" : [ "EXTDVSU" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", - "label" : "Reason for significant risk to public of serious harm", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1007", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AF", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "892de3ce-1e80-454e-8c72-44e694b06e93", - "label" : "Detained at Her Majesty's pleasure (under 18)(S.90)", - "shortCode" : "DETMP", - "level" : "O", - "rank" : 9400, - "wordGroups" : [ { - "wordGroup" : [ "detained", "pleasure", "under", "18" ] - }, { - "wordGroup" : [ "detained", "majesty" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1003", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "optional" - } ] - }, { - "id" : "70fe7114-b511-4d9b-a550-2c040b9a8d34", - "label" : "Detained for specified period for serious offence (under 18)(S.91)", - "shortCode" : "DETSO", - "level" : "O", - "rank" : 9500, - "wordGroups" : [ { - "wordGroup" : [ "detained", "Period", "serious", "under", "18" ] - }, { - "wordGroup" : [ "detained", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "746c833a-7d33-4800-a40c-425dbacf7492", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : "concurrent", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7784b81d-44d2-43c0-a903-a53b0e73683b", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : "consecutiveToOffenceNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "da9c91a6-7090-44f3-8644-b4b184533fc4", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8115982c-af5c-4439-b6ff-c9c6303a6292", - "label" : "Detention reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1007", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "7f410e16-bda3-4bca-944e-ef88832e41b5", - "label" : "Minimum sentence of detention in young offender institution for drug trafficking", - "shortCode" : "MINDDT", - "level" : "O", - "rank" : 9600, - "wordGroups" : [ { - "wordGroup" : [ "minimum", "detention", "yoi", "Drug" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label" : "Custody period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label" : "Custody period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label" : "Custody period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label" : "Custody period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AD", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "1bcdae76-37f8-4331-9076-fd46dbd4b1fc", - "label" : "Minimum sentence of detention in young offender institution for domestic burglary", - "shortCode" : "MINDDB", - "level" : "O", - "rank" : 9700, - "wordGroups" : [ { - "wordGroup" : [ "minimum", "detention", "yoi", "domestic" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label" : "Custody Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label" : "Custody Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label" : "Custody Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label" : "Custody Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AE", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "47f143eb-7961-4e85-834b-1aa5e47cb3ef", - "label" : "Minimum sentence of Imprisonment for drug trafficking", - "shortCode" : "MINIDT", - "level" : "O", - "rank" : 9800, - "wordGroups" : [ { - "wordGroup" : [ "Miniumum", "imprisonment", "Drug" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AD", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "97fdae65-37a0-4156-912f-a35363e26f31", - "label" : "Minimum sentence of Imprisonment for domestic burglary", - "shortCode" : "MINIDB", - "level" : "O", - "rank" : 9900, - "wordGroups" : [ { - "wordGroup" : [ "minimum", "imprisonment", "domestic" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AE", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "5679e5b7-0ca8-4d2a-ba80-7a50025fb589", - "label" : "Suspended sentence order - detention in a young offender institution", - "shortCode" : "SUSPSD", - "level" : "O", - "rank" : 10000, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "detention", "yoi" ] - }, { - "wordGroup" : [ "suspended", "detention" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label" : "Custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label" : "Custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label" : "Custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label" : "Custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "31e2a7a7-03fc-472b-97ad-67d5aae41a70", - "label" : "Custody reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : "responsibleOfficer", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1134", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType" : "mandatory" - } ] - }, { - "id" : "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "label" : "Community requirement: Curfew with second address", - "shortCode" : "CURA", - "level" : "O", - "rank" : 1700, - "wordGroups" : [ { - "wordGroup" : [ "Curfew", "Additional" ] - }, { - "wordGroup" : [ "Curfew", "second" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "06f0ddcd-30d5-49ac-9500-3d66daeeda9b", - "label" : "Suspended sentence order Scotland - detention in a young offender institution", - "shortCode" : "SUSPSDS", - "level" : "O", - "rank" : 10100, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "detention", "yoi", "scotland" ] - }, { - "wordGroup" : [ "suspended", "detention", "scotland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "31e2a7a7-03fc-472b-97ad-67d5aae41a70", - "label" : "Custody reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad4f684d-0a83-4ee1-b04f-7864487eb41c", - "label" : "Appropriate Scottish Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5cf339ba-1dd4-4476-99a5-281c833dd134", - "label" : "Locality in Scotland", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1134", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType" : "optional" - } ] - }, { - "id" : "a78b50cc-0777-403d-8e51-5458e1ee3513", - "label" : "Suspended sentence order Northern Ireland - detention in a young offender institution", - "shortCode" : "SUSPSDNI", - "level" : "O", - "rank" : 10200, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "detention", "yoi", "ireland" ] - }, { - "wordGroup" : [ "suspended", "detention", "ireland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "31e2a7a7-03fc-472b-97ad-67d5aae41a70", - "label" : "Custody reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", - "label" : "Petty Sessions District", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1134", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType" : "optional" - } ] - }, { - "id" : "d4490cde-3f85-4f51-9545-e2648e458a13", - "label" : "Suspended sentence of imprisonment activated unaltered", - "shortCode" : "SSI", - "level" : "O", - "rank" : 10300, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "imprisonment", "activate" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label" : "Name of court that imposed suspended sentence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label" : "Date suspended sentence imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1507", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8847f470-7bf6-4d7f-aad3-efb31104f337", - "label" : "Suspended sentence of imprisonment activated with lesser term", - "shortCode" : "SSIV", - "level" : "O", - "rank" : 10400, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "imprisonment", "activate", "lesser" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label" : "Name of court that imposed suspended sentence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label" : "Date suspended sentence imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1507", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1f9c69f6-8fb6-478e-95ba-4501974c3c00", - "label" : "Suspended sentence of detention in a young offender institution activated unaltered", - "shortCode" : "SSID", - "level" : "O", - "rank" : 10500, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "detention", "activate" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label" : "Name of court that imposed suspended sentence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label" : "Date suspended sentence imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1507", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "01c907a7-6035-40d0-9b90-e25799797dda", - "label" : "Suspended sentence of detention in a young offender institution activated with lesser term", - "shortCode" : "SSIVD", - "level" : "O", - "rank" : 10600, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "detention", "activate", "lesser" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label" : "Name of court that imposed suspended sentence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label" : "Date suspended sentence imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1507", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c93c5a18-838a-41d3-a017-c203b37f5655", - "label" : "Adjournment reason: At request of the defence", - "shortCode" : "DEF", - "level" : "O", - "rank" : 10700, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "request", "defence" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros ohirio: Ar gais yr amddiffyniad", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "DB", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4958de15-8a0a-4d2b-9f7e-56e037cf03da", - "label" : "Adjournment reason: For the trial to take place", - "shortCode" : "TRIAL", - "level" : "O", - "rank" : 10800, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "trial" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio: Er mwyn cynnal y treial", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "GC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", - "label" : "Adjournment reason: At request of the prosecution", - "shortCode" : "PROS", - "level" : "O", - "rank" : 10900, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "request", "prosecution" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros ohirio: Ar gais yr erlyniad", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "DC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c2eca548-4511-4023-bbe6-50fe0b679b4a", - "label" : "Adjournment reason: To plead guilty or not guilty to the offence(s)", - "shortCode" : "PLEA", - "level" : "O", - "rank" : 11000, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "plea" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio: I bledio’n euog neu’n ddieuog i'r trosedd(au)", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "DM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "label" : "Community requirement: Curfew waived", - "shortCode" : "CURW", - "level" : "O", - "rank" : 1800, - "wordGroups" : [ { - "wordGroup" : [ "Curfew", "waived" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "040c7d54-3e56-4ed1-8004-d63ab3cd5128", - "label" : "Date excused", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", - "label" : "Excused time from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ba3cd0c4-2bd0-4b02-9636-2064e293466b", - "label" : "Excused time to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3a71ea3c-2083-4584-8c73-e7bb0608c468", - "label" : "Excused reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e4fb2729-c6e4-4d32-b3f0-24285f625a87", - "label" : "Other curfew requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - },{ - "id" : "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", - "label" : "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity", - "shortCode" : "D49", - "level" : "O", - "rank" : 60000, - "wordGroups" : [ { - "wordGroup" : [ "Order", "49", "publicity" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8b419e6d-c248-4f9e-8638-470d237022b1", - "label" : "Details of reporting restriction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "PressOn", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - },{ - "id": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", - "version": "2021-02-25T12:42:54.190Z", - "startDate": "2021-02-26", - "label": "Account Consolidated", - "shortCode": "ACON", - "level": "D", - "rank": 8800, - "wordGroups": [ + "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "ruleType": "atleastOneOf" + }, { - "wordGroup": [ - "ACON" - ] + "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", + "ruleType": "atleastOneOf" }, { - "wordGroup": [ - "consolidated", - "account" - ] - } - ], - "prompts": [ + "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "ruleType": "atleastOneOf" + }, { - "id": "e6861c6e-0de2-4029-ab8c-c89769daea29", - "label": "Account to be consolidated with existing accounts", - "welshLabel": "Cyfrif i’w gyfuno â chyfrifon presennol", - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 200, - "financial": "N", - "reference": "accountToBeConsolidatedWithExistingAccounts", - "wordGroup": [ - "Consolidated" - ], - "userGroups": [ - - ], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", + "ruleType": "atleastOneOf" }, { - "id": "d05f476d-a0b9-47c7-bf95-d9cfd591b747", - "label": "Account to be consolidated with existing account number", - "welshLabel": "Cyfrif i’w gyfuno â rhif cyfrif presennol", - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 100, - "financial": "N", - "reference": "accountToBeConsolidatedWithExistingAccountNumber", - "wordGroup": [ - "Consolidated" - ], - "userGroups": [ - - ], - "min": "1", - "max": "20", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", + "ruleType": "atleastOneOf" }, { - "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label": "Additional information", - "welshLabel": "Gwybodaeth ychwanegol", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "financial": "N", - "reference": "additionalInformation", - "userGroups": [ - - ], - "min": "1", - "max": "1000", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "761fa811-cf01-41b5-8630-55485205f8d9", + "ruleType": "atleastOneOf" } ], - "welshLabel": "Cyfrif wedi’i gyfuno", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "version": "2022-07-07T11:37:58.943Z", + "startDate": "2022-07-08", + "label": "Is electronic monitoring required", + "shortCode": "EMREQ", + "level": "O", + "rank": 32900, + "userGroups": [], "financial": "N", "unscheduled": false, "adjournment": "N", - "category": "F", + "category": "I", "urgent": false, "convicted": "N", "d20": false, + "resultDefinitionGroup": "", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, "rollUpPrompts": false, "publishedForNows": false, "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, + "excludedFromResults": true, + "alwaysPublished": false, "jurisdiction": "B", - "libraCode": "ACON", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "8b1cff00-a456-40da-9ce4-f11c20959084", - "version": "2022-12-08T20:00:45.162Z", - "startDate": "2022-12-09", - "label": "Suspended sentence order - imprisonment", - "shortCode": "SUSPS", - "level": "O", - "rank": 30500, - "wordGroups": [ - { - "wordGroup": [ - "SUSPS" - ] - }, + "resultDefinitionRules": [ { - "wordGroup": [ - "suspended", - "imprisonment" - ] + "childResultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "ruleType": "mandatory" } ], + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": false, + "isBooleanResult": true + }, + { + "id": "859c7729-93bf-4fda-8345-3e56695dddb5", + "version": "2022-12-08T20:05:27.835Z", + "startDate": "2022-12-09", + "label": "First Review Hearing - Suspended", + "shortCode": "FRHS", + "level": "D", + "rank": 2800, "prompts": [ { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Years" - ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Flynedd", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Months" - ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Mis", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Weeks" - ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Wythnos", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Days" - ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Niwrnod", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": "Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 700, - "financial": "N", - "reference": "bailRemandDaysToCountTaggedDays", - "wordGroup": [ - "Tagged days" - ], - "userGroups": [], - "min": "0", - "max": "999", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "746c833a-7d33-4800-a40c-425dbacf7492", - "label": "Concurrent", - "welshLabel": "Cydamserol", + "id": "34f900f3-132c-4baa-a9d3-b7fd5c7b24d0", + "label": "Judge reserves review hearing", + "welshLabel": "Barnwr yn neilltuo gwrandawiad adolygu", "resultPromptRule": "optional", "type": "BOOLEAN", - "sequence": 120, - "financial": "N", - "reference": "concurrent", - "wordGroup": [ - "Concurrent" - ], - "userGroups": [], - "qual": "C", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - },{ - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", + "sequence": 700, "financial": "N", - "reference": "suspendedPeriod", + "reference": "judgeReservesReviewHearing", "wordGroup": [ - "Years" + "Review" ], "userGroups": [], - "durationSequence": 2, - "welshDuration": "Flynedd", "courtExtract": "Y", - "jurisdiction": "B", + "jurisdiction": "C", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "suspendedPeriod", - "wordGroup": [ - "Months" - ], + "reference": "hCHOUSEOrganisationName", "userGroups": [], - "durationSequence": 2, - "welshDuration": "Mis", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "OrganisationName", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "7784b81d-44d2-43c0-a903-a53b0e73683b", - "label": "Consecutive to offence", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 140, + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "consecutiveToOffenceNumber", - "wordGroup": [ - "Consecutive to" - ], + "reference": "hCHOUSEAddress1", "userGroups": [], - "min": "1", - "max": "99", - "qual": "F", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine1", "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "welshLabel": "Swyddog cyfrifol", - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 340, - "financial": "N", - "reference": "responsibleOfficer", - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "90d17fe3-8f87-43f2-bd96-a4108e4603ae", - "label": "The reasons for this", - "welshLabel": "Y rhesymau dros hyn", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", "resultPromptRule": "optional", - "type": "FIXLOM", + "type": "NAMEADDRESS", "sequence": 300, "financial": "N", - "reference": "theReasonsForThis", - "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "reference": "hCHOUSEAddress2", "userGroups": [], "min": "", "max": "", "courtExtract": "Y", - "jurisdiction": "M", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "da9c91a6-7090-44f3-8644-b4b184533fc4", - "label": "which is on case number", - "welshLabel": "sydd dan y rhif achos", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 160, - "financial": "N", - "reference": "whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber", - "userGroups": [], - "min": "1", - "max": "20", - "qual": "", - "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine2", "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "ea957761-0813-4a92-9e7c-b536654325f0", - "label": "Imprisonment reasons", - "welshLabel": "Rhesymau dros garcharu", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "financial": "N", - "reference": "imprisonmentReasons", - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "M", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "welshLabel": "Llys sy’n Goruchwylio", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 3", "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 360, + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "supervisingCourt", + "reference": "hCHOUSEAddress3", "userGroups": [], - "min": "1", - "max": "120", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "supervisingCourt", + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine3", "nameEmail": false, - "cacheable": 2, "associatedWithReferenceData": true - } - ], - "welshLabel": "Gorchymyn dedfryd ohiriedig - carcharu", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "Y", - "d20": false, - "dvlaCode": "C", - "cjsCode": "1115", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "libraCode": "SUSPS", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "859c7729-93bf-4fda-8345-3e56695dddb5", - "ruleType": "optional" - } - ], - "canBeSubjectOfBreach": true, - "canBeSubjectOfVariation": true, - "resultTextTemplate": "Committed to prison for {imprisonmentPeriod}[ {concurrent}][ consecutive to offence {consecutiveToOffenceNumber}][ which is on case number {whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber}] suspended. Reason: {imprisonmentReasons}.[ Reason for custody: {theReasonsForThis}.] [The defendant must comply with the requirements (shown below) within the supervision period.%CRS%] %FRHS% In the event of activation of sentence: {bailRemandDaysToCountTaggedDays} bail remand days to count. %STIMP%", - "dependantResultDefinitionGroup": "Community Requirements", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "version": "2022-12-08T20:00:45.902Z", - "startDate": "2022-12-09", - "label": "Total suspended custodial period", - "shortCode": "STIMP", - "level": "D", - "rank": 29200, - "wordGroups": [ - { - "wordGroup": [ - "STIMP" - ] }, { - "wordGroup": [ - "SSO", - "suspended", - "custodial", - "imprisonment", - "period", - "Total" - ] - } - ], - "prompts": [ - { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 4", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "totalCustodialPeriod", - "wordGroup": [ - "Years" - ], + "reference": "hCHOUSEAddress4", "userGroups": [], - "welshDuration": "Flynedd", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine4", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "totalCustodialPeriod", - "wordGroup": [ - "Months" - ], + "reference": "hCHOUSEAddress5", "userGroups": [], - "welshDuration": "Mis", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine5", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "totalCustodialPeriod", - "wordGroup": [ - "Weeks" - ], + "reference": "hCHOUSEPostCode", "userGroups": [], - "welshDuration": "Wythnos", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "PostCode", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse email address 1", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "totalCustodialPeriod", - "wordGroup": [ - "Days" - ], + "reference": "hCHOUSEEmailAddress1", "userGroups": [], - "welshDuration": "Niwrnod", - "courtExtract": "Y", + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", - "hidden": false, + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "EmailAddress1", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", - "label": "Judge reserves breach proceedings", - "welshLabel": "Barnwr yn neilltuo achos torri amodau", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse email address 2", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1600, + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "judgeReservesBreachProceedings", - "wordGroup": [ - "reserved" - ], + "reference": "hCHOUSEEmailAddress2", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "EmailAddress2", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", + "label": "First review date", + "welshLabel": "Dyddiad yr adolygiad cyntaf", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "financial": "N", + "reference": "firstReviewDate", "userGroups": [], "courtExtract": "Y", - "jurisdiction": "C", + "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", - "resultPromptRule": "optional", - "type": "INT", - "sequence": 500, - "duration": "Years", + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "welshLabel": "Amser y gwrandawiad", + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, "financial": "N", - "reference": "supervisionPeriod", - "wordGroup": [ - "Years" - ], + "reference": "timeOfHearing", "userGroups": [], - "welshDuration": "Flynedd", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -50970,41 +65762,36 @@ "associatedWithReferenceData": false }, { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", - "resultPromptRule": "optional", + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "welshLabel": "Ystafell Llys", + "resultPromptRule": "mandatory", "type": "INT", - "sequence": 500, - "duration": "Months", + "sequence": 400, "financial": "N", - "reference": "supervisionPeriod", - "wordGroup": [ - "Months" - ], + "reference": "HCROOM", "userGroups": [], - "welshDuration": "Mis", + "min": "1", + "max": "99", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "referenceDataKey": "HCROOM", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", - "resultPromptRule": "optional", - "type": "INT", + "id": "978001b1-47d5-4cda-a1b6-b6c3a2e4975d", + "label": "Review frequency", + "welshLabel": "Amlder yr adolygiadau", + "resultPromptRule": "mandatory", + "type": "TXT", "sequence": 500, - "duration": "Weeks", "financial": "N", - "reference": "supervisionPeriod", - "wordGroup": [ - "Weeks" - ], + "reference": "reviewFrequency", "userGroups": [], - "welshDuration": "Wythnos", + "min": "1", + "max": "50", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -51012,41 +65799,77 @@ "associatedWithReferenceData": false }, { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", + "id": "fe774a35-5353-4e4f-adef-44b7a8717dc6", + "label": "Defendant to attend review", + "welshLabel": "Diffynnydd i fynychu adolygiad", "resultPromptRule": "optional", - "type": "INT", - "sequence": 500, - "duration": "Days", + "type": "BOOLEAN", + "sequence": 600, "financial": "N", - "reference": "supervisionPeriod", - "wordGroup": [ - "Days" - ], + "reference": "defendantToAttendReview", "userGroups": [], - "welshDuration": "Niwrnod", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false - }, + } + ], + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "First Review Hearing", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "jurisdiction": "B", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "This order is to be reviewed {reviewFrequency} starting on {firstReviewDate} [at {timeOfHearing}] at {HCHOUSE~Name}. [{defendantToAttendReview}.]", + "triggeredApplicationCode": "CJ03518", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "65a59f46-61ae-4dac-a040-a25fca647cb2", + "version": "2022-12-08T20:00:36.385Z", + "startDate": "2022-12-09", + "label": "Residence", + "shortCode": "RR", + "level": "O", + "rank": 31800, + "wordGroups": [ + { + "wordGroup": [ + "RR", + "residence" + ] + } + ], + "prompts": [ { - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 200, + "sequence": 300, "duration": "Years", "financial": "N", - "reference": "suspendedPeriod", + "reference": "periodOfResidence", "wordGroup": [ "Years" ], "userGroups": [], - "durationSequence": 2, "welshDuration": "Flynedd", "courtExtract": "Y", "jurisdiction": "B", @@ -51055,20 +65878,19 @@ "associatedWithReferenceData": false }, { - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 200, + "sequence": 300, "duration": "Months", "financial": "N", - "reference": "suspendedPeriod", + "reference": "periodOfResidence", "wordGroup": [ "Months" ], "userGroups": [], - "durationSequence": 2, "welshDuration": "Mis", "courtExtract": "Y", "jurisdiction": "B", @@ -51077,224 +65899,60 @@ "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, + "type": "INT", + "sequence": 300, + "duration": "Weeks", "financial": "N", - "reference": "probationteamtobenotifiedOrganisationName", + "reference": "periodOfResidence", + "wordGroup": [ + "Weeks" + ], "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", + "welshDuration": "Wythnos", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "OrganisationName", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 1", + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress1", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress2", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 3", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress3", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine3", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 4", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress4", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine4", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 5", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress5", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine5", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified post code", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "type": "INT", + "sequence": 300, + "duration": "Days", "financial": "N", - "reference": "probationteamtobenotifiedPostCode", + "reference": "periodOfResidence", + "wordGroup": [ + "Days" + ], "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", + "welshDuration": "Niwrnod", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "PostCode", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", + "id": "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", + "label": "Address", + "welshLabel": "Cyfeiriad", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress1", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress2", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "0ccd9da5-d611-4f9e-92ff-02375be8bb11", - "label": "Total sentence consecutive to", - "welshLabel": "Y ddedfryd gyfan yn dilyn y", - "resultPromptRule": "optional", "type": "TXT", - "sequence": 300, + "sequence": 200, "financial": "N", - "reference": "totalSentenceConsecutiveTo", + "reference": "address", + "wordGroup": [ + "Address" + ], "userGroups": [], - "min": "1", - "max": "150", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -51302,34 +65960,34 @@ "associatedWithReferenceData": false }, { - "id": "3e7dab34-bb9d-46df-9a45-139113ee0b09", - "label": "which was imposed by", - "welshLabel": "a orfodwyd gan", + "id": "b7591fa7-9605-431f-b94e-19cd0fe3e04e", + "label": "Name of place", + "welshLabel": "Enw’r lleoliad", "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 400, + "type": "TXT", + "sequence": 100, "financial": "N", - "reference": "whichWasImpBy", + "reference": "nameOfPlace", "userGroups": [], + "min": "1", + "max": "50", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "whichWasImpBy", "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "21549bc3-5be9-4a91-abc7-57d8ed1b1676", - "label": "Reason for sentence without PSR", - "welshLabel": "Rheswm dros ddedfryd heb PSR", + "id": "fd192d80-cf96-403e-9c3b-c0738d5a4a13", + "label": "Responsible officer may approve different address", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, + "type": "BOOLEAN", + "sequence": 400, "financial": "N", - "reference": "reasonForSentenceWithoutPSR", + "reference": "responsibleOfficeMayApproveDifferentAddress", "userGroups": [], "min": "1", - "max": "1000", + "max": "1", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -51337,17 +65995,17 @@ "associatedWithReferenceData": false }, { - "id": "850439de-16ca-4282-b0f1-0ce6bf418f4e", - "label": "The custodial sentence has been suspended because", - "welshLabel": "Mae'r ddedfryd o garchar wedi'i gohirio oherwydd", + "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", + "label": "Additional information", + "welshLabel": "Gwybodaeth ychwanegol", "resultPromptRule": "optional", "type": "TXT", - "sequence": 600, + "sequence": 500, "financial": "N", - "reference": "theCustodialSentenceHasBeenSuspendedBecause", + "reference": "additionalInformation", "userGroups": [], "min": "1", - "max": "500", + "max": "250", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -51355,553 +66013,516 @@ "associatedWithReferenceData": false } ], - "welshLabel": "Cyfanswm y cyfnod gohiriedig yn y ddalfa", + "welshLabel": "Preswylio", "financial": "N", "unscheduled": false, "adjournment": "N", "category": "A", "urgent": false, - "convicted": "Y", + "convicted": "N", "d20": false, + "resultDefinitionGroup": "Community Requirement", + "cjsCode": "3107", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": true, + "rollUpPrompts": false, + "publishedForNows": false, "publishedAsAPrompt": false, "excludedFromResults": false, - "alwaysPublished": false, + "alwaysPublished": true, "jurisdiction": "B", "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "resultTextTemplate": "Total custodial period {totalCustodialPeriod} suspended for {suspendedPeriod} [Total sentence consecutive to {totalSentenceConsecutiveTo}][ which was imposed by {whichWasImpBy}]. [Supervision period {supervisionPeriod}.][ The custodial sentence has been suspended because {theCustodialSentenceHasBeenSuspendedBecause}.][ Reason for sentence without PSR {reasonForSentenceWithoutPSR}.]", + "resultTextTemplate": "Residence Requirement: Live at[ {nameOfPlace},] {address} for {periodOfResidence}.[ {responsibleOfficerMayApproveDifferentAddress}.] {additionalInformation}", "isAvailableForCourtExtract": true, - "isBooleanResult": false, - "resultDefinitionGroup":"Community Requirements" + "isBooleanResult": false }, { - "id": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "version": "2022-07-07T11:34:43.558Z", - "startDate": "2022-07-08", - "label": "Community requirements", - "shortCode": "CRS", + "id": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "version": "2022-12-08T20:00:31.000Z", + "startDate": "2022-12-09", + "label": "Unpaid work", + "shortCode": "UPWR", "level": "O", - "rank": 101200, - "userGroups": [], - "welshLabel": "Gofynion cymunedol", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Community Requirements, ABC", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", - "ruleType": "atleastOneOf" - }, + "rank": 32000, + "wordGroups": [ { - "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "ruleType": "atleastOneOf" + "wordGroup": [ + "UPWR" + ] }, { - "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", - "ruleType": "atleastOneOf" - }, + "wordGroup": [ + "Unpaid", + "work" + ] + } + ], + "prompts": [ { - "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", - "ruleType": "atleastOneOf" + "id": "72413aef-ecb9-4e9b-a143-31d1e9c11584", + "label": "Number of hours", + "welshLabel": "Nifer yr oriau", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Hours", + "financial": "N", + "reference": "numberOfHours", + "wordGroup": [ + "Hours" + ], + "userGroups": [], + "min": "1", + "max": "999", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "ruleType": "atleastOneOf" + "id": "17fd32a7-344f-4a0e-a3ae-5b7868f11bcd", + "label": "Additional / concurrent to what", + "welshLabel": "Yn ogystal â / yn gydamserol â beth", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "financial": "N", + "reference": "additionalConcurrentToWhat", + "userGroups": [], + "min": "1", + "max": "200", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "761fa811-cf01-41b5-8630-55485205f8d9", - "ruleType": "atleastOneOf" + "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", + "label": "Additional information", + "welshLabel": "Gwybodaeth ychwanegol", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "financial": "N", + "reference": "additionalInformation", + "userGroups": [], + "min": "1", + "max": "250", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false } ], - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "version": "2022-07-07T11:37:58.943Z", - "startDate": "2022-07-08", - "label": "Is electronic monitoring required", - "shortCode": "EMREQ", - "level": "O", - "rank": 32900, - "userGroups": [], + "welshLabel": "Gwaith di-dâl", "financial": "N", "unscheduled": false, "adjournment": "N", - "category": "I", + "category": "A", "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "", + "resultDefinitionGroup": "Community Requirement", + "cjsCode": "3101", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, "rollUpPrompts": false, "publishedForNows": false, "publishedAsAPrompt": false, - "excludedFromResults": true, - "alwaysPublished": false, + "excludedFromResults": false, + "alwaysPublished": true, "jurisdiction": "B", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", - "ruleType": "mandatory" - } - ], "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": false, - "isBooleanResult": true + "resultTextTemplate": "Unpaid Work Requirement: Carry out unpaid work for {numberOfHours}[ Additional / concurrent to {additionalConcurrentToWhat}] within the next twelve months. This work will be supervised by the responsible officer. {additionalInformation}", + "isAvailableForCourtExtract": true, + "isBooleanResult": false }, { - "id": "859c7729-93bf-4fda-8345-3e56695dddb5", - "version": "2022-12-08T20:05:27.835Z", + "id": "dada120c-160a-49a9-b040-e8b6b7128d67", + "version": "2022-12-08T20:04:19.900Z", "startDate": "2022-12-09", - "label": "First Review Hearing - Suspended", - "shortCode": "FRHS", - "level": "D", - "rank": 2800, + "label": "Notification of electronic monitoring order (requirement)", + "shortCode": "NORDRC", + "level": "O", + "rank": 5900, + "wordGroups": [ + { + "wordGroup": [ + "NORDRC" + ] + } + ], "prompts": [ { - "id": "34f900f3-132c-4baa-a9d3-b7fd5c7b24d0", - "label": "Judge reserves review hearing", - "welshLabel": "Barnwr yn neilltuo gwrandawiad adolygu", - "resultPromptRule": "optional", + "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", + "label": "Continuation of electronic monitoring", + "welshLabel": "Parhau gyda monitro electronig", + "resultPromptRule": "oneOf", "type": "BOOLEAN", - "sequence": 700, + "sequence": 500, "financial": "N", - "reference": "judgeReservesReviewHearing", + "reference": "continuationOfElectronicMonitoring", "wordGroup": [ - "Review" + "continuation" ], "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "C", + "courtExtract": "N", + "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse organisation name", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor organisation name", "resultPromptRule": "mandatory", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEOrganisationName", + "reference": "electronicmonitoringcontractorOrganisationName", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "OrganisationName", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 1", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 1", "resultPromptRule": "mandatory", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEAddress1", + "reference": "electronicmonitoringcontractorAddress1", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "AddressLine1", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 2", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 2", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEAddress2", + "reference": "electronicmonitoringcontractorAddress2", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "AddressLine2", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 3", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 3", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEAddress3", + "reference": "electronicmonitoringcontractorAddress3", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "AddressLine3", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 4", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 4", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEAddress4", + "reference": "electronicmonitoringcontractorAddress4", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "AddressLine4", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 5", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 5", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEAddress5", + "reference": "electronicmonitoringcontractorAddress5", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "AddressLine5", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse post code", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor post code", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEPostCode", + "reference": "electronicmonitoringcontractorPostCode", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "PostCode", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse email address 1", - "resultPromptRule": "optional", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 1", + "resultPromptRule": "mandatory", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEEmailAddress1", + "reference": "electronicmonitoringcontractorEmailAddress1", "userGroups": [], - "min": "", - "max": "", "courtExtract": "N", "jurisdiction": "B", "hidden": true, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "EmailAddress1", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse email address 2", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 2", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEEmailAddress2", + "reference": "electronicmonitoringcontractorEmailAddress2", "userGroups": [], - "min": "", - "max": "", "courtExtract": "N", "jurisdiction": "B", "hidden": true, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "EmailAddress2", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", - "label": "First review date", - "welshLabel": "Dyddiad yr adolygiad cyntaf", + "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label": "Special needs", + "welshLabel": "Anghenion arbennig", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "financial": "N", + "reference": "specialNeeds", + "userGroups": [], + "min": "1", + "max": "120", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "f6ca6307-bdab-42d3-968b-44485824b535", + "label": "Are there any additional requirements as well?", + "welshLabel": "A oes unrhyw ofynion ychwanegol hefyd?", "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, + "type": "BOOLEAN", + "sequence": 600, "financial": "N", - "reference": "firstReviewDate", + "reference": "areThereAnyAdditionalRequirementsAsWell", "userGroups": [], - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", - "label": "Time of hearing", - "welshLabel": "Amser y gwrandawiad", + "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "label": "Does the offender have any special needs?", + "welshLabel": "A oes gan y troseddwr unrhyw anghenion arbennig?", "resultPromptRule": "mandatory", - "type": "TIME", + "type": "BOOLEAN", + "sequence": 1000, + "financial": "N", + "reference": "doesTheOffenderHaveAnySpecialNeeds", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "5ce30920-b300-471c-8fd7-67f3a193476a", + "label": "First notification of electronic monitoring", + "welshLabel": "Hysbysiad cyntaf o fonitro electronig", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", "sequence": 200, "financial": "N", - "reference": "timeOfHearing", + "reference": "firstNotificationOfElectronicMonitoring", "userGroups": [], - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "welshLabel": "Ystafell Llys", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, + "id": "c7d508e9-1ea0-4a41-9961-703a5d164b6f", + "label": "Language", + "welshLabel": "Iaith", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 900, "financial": "N", - "reference": "HCROOM", + "reference": "language", "userGroups": [], "min": "1", - "max": "99", - "courtExtract": "Y", + "max": "60", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "HCROOM", + "referenceDataKey": "language", "nameEmail": false, "associatedWithReferenceData": true }, { - "id": "978001b1-47d5-4cda-a1b6-b6c3a2e4975d", - "label": "Review frequency", - "welshLabel": "Amlder yr adolygiadau", - "resultPromptRule": "mandatory", + "id": "9cae4974-5cf4-4701-ae3a-74f8d586b16d", + "label": "Additional notification of electronic monitoring. Date and case reference of original order", + "welshLabel": "Hysbysiad ychwanegol o fonitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", + "resultPromptRule": "oneOf", "type": "TXT", - "sequence": 500, + "sequence": 400, "financial": "N", - "reference": "reviewFrequency", + "reference": "additionalNotificationOfElectronicMonitoringDateOfOriginalOrder", "userGroups": [], - "min": "1", - "max": "50", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "fe774a35-5353-4e4f-adef-44b7a8717dc6", - "label": "Defendant to attend review", - "welshLabel": "Diffynnydd i fynychu adolygiad", - "resultPromptRule": "optional", + "id": "efffc361-7cca-40a5-a436-a1fdb590e8be", + "label": "Variation of electronic monitoring. Date and case reference of original order", + "welshLabel": "Amrywio monitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "financial": "N", + "reference": "variationOfElectronicMonitoringDateOfOriginalOrder", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", + "label": "Was an interpreter used?", + "welshLabel": "A oedd cyfieithydd yn bresennol?", + "resultPromptRule": "mandatory", "type": "BOOLEAN", - "sequence": 600, + "sequence": 800, "financial": "N", - "reference": "defendantToAttendReview", + "reference": "wasAnInterpreterUsed", "userGroups": [], - "courtExtract": "Y", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label": "Defendant's mobile number", + "welshLabel": "Rhif ffôn symudol y diffynnydd", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "financial": "N", + "reference": "defendantsMobileNumber", + "userGroups": [], + "min": "1", + "max": "20", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, + "cacheable": 2, + "cacheDataPath": "personDefendant.personDetails.contact.mobile", "associatedWithReferenceData": false } ], + "welshLabel": "Hysbysiad o orchymyn monitro electronig (gofyniad)", "financial": "N", "unscheduled": false, "adjournment": "N", @@ -51909,1636 +66530,2063 @@ "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "First Review Hearing", + "resultDefinitionGroup": "Community requirements,ELMON", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, + "rollUpPrompts": false, + "publishedForNows": true, + "publishedAsAPrompt": true, "excludedFromResults": false, "alwaysPublished": false, "jurisdiction": "B", "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "resultTextTemplate": "This order is to be reviewed {reviewFrequency} starting on {firstReviewDate} [at {timeOfHearing}] at {HCHOUSE~Name}. [{defendantToAttendReview}.]", - "triggeredApplicationCode": "CJ03518", - "isAvailableForCourtExtract": true, + "isAvailableForCourtExtract": false, "isBooleanResult": false }, { - "id": "65a59f46-61ae-4dac-a040-a25fca647cb2", - "version": "2022-12-08T20:00:36.385Z", - "startDate": "2022-12-09", - "label": "Residence", - "shortCode": "RR", + "id": "b2d06bbc-e90e-4df8-8851-6e4a70894828", + "label": "Obligatory disqualification", + "shortCode": "DDO", "level": "O", - "rank": 31800, + "rank": 67200, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, + "financial": "N", + "unscheduled": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": true, + "publishedForNows": false, + "lifeDuration": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "429fb553-4fb3-45eb-a700-7e5e69d1ca29", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "ea1ee5a4-be13-48dc-8411-78f22e01c236", + "ruleType": "optional" + } + ], "wordGroups": [ { "wordGroup": [ - "RR", - "residence" + "DDO", + "obligatory", + "disqualification" + ] + }, + { + "wordGroup": [ + "DDO" ] } ], + "adjournment": "N", + "category": "A", + "urgent": true, + "convicted": "Y", + "d20": true, + "cjsCode": "3070", + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "libraCode": "DDO", + "lCode": "DDO", + "resultTextTemplate": "Disqualified for holding or obtaining a driving licence for {disqualificationPeriod}.[ %DOID%.] Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988.[ This includes an extension period of {extensionPeriodSection35AImmediateCustodialSentence} in accordance with section 35A (immediate custodial sentence).][ This includes an extension period of {extensionPeriodSection35BEffectOfCustodialSentenceNoted} in accordance with section 35B (effect of custodial sentence noted).]", + "resultWording": "Disqualified for holding or obtaining a driving licence. Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988", + "welshResultWording": "Gwahardd rhag dal neu gael trwydded yrru. Gwaharddiad yn orfodol ar gyfer y trosedd. Cofnod gyrru wedi’i ardystio. Adran 34(1) Deddf Troseddwyr Traffig Ffyrdd 1988", + "terminatesOffenceProceedings": false, "prompts": [ { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 300, + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, "duration": "Years", - "financial": "N", - "reference": "periodOfResidence", + "welshDuration": "Flynedd", + "userGroups": [], "wordGroup": [ "Years" ], - "userGroups": [], - "welshDuration": "Flynedd", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "disqualificationPeriod", + "welshLabel": "Cyfnod gwahardd", + "durationSequence": 1 }, { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 300, + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, "duration": "Months", - "financial": "N", - "reference": "periodOfResidence", - "wordGroup": [ - "Months" - ], - "userGroups": [], "welshDuration": "Mis", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "financial": "N", - "reference": "periodOfResidence", + "userGroups": [], "wordGroup": [ - "Weeks" + "months" ], - "userGroups": [], - "welshDuration": "Wythnos", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "disqualificationPeriod", + "welshLabel": "Cyfnod gwahardd", + "durationSequence": 1 }, { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 300, + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, "duration": "Days", - "financial": "N", - "reference": "periodOfResidence", + "welshDuration": "Niwrnod", + "userGroups": [], "wordGroup": [ "Days" ], - "userGroups": [], - "welshDuration": "Niwrnod", "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", - "label": "Address", - "welshLabel": "Cyfeiriad", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, "financial": "N", - "reference": "address", - "wordGroup": [ - "Address" - ], - "userGroups": [], - "courtExtract": "Y", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "disqualificationPeriod", + "welshLabel": "Cyfnod gwahardd", + "durationSequence": 1 }, { - "id": "b7591fa7-9605-431f-b94e-19cd0fe3e04e", - "label": "Name of place", - "welshLabel": "Enw’r lleoliad", + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", "resultPromptRule": "optional", "type": "TXT", - "sequence": 100, - "financial": "N", - "reference": "nameOfPlace", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 400, "userGroups": [], - "min": "1", - "max": "50", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "50", + "reference": "extensionPeriodSection35BEffectOfCustodialSentenceNoted", + "welshLabel": "Cyfnod estyniad adran 35B (effaith dedfryd o garchar wedi’i nodi)" }, { - "id": "fd192d80-cf96-403e-9c3b-c0738d5a4a13", - "label": "Responsible officer may approve different address", + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 400, + "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 500, + "userGroups": [ + "CPS", + "Defence", + "NCES", + "Probation", + "Judiciary", + "Prosecuting Authorities", + "YOTs" + ], + "courtExtract": "N", "financial": "N", - "reference": "responsibleOfficeMayApproveDifferentAddress", - "userGroups": [], - "min": "1", - "max": "1", - "courtExtract": "Y", + "cacheable": 2, + "cacheDataPath": "personDefendant.driverNumber", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "0", + "max": "16", + "reference": "defendantDrivingLicenceNumber", + "welshLabel": "Rhif trwydded yrru'r Diffynnydd" }, { - "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", - "label": "Additional information", - "welshLabel": "Gwybodaeth ychwanegol", + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", "resultPromptRule": "optional", "type": "TXT", - "sequence": 500, - "financial": "N", - "reference": "additionalInformation", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 300, "userGroups": [], - "min": "1", - "max": "250", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "50", + "reference": "extensionPeriodSection35AImmediateCustodialSentence", + "welshLabel": "Cyfnod estyniad adran 35A (dedfryd o garchar ar unwaith)" } - ], - "welshLabel": "Preswylio", + ] + }, + { + "id": "f666fd58-36c5-493f-aa11-89714faee6e6", + "label": "Remand in care of Local Authority with bail direction", + "shortCode": "RILAB", + "level": "O", + "rank": 116200, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Community Requirement", - "cjsCode": "3107", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "B", "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "resultTextTemplate": "Residence Requirement: Live at[ {nameOfPlace},] {address} for {periodOfResidence}.[ {responsibleOfficerMayApproveDifferentAddress}.] {additionalInformation}", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "9bec5977-1796-4645-9b9e-687d4f23d37d", - "version": "2022-12-08T20:00:31.000Z", - "startDate": "2022-12-09", - "label": "Unpaid work", - "shortCode": "UPWR", - "level": "O", - "rank": 32000, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": true, + "publishedForNows": true, + "lifeDuration": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "5dc70e17-6095-4bd8-8597-36186e7eaba1", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "874911d0-acf2-4b6f-bcca-cacbb6bb2862", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ], "wordGroups": [ { "wordGroup": [ - "UPWR" + "RILAB" ] }, { "wordGroup": [ - "Unpaid", - "work" + "authority", + "bail", + "care", + "direction", + "LA", + "local", + "remand" ] } ], + "adjournment": "Y", + "category": "I", + "urgent": true, + "convicted": "N", + "d20": false, + "cjsCode": "4029", + "postHearingCustodyStatus": "L", + "jurisdiction": "B", + "libraCode": "RILAB", + "resultTextTemplate": "Remanded until %NEXH% in accommodation provided by the local authority for {nameOfLocalAuthority}[ subject to the following requirements: {requirementsImposedOnLocalAuthority}].[ Further requirements: {furtherReq}.] Basis: {remandBasis}.[ Adjournment reason: %ADJR%.] Directed to be bailed to {bailDate} at {bailTime} upon satisfying the following conditions: %PREBC%[ and subject to the following conditions: %BAIC%].[ Conditions imposed on the defendant: %LACOND%]", + "terminatesOffenceProceedings": false, "prompts": [ { - "id": "72413aef-ecb9-4e9b-a143-31d1e9c11584", - "label": "Number of hours", - "welshLabel": "Nifer yr oriau", + "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label": "Remand basis", "resultPromptRule": "mandatory", - "type": "INT", + "type": "FIXL", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, "sequence": 100, - "duration": "Hours", - "financial": "N", - "reference": "numberOfHours", - "wordGroup": [ - "Hours" - ], + "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", "userGroups": [], - "min": "1", - "max": "999", "courtExtract": "Y", + "financial": "N", + "cacheable": 1, "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "remandBasis", + "welshLabel": "Sail remand" }, { - "id": "17fd32a7-344f-4a0e-a3ae-5b7868f11bcd", - "label": "Additional / concurrent to what", - "welshLabel": "Yn ogystal â / yn gydamserol â beth", + "id": "15f8330b-9554-4ea6-b75b-7e192724ca06", + "label": "Further requirements", "resultPromptRule": "optional", "type": "TXT", - "sequence": 200, - "financial": "N", - "reference": "additionalConcurrentToWhat", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 700, "userGroups": [], - "min": "1", - "max": "200", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, + "min": "1", + "max": "1000", + "reference": "furtherReq", + "welshLabel": "Gofynion pellach" + }, + { + "id": "f63f692f-3bfc-4d0f-8e45-acd99b06431c", + "label": "Local Authority", + "resultPromptRule": "mandatory", + "type": "FIXL", "nameEmail": false, - "associatedWithReferenceData": false + "referenceDataKey": "nameOfLocalAuthority", + "hidden": false, + "associateToReferenceData": true, + "sequence": 200, + "userGroups": [], + "courtExtract": "Y", + "financial": "N", + "cacheable": 2, + "jurisdiction": "B", + "min": "", + "max": "", + "reference": "nameOfLocalAuthority", + "welshLabel": "Awdurdod Lleol" }, { - "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", - "label": "Additional information", - "welshLabel": "Gwybodaeth ychwanegol", + "id": "b275cca5-58a6-415c-9b67-b4277c7f7e6e", + "label": "Requirements imposed on Local Authority", "resultPromptRule": "optional", "type": "TXT", - "sequence": 300, - "financial": "N", - "reference": "additionalInformation", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 600, "userGroups": [], - "min": "1", - "max": "250", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", + "min": "1", + "max": "1000", + "reference": "requirementsImposedOnLocalAuthority", + "welshLabel": "Gofynion a osodir ar Awdurdod Lleol" + }, + { + "id": "9ecac6aa-a205-481f-b67d-e2425ad074cf", + "label": "Bail date", + "resultPromptRule": "mandatory", + "type": "DATE", + "nameEmail": false, "hidden": false, + "associateToReferenceData": false, + "sequence": 400, + "userGroups": [], + "courtExtract": "Y", + "financial": "N", + "jurisdiction": "B", + "reference": "bailDate" + }, + { + "id": "e200e964-628a-4284-bd4e-fab9c819f7f1", + "label": "Bail time", + "resultPromptRule": "mandatory", + "type": "TIME", "nameEmail": false, - "associatedWithReferenceData": false + "hidden": false, + "associateToReferenceData": false, + "sequence": 500, + "userGroups": [], + "courtExtract": "Y", + "financial": "N", + "jurisdiction": "B", + "reference": "bailTime" } - ], - "welshLabel": "Gwaith di-dâl", + ] + }, + { + "id": "5dc70e17-6095-4bd8-8597-36186e7eaba1", + "label": "Remand to care conditions imposed on the defendant", + "shortCode": "LACOND", + "level": "O", + "rank": 700, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Community Requirement", - "cjsCode": "3101", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "B", "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "resultTextTemplate": "Unpaid Work Requirement: Carry out unpaid work for {numberOfHours}[ Additional / concurrent to {additionalConcurrentToWhat}] within the next twelve months. This work will be supervised by the responsible officer. {additionalInformation}", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "dada120c-160a-49a9-b040-e8b6b7128d67", - "version": "2022-12-08T20:04:19.900Z", - "startDate": "2022-12-09", - "label": "Notification of electronic monitoring order (requirement)", - "shortCode": "NORDRC", - "level": "O", - "rank": 5900, - "wordGroups": [ + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "671c65dc-8406-4923-bff2-e193a7fbd489", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7c54ceff-9b16-448e-995a-053c6d47854c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6f2e2861-0ad4-4721-b0d2-65b1d5f16895", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "3b06d7a2-03e7-460d-8ce9-c8a48bc96040", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d4bc7ce5-ad94-43dc-a3d6-558049380a6c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e101f583-9ead-4c87-a1a4-d631d43517d3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c34f6cd8-60b2-4ca8-a150-c1aa88fb0bfa", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "db5e2bc8-13b4-4dd2-b1a0-aa130e62b4f0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6a84ebbd-d1e9-43cc-a3c3-a3b459d8cb5a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "8bc69b99-359e-48a2-a353-66fe009b5507", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bd77f0bc-11a5-4e08-abe5-697e27c9201e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "4dcb9901-6539-4a4f-b894-f62b3ff51862", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f68c277a-4f7d-4da5-bd8a-396e6671e05c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dffdac97-7b67-4ca7-b72b-7ea417e931c8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a65e4db1-e02a-489f-9f4e-2e38f77807c6", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "eb0260f2-c923-48c9-91e9-f4c97c9d37fe", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5c7db83b-bfb4-4d0d-8c63-aa2513e756bb", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "30ff00bf-583d-48e4-ab13-34e4445443fb", + "ruleType": "atleastOneOf" + }, { - "wordGroup": [ - "NORDRC" - ] - } - ], - "prompts": [ + "childResultDefinitionId": "35f46562-ebb6-423a-99e2-1dd65c2e5f97", + "ruleType": "atleastOneOf" + }, { - "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", - "label": "Continuation of electronic monitoring", - "welshLabel": "Parhau gyda monitro electronig", - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 500, - "financial": "N", - "reference": "continuationOfElectronicMonitoring", - "wordGroup": [ - "continuation" - ], - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "f2cab905-935b-49e5-9f82-badcfb6c6c60", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor organisation name", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorOrganisationName", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "OrganisationName", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "b1c731d5-a54c-4b9a-9c76-ad3dec4240ac", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 1", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress1", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "e363cb46-0e5c-479a-956f-c29acbb5b6ca", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress2", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "66017606-d552-4e06-a835-c0a1af03467a", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 3", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress3", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine3", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "6f8051e0-02fd-4c12-a229-a74e8a15076c", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 4", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress4", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine4", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "2751bd8f-897a-4aa0-b26d-b7bf7b18acff", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 5", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress5", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine5", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "241746c2-1565-4de9-9915-bd65deda1453", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor post code", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorPostCode", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "PostCode", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "6656b25a-de49-4722-b21f-acebe07d4d1c", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor email address 1", + "childResultDefinitionId": "b258561d-ec34-42a6-9c8d-93ab64b59589", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "47fe1304-9772-43c2-bc3c-90a73b55a2d0", + "ruleType": "atleastOneOf" + } + ], + "wordGroups": [ + { + "wordGroup": [ + "LACOND" + ] + }, + { + "wordGroup": [ + "conditions", + "imposed" + ] + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "resultTextTemplate": "%AllChildText%.[ Reasons for Conditions: {reasonsForTheConditionsImposedOnTheDefendant}.]", + "welshLabel": "Remand i amodau gofal a osodir ar y diffynnydd", + "terminatesOffenceProceedings": false, + "prompts": [ + { + "id": "46026657-e495-4b4c-a47e-466fe49dfe2e", + "label": "Reasons for the conditions imposed on the defendant", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", + "type": "FIXLM", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorEmailAddress1", + "fixedListId": "8faf795a-5f70-418f-8104-f62e7b7f8e52", "userGroups": [], + "courtExtract": "Y", + "financial": "N", + "jurisdiction": "B", + "reference": "reasonsForTheConditionsImposedOnTheDefendant", + "welshLabel": "Rhesymau dros yr amodau a osodwyd ar y diffynnydd" + } + ] + }, + { + "id": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", + "label": "Electronic monitoring details", + "shortCode": "ELMONDET", + "level": "O", + "rank": 48800, + "isAvailableForCourtExtract": false, + "financial": "N", + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "lifeDuration": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "terminatesOffenceProceedings": false, + "prompts": [ + { + "id": "2d56a2cf-6159-40e6-b6c2-13b8192bcf62", + "label": "Defendant's mobile number", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", + "financial": "N", "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "EmailAddress1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "min": "6", + "max": "15" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor email address 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Electronic Monitoring Contractor responsible officer", + "resultPromptRule": "mandatory", + "type": "FIXL", "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorEmailAddress2", - "userGroups": [], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "EmailAddress2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "financial": "N", + "jurisdiction": "B" }, { - "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label": "Special needs", - "welshLabel": "Anghenion arbennig", - "resultPromptRule": "optional", + "id": "52056247-a158-4b8b-b2d7-0f92bab219e0", + "label": "Interpreter used - language", + "resultPromptRule": "oneOf", "type": "TXT", - "sequence": 1100, - "financial": "N", - "reference": "specialNeeds", - "userGroups": [], - "min": "1", - "max": "120", + "sequence": 300, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "60" }, { - "id": "f6ca6307-bdab-42d3-968b-44485824b535", - "label": "Are there any additional requirements as well?", - "welshLabel": "A oes unrhyw ofynion ychwanegol hefyd?", - "resultPromptRule": "mandatory", + "id": "6bc228a4-7e28-4b93-a1e9-96432137c696", + "label": "Interpreter not used", + "resultPromptRule": "oneOf", "type": "BOOLEAN", - "sequence": 600, - "financial": "N", - "reference": "areThereAnyAdditionalRequirementsAsWell", - "userGroups": [], + "sequence": 400, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "financial": "N", + "jurisdiction": "B" }, { - "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "id": "4415f5e3-35bc-49ee-8ce4-acb36b91667c", "label": "Does the offender have any special needs?", - "welshLabel": "A oes gan y troseddwr unrhyw anghenion arbennig?", "resultPromptRule": "mandatory", "type": "BOOLEAN", - "sequence": 1000, + "sequence": 500, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "courtExtract": "N", "financial": "N", - "reference": "doesTheOffenderHaveAnySpecialNeeds", - "userGroups": [], + "jurisdiction": "B" + }, + { + "id": "8e29f329-28d3-442c-8470-2a215521b60a", + "label": "Description of special needs", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "1000" }, { - "id": "5ce30920-b300-471c-8fd7-67f3a193476a", - "label": "First notification of electronic monitoring", - "welshLabel": "Hysbysiad cyntaf o fonitro electronig", - "resultPromptRule": "oneOf", + "id": "13058f22-0324-415a-8cdf-f11b64488167", + "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are addtional requirements as well", + "resultPromptRule": "optional", "type": "BOOLEAN", - "sequence": 200, - "financial": "N", - "reference": "firstNotificationOfElectronicMonitoring", - "userGroups": [], + "sequence": 700, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "financial": "N", + "jurisdiction": "B" }, { - "id": "c7d508e9-1ea0-4a41-9961-703a5d164b6f", - "label": "Language", - "welshLabel": "Iaith", + "id": "c024016d-b79e-4bbe-8c15-b7a2acadca9e", + "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are NO addtional requirements", "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 900, - "financial": "N", - "reference": "language", - "userGroups": [], - "min": "1", - "max": "60", + "type": "BOOLEAN", + "sequence": 800, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "referenceDataKey": "language", - "nameEmail": false, - "associatedWithReferenceData": true + "financial": "N", + "jurisdiction": "B" + } + ] + }, + { + "id": "7c54ceff-9b16-448e-995a-053c6d47854c", + "label": "Must stay indoors at home address (or at any other address allowed by the court) between the times specified and present him/herself to a police officer between these times", + "shortCode": "STAYDS", + "level": "O", + "rank": 118200, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, + "financial": "N", + "unscheduled": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, + "wordGroups": [ + { + "wordGroup": [ + "STAYDS" + ] }, { - "id": "9cae4974-5cf4-4701-ae3a-74f8d586b16d", - "label": "Additional notification of electronic monitoring. Date and case reference of original order", - "welshLabel": "Hysbysiad ychwanegol o fonitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 400, - "financial": "N", - "reference": "additionalNotificationOfElectronicMonitoringDateOfOriginalOrder", + "wordGroup": [ + "address", + "home", + "indoors", + "police", + "present", + "stay" + ] + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "ConditionsImposedOnDefendant", + "qualifier": "JE", + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "resultTextTemplate": "Must stay indoors at home address (or at any other address allowed by the court) between {excusedTimeFrom} and {and} {frequencyOfCurfew}[. Additional Information: {additionalInformation}]", + "welshLabel": "Rhaid aros y tu fewn yn y cyfeiriad cartref (neu mewn unrhyw gyfeiriad arall a ganiateir gan y llys) rhwng yr amseroedd a nodwyd a'i gyflwyno ei hun i swyddog heddlu rhwng yr amseroedd hyn", + "terminatesOffenceProceedings": false, + "prompts": [ + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "And", + "resultPromptRule": "mandatory", + "type": "TIME", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 200, "userGroups": [], - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "and", + "welshLabel": "Ac" }, { - "id": "efffc361-7cca-40a5-a436-a1fdb590e8be", - "label": "Variation of electronic monitoring. Date and case reference of original order", - "welshLabel": "Amrywio monitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", - "resultPromptRule": "oneOf", + "id": "6e27fcf9-1bf0-4e27-9ed5-6cdd1bf1ca68", + "label": "Frequency of curfew", + "resultPromptRule": "mandatory", "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, "sequence": 300, - "financial": "N", - "reference": "variationOfElectronicMonitoringDateOfOriginalOrder", "userGroups": [], - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "30", + "reference": "frequencyOfCurfew", + "welshLabel": "Amledd cyrffyw" }, { - "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", - "label": "Was an interpreter used?", - "welshLabel": "A oedd cyfieithydd yn bresennol?", + "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", + "label": "Between", "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 800, - "financial": "N", - "reference": "wasAnInterpreterUsed", + "type": "TIME", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, "userGroups": [], - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "excusedTimeFrom", + "welshLabel": "Rhwng" }, { - "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label": "Defendant's mobile number", - "welshLabel": "Rhif ffôn symudol y diffynnydd", + "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label": "Additional information", "resultPromptRule": "optional", - "type": "INT", - "sequence": 700, - "financial": "N", - "reference": "defendantsMobileNumber", + "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 400, "userGroups": [], - "min": "1", - "max": "20", - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "cacheable": 2, - "cacheDataPath": "personDefendant.personDetails.contact.mobile", - "associatedWithReferenceData": false + "min": "1", + "max": "1000", + "reference": "additionalInformation", + "welshLabel": "Gwybodaeth ychwanegol" } - ], - "welshLabel": "Hysbysiad o orchymyn monitro electronig (gofyniad)", + ] + }, + { + "id": "69ff04d5-84e8-4a61-8478-82c2999c1969", + "label": "To attend or a warrant to issue", + "shortCode": "AWI", + "level": "O", + "rank": 22600, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, + "wordGroups": [ + { + "wordGroup": [ + "AWI" + ] + }, + { + "wordGroup": [ + "warrant", + "attend" + ] + } + ], "adjournment": "N", "category": "A", "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "Community requirements,ELMON", + "resultDefinitionGroup": "Adjournment reasons", + "qualifier": "GE", "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": true, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, "jurisdiction": "B", - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": false, - "isBooleanResult": false + "userGroups": [], + "resultTextTemplate": "%ResultLabel%", + "resultWording": "", + "welshLabel": "Codi neu gyhoeddi gwarant", + "terminatesOffenceProceedings": false }, { - "id": "b2d06bbc-e90e-4df8-8851-6e4a70894828", - "label": "Obligatory disqualification", - "shortCode": "DDO", + "id": "3c98b287-fd01-471a-ac34-e0a56d9e95c2", + "label": "Exclusion - not to sit in the front seat of any motor vehicle", + "shortCode": "PORE10", "level": "O", - "rank": 67200, + "rank": 88300, "isBooleanResult": false, "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "publishedAsAPrompt": false, + "publishedAsAPrompt": true, "excludedFromResults": false, "alwaysPublished": false, - "rollUpPrompts": true, - "publishedForNows": false, + "rollUpPrompts": false, + "publishedForNows": true, "lifeDuration": false, - "resultDefinitionRules": [ + "wordGroups": [ { - "childResultDefinitionId": "429fb553-4fb3-45eb-a700-7e5e69d1ca29", - "ruleType": "mandatory" + "wordGroup": [ + "PORE10" + ] }, { - "childResultDefinitionId": "ea1ee5a4-be13-48dc-8411-78f22e01c236", - "ruleType": "optional" + "wordGroup": [ + "front", + "seat", + "Exclusion" + ] } ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Bail conditions", + "qualifier": "RD", + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "userGroups": [], + "resultTextTemplate": "%ResultLabel%", + "welshLabel": "Gwahardd - i beidio ag eistedd yn sedd flaen unrhyw gerbyd modur", + "terminatesOffenceProceedings": false + }, + { + "id": "3c03001c-56b3-4c64-bc0f-a3c57c3f424f", + "version": "2023-04-15T22:07:30.368Z", + "startDate": "2023-04-16", + "label": "Committed to Crown Court for sentence on unconditional bail", + "shortCode": "CCSU", + "level": "O", + "rank": 104500, "wordGroups": [ { "wordGroup": [ - "DDO", - "obligatory", - "disqualification" + "CCSU" ] }, { "wordGroup": [ - "DDO" + "Committed", + "sentence", + "unconditional" ] } ], - "adjournment": "N", - "category": "A", - "urgent": true, - "convicted": "Y", - "d20": true, - "cjsCode": "3070", - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "libraCode": "DDO", - "lCode": "DDO", - "resultTextTemplate": "Disqualified for holding or obtaining a driving licence for {disqualificationPeriod}.[ %DOID%.] Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988.[ This includes an extension period of {extensionPeriodSection35AImmediateCustodialSentence} in accordance with section 35A (immediate custodial sentence).][ This includes an extension period of {extensionPeriodSection35BEffectOfCustodialSentenceNoted} in accordance with section 35B (effect of custodial sentence noted).]", - "resultWording": "Disqualified for holding or obtaining a driving licence. Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988", - "welshResultWording": "Gwahardd rhag dal neu gael trwydded yrru. Gwaharddiad yn orfodol ar gyfer y trosedd. Cofnod gyrru wedi’i ardystio. Adran 34(1) Deddf Troseddwyr Traffig Ffyrdd 1988", - "terminatesOffenceProceedings": false, "prompts": [ { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": "Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)", "resultPromptRule": "mandatory", "type": "INT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "duration": "Years", - "welshDuration": "Flynedd", - "userGroups": [], + "sequence": 200, + "financial": "N", + "reference": "bailRemandDaysToCountTaggedDays", "wordGroup": [ - "Years" + "Tagged days" ], - "courtExtract": "Y", - "financial": "N", + "userGroups": [], + "min": "0", + "max": "999", + "courtExtract": "N", "jurisdiction": "B", - "reference": "disqualificationPeriod", - "welshLabel": "Cyfnod gwahardd", - "durationSequence": 1 + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "resultPromptRule": "mandatory", - "type": "INT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "duration": "Months", - "welshDuration": "Mis", - "userGroups": [], + "id": "654fce8c-238a-468a-92db-f7509394cf08", + "label": "A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on", + "welshLabel": "Gwnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999 ar", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 400, + "financial": "N", + "reference": "aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn", "wordGroup": [ - "months" + "Reporting", + "Restriction" ], + "userGroups": [], "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "reference": "disqualificationPeriod", - "welshLabel": "Cyfnod gwahardd", - "durationSequence": 1 + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified organisation name", "resultPromptRule": "mandatory", - "type": "INT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "duration": "Days", - "welshDuration": "Niwrnod", + "type": "NAMEADDRESS", + "sequence": 900, + "financial": "N", + "reference": "probationyottobenotifiedOrganisationName", "userGroups": [], - "wordGroup": [ - "Days" - ], - "courtExtract": "Y", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "OrganisationName", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified address line 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 900, "financial": "N", + "reference": "probationyottobenotifiedAddress1", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "reference": "disqualificationPeriod", - "welshLabel": "Cyfnod gwahardd", - "durationSequence": 1 + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "AddressLine1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified address line 2", "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 400, - "userGroups": [], - "courtExtract": "Y", + "type": "NAMEADDRESS", + "sequence": 900, "financial": "N", + "reference": "probationyottobenotifiedAddress2", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "min": "1", - "max": "50", - "reference": "extensionPeriodSection35BEffectOfCustodialSentenceNoted", - "welshLabel": "Cyfnod estyniad adran 35B (effaith dedfryd o garchar wedi’i nodi)" + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "AddressLine2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified address line 3", "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 500, - "userGroups": [ - "CPS", - "Defence", - "NCES", - "Probation", - "Judiciary", - "Prosecuting Authorities", - "YOTs" - ], - "courtExtract": "N", + "type": "NAMEADDRESS", + "sequence": 900, "financial": "N", - "cacheable": 2, - "cacheDataPath": "personDefendant.driverNumber", + "reference": "probationyottobenotifiedAddress3", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "min": "0", - "max": "16", - "reference": "defendantDrivingLicenceNumber", - "welshLabel": "Rhif trwydded yrru'r Diffynnydd" + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "AddressLine3", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified address line 4", "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 300, - "userGroups": [], - "courtExtract": "Y", + "type": "NAMEADDRESS", + "sequence": 900, "financial": "N", + "reference": "probationyottobenotifiedAddress4", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "min": "1", - "max": "50", - "reference": "extensionPeriodSection35AImmediateCustodialSentence", - "welshLabel": "Cyfnod estyniad adran 35A (dedfryd o garchar ar unwaith)" - } - ] - }, - { - "id": "f666fd58-36c5-493f-aa11-89714faee6e6", - "label": "Remand in care of Local Authority with bail direction", - "shortCode": "RILAB", - "level": "O", - "rank": 116200, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, - "financial": "N", - "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": true, - "publishedForNows": true, - "lifeDuration": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "5dc70e17-6095-4bd8-8597-36186e7eaba1", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "874911d0-acf2-4b6f-bcca-cacbb6bb2862", - "ruleType": "mandatory" + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "AddressLine4", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType": "mandatory" + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 900, + "financial": "N", + "reference": "probationyottobenotifiedAddress5", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "AddressLine5", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", - "ruleType": "mandatory" + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 900, + "financial": "N", + "reference": "probationyottobenotifiedPostCode", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "PostCode", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", - "ruleType": "optional" - } - ], - "wordGroups": [ - { - "wordGroup": [ - "RILAB" - ] + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified email address 1", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 900, + "financial": "N", + "reference": "probationyottobenotifiedEmailAddress1", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "EmailAddress1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "wordGroup": [ - "authority", - "bail", - "care", - "direction", - "LA", - "local", - "remand" - ] - } - ], - "adjournment": "Y", - "category": "I", - "urgent": true, - "convicted": "N", - "d20": false, - "cjsCode": "4029", - "postHearingCustodyStatus": "L", - "jurisdiction": "B", - "libraCode": "RILAB", - "resultTextTemplate": "Remanded until %NEXH% in accommodation provided by the local authority for {nameOfLocalAuthority}[ subject to the following requirements: {requirementsImposedOnLocalAuthority}].[ Further requirements: {furtherReq}.] Basis: {remandBasis}.[ Adjournment reason: %ADJR%.] Directed to be bailed to {bailDate} at {bailTime} upon satisfying the following conditions: %PREBC%[ and subject to the following conditions: %BAIC%].[ Conditions imposed on the defendant: %LACOND%]", - "terminatesOffenceProceedings": false, - "prompts": [ - { - "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label": "Remand basis", - "resultPromptRule": "mandatory", - "type": "FIXL", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "userGroups": [], - "courtExtract": "Y", + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified email address 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 900, "financial": "N", - "cacheable": 1, + "reference": "probationyottobenotifiedEmailAddress2", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "reference": "remandBasis", - "welshLabel": "Sail remand" + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "EmailAddress2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "15f8330b-9554-4ea6-b75b-7e192724ca06", - "label": "Further requirements", - "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 700, + "id": "f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6", + "label": "Victim wishes to read victim personal statement to court", + "welshLabel": "Dioddefwr yn dymuno darllen datganiad personol dioddefwyr i'r llys", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 600, + "financial": "N", + "reference": "victimWishesToReadVictimPersonalStatementToCourt", "userGroups": [], "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "min": "1", - "max": "1000", - "reference": "furtherReq", - "welshLabel": "Gofynion pellach" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "f63f692f-3bfc-4d0f-8e45-acd99b06431c", - "label": "Local Authority", + "id": "ed26a92b-0850-435b-a4c7-2c77baaea4b3", + "label": "PSR ordered", "resultPromptRule": "mandatory", - "type": "FIXL", - "nameEmail": false, - "referenceDataKey": "nameOfLocalAuthority", - "hidden": false, - "associateToReferenceData": true, - "sequence": 200, + "type": "BOOLEAN", + "sequence": 800, + "financial": "N", + "reference": "pSROrdered", "userGroups": [], "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "583ea6cb-4251-406e-b07a-445fb0dde914", + "label": "Victim personal statement to be presented to court by prosecutor or other person", + "welshLabel": "Datganiad personol i ddioddefwyr i'w gyflwyno i'r llys gan erlynydd neu unigolyn arall", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 500, "financial": "N", - "cacheable": 2, + "reference": "victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson", + "userGroups": [], + "courtExtract": "Y", "jurisdiction": "B", - "min": "", - "max": "", - "reference": "nameOfLocalAuthority", - "welshLabel": "Awdurdod Lleol" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "b275cca5-58a6-415c-9b67-b4277c7f7e6e", - "label": "Requirements imposed on Local Authority", + "id": "e2b9a67c-cbd8-4479-89ff-57b2b6632835", + "label": "Additional considerations re victim personal statement", + "welshLabel": "Ystyriaethau ychwanegol mewn perthynas â datganiad personol dioddefwyr", "resultPromptRule": "optional", "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 600, + "sequence": 750, + "financial": "N", + "reference": "additionalDetailsReVictimPersonalStatement", "userGroups": [], + "min": "1", + "max": "250", "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "min": "1", - "max": "1000", - "reference": "requirementsImposedOnLocalAuthority", - "welshLabel": "Gofynion a osodir ar Awdurdod Lleol" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "9ecac6aa-a205-481f-b67d-e2425ad074cf", - "label": "Bail date", - "resultPromptRule": "mandatory", - "type": "DATE", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 400, + "id": "07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8", + "label": "No indication given re victim personal statement", + "welshLabel": "Ni roddwyd unrhyw arwydd o ddatganiad personol dioddefwyr", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 700, + "financial": "N", + "reference": "noIndicationGivenReVictimPersonalStatement", "userGroups": [], "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "d7d2c7b1-f27a-44ed-a227-ea9b917f0229", + "label": "No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made", + "welshLabel": "Ni wnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, "financial": "N", + "reference": "noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade", + "userGroups": [], + "courtExtract": "Y", "jurisdiction": "B", - "reference": "bailDate" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "e200e964-628a-4284-bd4e-fab9c819f7f1", - "label": "Bail time", + "id": "5e9f69e4-299d-41e0-93ef-b7523df86954", + "label": "Committed", + "welshLabel": "Traddodwyd", "resultPromptRule": "mandatory", - "type": "TIME", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 500, + "type": "FIXL", + "sequence": 50, + "financial": "N", + "reference": "committed", + "fixedListId": "bf4e33b1-8b6b-4de8-9b1b-e83cb4f3d6d7", "userGroups": [], "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "reference": "bailTime" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false } - ] - }, - { - "id": "5dc70e17-6095-4bd8-8597-36186e7eaba1", - "label": "Remand to care conditions imposed on the defendant", - "shortCode": "LACOND", - "level": "O", - "rank": 700, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, + ], + "welshLabel": "Traddodi i Lys y Goron ar gyfer dedfryd ar fechnïaeth ddiamod", "financial": "N", "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "publishedAsAPrompt": true, + "adjournment": "Y", + "category": "I", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "CommittedToCC", + "cjsCode": "4014", + "postHearingCustodyStatus": "U", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": true, + "publishedAsAPrompt": false, "excludedFromResults": false, "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, + "jurisdiction": "M", + "libraCode": "CCSU", "resultDefinitionRules": [ { - "childResultDefinitionId": "671c65dc-8406-4923-bff2-e193a7fbd489", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7c54ceff-9b16-448e-995a-053c6d47854c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6f2e2861-0ad4-4721-b0d2-65b1d5f16895", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "3b06d7a2-03e7-460d-8ce9-c8a48bc96040", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d4bc7ce5-ad94-43dc-a3d6-558049380a6c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "e101f583-9ead-4c87-a1a4-d631d43517d3", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c34f6cd8-60b2-4ca8-a150-c1aa88fb0bfa", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "db5e2bc8-13b4-4dd2-b1a0-aa130e62b4f0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6a84ebbd-d1e9-43cc-a3c3-a3b459d8cb5a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "8bc69b99-359e-48a2-a353-66fe009b5507", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "bd77f0bc-11a5-4e08-abe5-697e27c9201e", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "4dcb9901-6539-4a4f-b894-f62b3ff51862", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f68c277a-4f7d-4da5-bd8a-396e6671e05c", - "ruleType": "atleastOneOf" - }, + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + } + ], + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "Committed {committed} for %NEXH%. Bail remand days to count (tagged days): {bailRemandDaysToCountTaggedDays}.[ {noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade}.][ A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on {aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn}.][ {victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson}.][ {victimWishesToReadVictimPersonalStatementToCourt}.][ {noIndicationGivenReVictimPersonalStatement}.][ Additional considerations re victim personal statement: {additionalDetailsReVictimPersonalStatement}.] {pSROrdered}", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "c36fed37-b635-4303-b514-2273e9e2594d", + "version": "2023-04-15T22:05:45.733Z", + "startDate": "2023-04-16", + "label": "Entered in error", + "shortCode": "ERR", + "level": "O", + "rank": 97500, + "wordGroups": [ { - "childResultDefinitionId": "dffdac97-7b67-4ca7-b72b-7ea417e931c8", - "ruleType": "atleastOneOf" + "wordGroup": [ + "ERR" + ] }, { - "childResultDefinitionId": "a65e4db1-e02a-489f-9f4e-2e38f77807c6", - "ruleType": "atleastOneOf" - }, + "wordGroup": [ + "error", + "entered" + ] + } + ], + "prompts": [ { - "childResultDefinitionId": "eb0260f2-c923-48c9-91e9-f4c97c9d37fe", - "ruleType": "atleastOneOf" - }, + "id": "af38d17b-46de-4dbb-a5c7-14ac36905c89", + "label": "Reason", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "financial": "N", + "reference": "reason", + "userGroups": [], + "min": "1", + "max": "250", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "N", + "d20": false, + "cjsCode": "4583", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "jurisdiction": "B", + "lCode": "ERR\nERRF", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "[Reason: {reason}]", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "fbed768b-ee95-4434-87c8-e81cbc8d24c9", + "version": "2023-04-15T22:05:25.054Z", + "startDate": "2023-04-16", + "label": "Next hearing in Crown Court", + "shortCode": "NHCCS", + "level": "O", + "rank": 18500, + "wordGroups": [ { - "childResultDefinitionId": "5c7db83b-bfb4-4d0d-8c63-aa2513e756bb", - "ruleType": "atleastOneOf" - }, + "wordGroup": [ + "NHCCS" + ] + } + ], + "prompts": [ { - "childResultDefinitionId": "30ff00bf-583d-48e4-ab13-34e4445443fb", - "ruleType": "atleastOneOf" + "id": "46257d78-1cbf-42b0-a24b-206826fecfb9", + "label": "Date and time to be fixed", + "welshLabel": "Dyddiad ac amser i’w bennu", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 100, + "financial": "N", + "reference": "dateToBeFixed", + "wordGroup": [ + "Date to be fixed" + ], + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "35f46562-ebb6-423a-99e2-1dd65c2e5f97", - "ruleType": "atleastOneOf" + "id": "bbc84e23-2543-4211-858f-59ae97800f5a", + "label": "Reserved Judiciary", + "welshLabel": "Y Farnwriaeth wrth gefn", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "financial": "N", + "reference": "reservedJudiciary", + "wordGroup": [ + "Reserved" + ], + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "f2cab905-935b-49e5-9f82-badcfb6c6c60", - "ruleType": "atleastOneOf" + "id": "3e7ae7bd-f736-4729-ab06-82bf966bc72f", + "label": "Week Commencing", + "welshLabel": "Wythnos yn dechrau", + "resultPromptRule": "oneOf", + "type": "DATE", + "sequence": 300, + "financial": "N", + "reference": "weekCommencing", + "wordGroup": [ + "week commencing" + ], + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "b1c731d5-a54c-4b9a-9c76-ad3dec4240ac", - "ruleType": "atleastOneOf" + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": "Amcangyfrif amser", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "financial": "N", + "reference": "HEST", + "userGroups": [], + "welshDuration": "Wythnos", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "e363cb46-0e5c-479a-956f-c29acbb5b6ca", - "ruleType": "atleastOneOf" + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": "Amcangyfrif amser", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "financial": "N", + "reference": "HEST", + "userGroups": [], + "welshDuration": "Niwrnod", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "66017606-d552-4e06-a835-c0a1af03467a", - "ruleType": "atleastOneOf" + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": "Amcangyfrif amser", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Hours", + "financial": "N", + "reference": "HEST", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "6f8051e0-02fd-4c12-a229-a74e8a15076c", - "ruleType": "atleastOneOf" + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": "Amcangyfrif amser", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Minutes", + "financial": "N", + "reference": "HEST", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "2751bd8f-897a-4aa0-b26d-b7bf7b18acff", - "ruleType": "atleastOneOf" + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEOrganisationName", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "OrganisationName", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "241746c2-1565-4de9-9915-bd65deda1453", - "ruleType": "atleastOneOf" + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEAddress1", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine1", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "6656b25a-de49-4722-b21f-acebe07d4d1c", - "ruleType": "atleastOneOf" + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEAddress2", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine2", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "b258561d-ec34-42a6-9c8d-93ab64b59589", - "ruleType": "atleastOneOf" + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 3", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEAddress3", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine3", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "47fe1304-9772-43c2-bc3c-90a73b55a2d0", - "ruleType": "atleastOneOf" - } - ], - "wordGroups": [ - { - "wordGroup": [ - "LACOND" - ] + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 4", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEAddress4", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine4", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "wordGroup": [ - "conditions", - "imposed" - ] - } - ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "resultTextTemplate": "%AllChildText%.[ Reasons for Conditions: {reasonsForTheConditionsImposedOnTheDefendant}.]", - "welshLabel": "Remand i amodau gofal a osodir ar y diffynnydd", - "terminatesOffenceProceedings": false, - "prompts": [ - { - "id": "46026657-e495-4b4c-a47e-466fe49dfe2e", - "label": "Reasons for the conditions imposed on the defendant", - "resultPromptRule": "mandatory", - "type": "FIXLM", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "fixedListId": "8faf795a-5f70-418f-8104-f62e7b7f8e52", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEAddress5", "userGroups": [], + "min": "", + "max": "", "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "reference": "reasonsForTheConditionsImposedOnTheDefendant", - "welshLabel": "Rhesymau dros yr amodau a osodwyd ar y diffynnydd" - } - ] - }, - { - "id": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", - "label": "Electronic monitoring details", - "shortCode": "ELMONDET", - "level": "O", - "rank": 48800, - "isAvailableForCourtExtract": false, - "financial": "N", - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "lifeDuration": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "terminatesOffenceProceedings": false, - "prompts": [ + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine5", + "nameEmail": false, + "associatedWithReferenceData": true + }, { - "id": "2d56a2cf-6159-40e6-b6c2-13b8192bcf62", - "label": "Defendant's mobile number", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "type": "NAMEADDRESS", + "sequence": 500, "financial": "N", + "reference": "hCHOUSEPostCode", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", "jurisdiction": "B", - "min": "6", - "max": "15" + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "PostCode", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Electronic Monitoring Contractor responsible officer", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse email address 1", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, "financial": "N", - "jurisdiction": "B" + "reference": "hCHOUSEEmailAddress1", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "EmailAddress1", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "id": "52056247-a158-4b8b-b2d7-0f92bab219e0", - "label": "Interpreter used - language", - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 300, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse email address 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, "financial": "N", + "reference": "hCHOUSEEmailAddress2", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", - "min": "1", - "max": "60" + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "EmailAddress2", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "id": "6bc228a4-7e28-4b93-a1e9-96432137c696", - "label": "Interpreter not used", + "id": "aea2ee79-47b4-4023-9a95-1b327e6e03d5", + "label": "Fixed Date", + "welshLabel": "Dyddiad Penodol", "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 400, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "type": "DATE", + "sequence": 200, "financial": "N", - "jurisdiction": "B" + "reference": "fixedDate", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "4415f5e3-35bc-49ee-8ce4-acb36b91667c", - "label": "Does the offender have any special needs?", + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": "Math o wrandawiad", "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 500, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "type": "TXT", + "sequence": 700, "financial": "N", - "jurisdiction": "B" + "reference": "HTYPE", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "8e29f329-28d3-442c-8470-2a215521b60a", - "label": "Description of special needs", + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "welshLabel": "Ystafell Llys", "resultPromptRule": "optional", - "type": "TXT", + "type": "INT", "sequence": 600, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", "financial": "N", - "jurisdiction": "B", + "reference": "HCROOM", + "userGroups": [], "min": "1", - "max": "1000" + "max": "99", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "referenceDataKey": "HCROOM", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "id": "13058f22-0324-415a-8cdf-f11b64488167", - "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are addtional requirements as well", + "id": "a0ec3e68-5210-422f-9959-73c1c7ce495a", + "label": "Existing Hearing Id", + "welshLabel": "ID Gwrandawiad Presennol", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "type": "TXT", + "sequence": 900, "financial": "N", - "jurisdiction": "B" - }, - { - "id": "c024016d-b79e-4bbe-8c15-b7a2acadca9e", - "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are NO addtional requirements", - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], + "reference": "existingHearingId", + "userGroups": [], "courtExtract": "N", - "financial": "N", - "jurisdiction": "B" - } - ] - }, - { - "id": "7c54ceff-9b16-448e-995a-053c6d47854c", - "label": "Must stay indoors at home address (or at any other address allowed by the court) between the times specified and present him/herself to a police officer between these times", - "shortCode": "STAYDS", - "level": "O", - "rank": 118200, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, - "financial": "N", - "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, - "wordGroups": [ - { - "wordGroup": [ - "STAYDS" - ] + "jurisdiction": "B", + "hidden": true, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "wordGroup": [ - "address", - "home", - "indoors", - "police", - "present", - "stay" - ] - } - ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "ConditionsImposedOnDefendant", - "qualifier": "JE", - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "resultTextTemplate": "Must stay indoors at home address (or at any other address allowed by the court) between {excusedTimeFrom} and {and} {frequencyOfCurfew}[. Additional Information: {additionalInformation}]", - "welshLabel": "Rhaid aros y tu fewn yn y cyfeiriad cartref (neu mewn unrhyw gyfeiriad arall a ganiateir gan y llys) rhwng yr amseroedd a nodwyd a'i gyflwyno ei hun i swyddog heddlu rhwng yr amseroedd hyn", - "terminatesOffenceProceedings": false, - "prompts": [ - { - "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label": "And", - "resultPromptRule": "mandatory", + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "welshLabel": "Amser y gwrandawiad", + "resultPromptRule": "optional", "type": "TIME", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 200, + "sequence": 400, + "financial": "N", + "reference": "timeOfHearing", "userGroups": [], "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "6fac63f7-60f0-4453-910e-e27700722d31", + "label": "Booking Type", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, "financial": "N", + "reference": "bookingtype", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "reference": "and", - "welshLabel": "Ac" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "6e27fcf9-1bf0-4e27-9ed5-6cdd1bf1ca68", - "label": "Frequency of curfew", - "resultPromptRule": "mandatory", + "id": "b861ca8e-04fa-41f2-8f05-1b5b0c1df286", + "label": "Booking Priority", + "resultPromptRule": "optional", "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 300, - "userGroups": [], - "courtExtract": "Y", + "sequence": 1200, "financial": "N", + "reference": "bookingpriority", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "min": "1", - "max": "30", - "reference": "frequencyOfCurfew", - "welshLabel": "Amledd cyrffyw" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", - "label": "Between", - "resultPromptRule": "mandatory", - "type": "TIME", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "userGroups": [], - "courtExtract": "Y", + "id": "c81aba5d-282a-4ef6-93d0-3c5e7dd810fd", + "label": "Slot booking reference", + "welshLabel": "", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, "financial": "N", + "reference": "hmiSlots", + "userGroups": [], + "min": "1", + "max": "6000", + "courtExtract": "N", "jurisdiction": "B", - "reference": "excusedTimeFrom", - "welshLabel": "Rhwng" + "hidden": true, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label": "Additional information", + "id": "aecf6dd0-82fa-4520-bbb3-af0f8ea91ca7", + "label": "Special Requirements", "resultPromptRule": "optional", "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 400, - "userGroups": [], - "courtExtract": "Y", + "sequence": 1400, "financial": "N", - "jurisdiction": "B", + "reference": "SpecialRequirements", + "userGroups": [], "min": "1", - "max": "1000", - "reference": "additionalInformation", - "welshLabel": "Gwybodaeth ychwanegol" + "max": "100", + "courtExtract": "N", + "jurisdiction": "C", + "hidden": true, + "nameEmail": false, + "associatedWithReferenceData": false } - ] - }, - { - "id": "69ff04d5-84e8-4a61-8478-82c2999c1969", - "label": "To attend or a warrant to issue", - "shortCode": "AWI", - "level": "O", - "rank": 22600, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, + ], + "welshLabel": "Bydd y gwrandawiad nesaf yn Llys y Goron", "financial": "N", "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Next hearing", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": true, "publishedAsAPrompt": true, "excludedFromResults": false, "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, - "wordGroups": [ - { - "wordGroup": [ - "AWI" - ] - }, - { - "wordGroup": [ - "warrant", - "attend" - ] - } + "jurisdiction": "B", + "resultWording": "", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "hearing[ on a {dateToBeFixed}][ on {fixedDate}][ week commencing {weekCommencing}][ at {timeOfHearing}][ in {HCROOM}], {HCHOUSE~Name}", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "cfa66730-f81c-4768-a36e-581791cb0270", + "version": "2023-02-01T12:15:50.792Z", + "startDate": "2023-02-02", + "label": "Has a collection order been made?", + "shortCode": "COLLOM", + "level": "D", + "rank": 14100, + "userGroups": [ ], + "financial": "N", + "unscheduled": false, "adjournment": "N", "category": "A", "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "Adjournment reasons", - "qualifier": "GE", "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, "jurisdiction": "B", - "userGroups": [], - "resultTextTemplate": "%ResultLabel%", - "resultWording": "", - "welshLabel": "Codi neu gyhoeddi gwarant", - "terminatesOffenceProceedings": false + "resultDefinitionRules": [ + { + "childResultDefinitionId": "9ea0d845-5096-44f6-9ce0-8ae801141eac", + "ruleType": "mandatory" + } + ], + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": false, + "isBooleanResult": true }, { - "id": "3c98b287-fd01-471a-ac34-e0a56d9e95c2", - "label": "Exclusion - not to sit in the front seat of any motor vehicle", - "shortCode": "PORE10", - "level": "O", - "rank": 88300, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, + "id": "3d742a7e-37a6-453c-bb6f-5e023bb19453", + "version": "2024-08-12T13:32:30.525Z", + "startDate": "2024-08-13", + "label": "Payment Method", + "shortCode": "PM", + "level": "D", + "rank": 30600, + "userGroups": [], "financial": "N", "unscheduled": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "jurisdiction": "B", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "bdb32555-8d55-4dc1-b4b6-580db5132496", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", + "ruleType": "oneOf" + } + ], "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, + "isAvailableForCourtExtract": false, + "isBooleanResult": false + }, + { + "id": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", + "version": "2020-09-25T13:28:35.893Z", + "startDate": "2020-09-26", + "label": "Reserve Terms Lump sum", + "shortCode": "RLSUM", + "level": "D", + "rank": 6300, "wordGroups": [ { "wordGroup": [ - "PORE10" + "RLSUM" ] }, { "wordGroup": [ - "front", - "seat", - "Exclusion" + "rt", + "ls" + ] + }, + { + "wordGroup": [ + "pay", + "reserve", + "terms", + "lump" + ] + }, + { + "wordGroup": [ + "terms", + "lump", + "sum", + "reserve" ] } ], + "prompts": [ + { + "id": "c131cab0-5dd6-11e8-9c2d-fa7ae01bbebc", + "label": "Pay lump sum in full within", + "welshLabel": "Talu cyfandaliad yn llawn o fewn", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "financial": "N", + "reference": "LSPW", + "fixedListId": "cd4cc782-5dd6-11e8-9c2d-fa7ae01bbebc", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Cyfandaliad y Telerau Wrth Gefn", + "financial": "N", + "unscheduled": false, "adjournment": "N", - "category": "A", + "category": "F", "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "Bail conditions", - "qualifier": "RD", + "resultDefinitionGroup": "Payment terms", "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "userGroups": [], - "resultTextTemplate": "%ResultLabel%", - "welshLabel": "Gwahardd - i beidio ag eistedd yn sedd flaen unrhyw gerbyd modur", - "terminatesOffenceProceedings": false + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "M", + "isAvailableForCourtExtract": true, + "endDate": "2020-10-30" }, - {"id":"3c03001c-56b3-4c64-bc0f-a3c57c3f424f","version":"2023-04-15T22:07:30.368Z","startDate":"2023-04-16","label":"Committed to Crown Court for sentence on unconditional bail","shortCode":"CCSU","level":"O","rank":104500,"wordGroups":[{"wordGroup":["CCSU"]},{"wordGroup":["Committed","sentence","unconditional"]}],"prompts":[{"id":"4d10cd4b-fb39-40dd-88e1-2397832bc914","label":"Bail remand days to count (tagged days)","welshLabel":"Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)","resultPromptRule":"mandatory","type":"INT","sequence":200,"financial":"N","reference":"bailRemandDaysToCountTaggedDays","wordGroup":["Tagged days"],"userGroups":[],"min":"0","max":"999","courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"654fce8c-238a-468a-92db-f7509394cf08","label":"A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on","welshLabel":"Gwnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999 ar","resultPromptRule":"optional","type":"DATE","sequence":400,"financial":"N","reference":"aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn","wordGroup":["Reporting","Restriction"],"userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified organisation name","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedOrganisationName","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"OrganisationName","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 1","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress1","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine1","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress2","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine2","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 3","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress3","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine3","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 4","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress4","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine4","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 5","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress5","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine5","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified post code","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedPostCode","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"PostCode","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified email address 1","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedEmailAddress1","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"EmailAddress1","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified email address 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedEmailAddress2","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"EmailAddress2","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6","label":"Victim wishes to read victim personal statement to court","welshLabel":"Dioddefwr yn dymuno darllen datganiad personol dioddefwyr i'r llys","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":600,"financial":"N","reference":"victimWishesToReadVictimPersonalStatementToCourt","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"ed26a92b-0850-435b-a4c7-2c77baaea4b3","label":"PSR ordered","resultPromptRule":"mandatory","type":"BOOLEAN","sequence":800,"financial":"N","reference":"pSROrdered","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"583ea6cb-4251-406e-b07a-445fb0dde914","label":"Victim personal statement to be presented to court by prosecutor or other person","welshLabel":"Datganiad personol i ddioddefwyr i'w gyflwyno i'r llys gan erlynydd neu unigolyn arall","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":500,"financial":"N","reference":"victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"e2b9a67c-cbd8-4479-89ff-57b2b6632835","label":"Additional considerations re victim personal statement","welshLabel":"Ystyriaethau ychwanegol mewn perthynas â datganiad personol dioddefwyr","resultPromptRule":"optional","type":"TXT","sequence":750,"financial":"N","reference":"additionalDetailsReVictimPersonalStatement","userGroups":[],"min":"1","max":"250","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8","label":"No indication given re victim personal statement","welshLabel":"Ni roddwyd unrhyw arwydd o ddatganiad personol dioddefwyr","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":700,"financial":"N","reference":"noIndicationGivenReVictimPersonalStatement","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d7d2c7b1-f27a-44ed-a227-ea9b917f0229","label":"No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made","welshLabel":"Ni wnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999","resultPromptRule":"optional","type":"BOOLEAN","sequence":300,"financial":"N","reference":"noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"5e9f69e4-299d-41e0-93ef-b7523df86954","label":"Committed","welshLabel":"Traddodwyd","resultPromptRule":"mandatory","type":"FIXL","sequence":50,"financial":"N","reference":"committed","fixedListId":"bf4e33b1-8b6b-4de8-9b1b-e83cb4f3d6d7","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false}],"welshLabel":"Traddodi i Lys y Goron ar gyfer dedfryd ar fechnïaeth ddiamod","financial":"N","unscheduled":false,"adjournment":"Y","category":"I","urgent":false,"convicted":"N","d20":false,"resultDefinitionGroup":"CommittedToCC","cjsCode":"4014","postHearingCustodyStatus":"U","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":true,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"M","libraCode":"CCSU","resultDefinitionRules":[{"childResultDefinitionId":"f00359b5-7303-403b-b59e-0b1a1daa89bc","ruleType":"mandatory"}],"canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"Committed {committed} for %NEXH%. Bail remand days to count (tagged days): {bailRemandDaysToCountTaggedDays}.[ {noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade}.][ A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on {aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn}.][ {victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson}.][ {victimWishesToReadVictimPersonalStatementToCourt}.][ {noIndicationGivenReVictimPersonalStatement}.][ Additional considerations re victim personal statement: {additionalDetailsReVictimPersonalStatement}.] {pSROrdered}","isAvailableForCourtExtract":true,"isBooleanResult":false}, - {"id":"c36fed37-b635-4303-b514-2273e9e2594d","version":"2023-04-15T22:05:45.733Z","startDate":"2023-04-16","label":"Entered in error","shortCode":"ERR","level":"O","rank":97500,"wordGroups":[{"wordGroup":["ERR"]},{"wordGroup":["error","entered"]}],"prompts":[{"id":"af38d17b-46de-4dbb-a5c7-14ac36905c89","label":"Reason","resultPromptRule":"optional","type":"TXT","sequence":100,"financial":"N","reference":"reason","userGroups":[],"min":"1","max":"250","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false}],"financial":"N","unscheduled":false,"adjournment":"N","category":"F","urgent":false,"convicted":"N","d20":false,"cjsCode":"4583","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":false,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","lCode":"ERR\nERRF","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"[Reason: {reason}]","isAvailableForCourtExtract":true,"isBooleanResult":false}, - {"id":"fbed768b-ee95-4434-87c8-e81cbc8d24c9","version":"2023-04-15T22:05:25.054Z","startDate":"2023-04-16","label":"Next hearing in Crown Court","shortCode":"NHCCS","level":"O","rank":18500,"wordGroups":[{"wordGroup":["NHCCS"]}],"prompts":[{"id":"46257d78-1cbf-42b0-a24b-206826fecfb9","label":"Date and time to be fixed","welshLabel":"Dyddiad ac amser i’w bennu","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":100,"financial":"N","reference":"dateToBeFixed","wordGroup":["Date to be fixed"],"userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"bbc84e23-2543-4211-858f-59ae97800f5a","label":"Reserved Judiciary","welshLabel":"Y Farnwriaeth wrth gefn","resultPromptRule":"optional","type":"TXT","sequence":1000,"financial":"N","reference":"reservedJudiciary","wordGroup":["Reserved"],"userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"3e7ae7bd-f736-4729-ab06-82bf966bc72f","label":"Week Commencing","welshLabel":"Wythnos yn dechrau","resultPromptRule":"oneOf","type":"DATE","sequence":300,"financial":"N","reference":"weekCommencing","wordGroup":["week commencing"],"userGroups":[],"courtExtract":"Y","jurisdiction":"C","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Weeks","financial":"N","reference":"HEST","userGroups":[],"welshDuration":"Wythnos","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Days","financial":"N","reference":"HEST","userGroups":[],"welshDuration":"Niwrnod","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Hours","financial":"N","reference":"HEST","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Minutes","financial":"N","reference":"HEST","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse organisation name","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEOrganisationName","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"OrganisationName","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 1","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress1","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine1","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress2","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine2","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 3","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress3","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine3","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 4","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress4","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine4","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 5","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress5","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine5","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse post code","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEPostCode","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"PostCode","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse email address 1","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEEmailAddress1","userGroups":[],"min":"","max":"","courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"EmailAddress1","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse email address 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEEmailAddress2","userGroups":[],"min":"","max":"","courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"EmailAddress2","nameEmail":false,"associatedWithReferenceData":true},{"id":"aea2ee79-47b4-4023-9a95-1b327e6e03d5","label":"Fixed Date","welshLabel":"Dyddiad Penodol","resultPromptRule":"oneOf","type":"DATE","sequence":200,"financial":"N","reference":"fixedDate","userGroups":[],"courtExtract":"Y","jurisdiction":"C","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"c1116d12-dd35-4171-807a-2cb845357d22","label":"Hearing type","welshLabel":"Math o wrandawiad","resultPromptRule":"mandatory","type":"TXT","sequence":700,"financial":"N","reference":"HTYPE","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"49ec9b26-dd63-4637-b2e9-55ba9948a90f","label":"Courtroom","welshLabel":"Ystafell Llys","resultPromptRule":"optional","type":"INT","sequence":600,"financial":"N","reference":"HCROOM","userGroups":[],"min":"1","max":"99","courtExtract":"Y","jurisdiction":"B","hidden":false,"referenceDataKey":"HCROOM","nameEmail":false,"associatedWithReferenceData":true},{"id":"a0ec3e68-5210-422f-9959-73c1c7ce495a","label":"Existing Hearing Id","welshLabel":"ID Gwrandawiad Presennol","resultPromptRule":"optional","type":"TXT","sequence":900,"financial":"N","reference":"existingHearingId","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":true,"nameEmail":false,"associatedWithReferenceData":false},{"id":"4d125a5a-acbc-461d-a657-ba5643af85a6","label":"Time of hearing","welshLabel":"Amser y gwrandawiad","resultPromptRule":"optional","type":"TIME","sequence":400,"financial":"N","reference":"timeOfHearing","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"6fac63f7-60f0-4453-910e-e27700722d31","label":"Booking Type","resultPromptRule":"optional","type":"TXT","sequence":1300,"financial":"N","reference":"bookingtype","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"b861ca8e-04fa-41f2-8f05-1b5b0c1df286","label":"Booking Priority","resultPromptRule":"optional","type":"TXT","sequence":1200,"financial":"N","reference":"bookingpriority","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"c81aba5d-282a-4ef6-93d0-3c5e7dd810fd","label":"Slot booking reference","welshLabel":"","resultPromptRule":"optional","type":"TXT","sequence":1100,"financial":"N","reference":"hmiSlots","userGroups":[],"min":"1","max":"6000","courtExtract":"N","jurisdiction":"B","hidden":true,"nameEmail":false,"associatedWithReferenceData":false},{"id":"aecf6dd0-82fa-4520-bbb3-af0f8ea91ca7","label":"Special Requirements","resultPromptRule":"optional","type":"TXT","sequence":1400,"financial":"N","reference":"SpecialRequirements","userGroups":[],"min":"1","max":"100","courtExtract":"N","jurisdiction":"C","hidden":true,"nameEmail":false,"associatedWithReferenceData":false}],"welshLabel":"Bydd y gwrandawiad nesaf yn Llys y Goron","financial":"N","unscheduled":false,"adjournment":"N","category":"A","urgent":false,"convicted":"N","d20":false,"resultDefinitionGroup":"Next hearing","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":false,"publishedForNows":true,"publishedAsAPrompt":true,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","resultWording":"","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"hearing[ on a {dateToBeFixed}][ on {fixedDate}][ week commencing {weekCommencing}][ at {timeOfHearing}][ in {HCROOM}], {HCHOUSE~Name}","isAvailableForCourtExtract":true,"isBooleanResult":false} - + {"id":"dbf9f59c-eee5-4285-8a1c-4fefe4508581","version":"2024-04-09T14:35:37.347Z","startDate":"2024-04-10","label":"To produce motor insurance documents or test certificates (not driving licence)","shortCode":"DOC","level":"O","rank":32100,"userGroups":[],"financial":"N","unscheduled":false,"adjournment":"N","category":"A","urgent":false,"convicted":"N","d20":false,"resultDefinitionGroup":"Adjournment reasons","qualifier":"DO","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":false,"publishedForNows":true,"publishedAsAPrompt":true,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","resultWording":"","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"%ResultLabel%","isAvailableForCourtExtract":true,"isBooleanResult":false}, + {"id":"2b3f7c20-8fc1-4fad-9076-df196c24b27e","version":"2023-02-01T12:13:19.901Z","startDate":"2023-02-02","label":"Granted","shortCode":"G","level":"O","rank":98500,"wordGroups":[{"wordGroup":["G","granted"]}],"userGroups":[],"financial":"N","unscheduled":false,"adjournment":"N","category":"F","urgent":false,"convicted":"N","d20":false,"postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":false,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"isAvailableForCourtExtract":true,"isBooleanResult":false} ] } \ No newline at end of file diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java index c8cf4494af..e0fca87bdf 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java @@ -2600,7 +2600,7 @@ private uk.gov.moj.cpp.hearing.command.defendant.Defendant convert(final Defenda final PersonDefendant curPd = currentDefendant.getPersonDefendant(); final Person cpd = curPd.getPersonDetails(); Person person = new Person(cpd.getAdditionalNationalityCode(), cpd.getAdditionalNationalityDescription(), cpd.getAdditionalNationalityId(), cpd.getAddress(), cpd.getContact(), cpd.getDateOfBirth(), - cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(), + cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(),false, cpd.getLastName(), cpd.getMiddleName(), cpd.getNationalInsuranceNumber(), cpd.getNationalityCode(), cpd.getNationalityDescription(), cpd.getNationalityId(), cpd.getOccupation(), cpd.getOccupationCode(), cpd.getPersonMarkers(), cpd.getSpecificRequirements(), cpd.getTitle()); @@ -2623,7 +2623,7 @@ private uk.gov.moj.cpp.hearing.command.defendant.Defendant convertWithDefenceAss final PersonDefendant curPd = currentDefendant.getPersonDefendant(); final Person cpd = curPd.getPersonDetails(); Person person = new Person(cpd.getAdditionalNationalityCode(), cpd.getAdditionalNationalityDescription(), cpd.getAdditionalNationalityId(), cpd.getAddress(), cpd.getContact(), cpd.getDateOfBirth(), - cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), cpd.getFirstName(), cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(), + cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), cpd.getFirstName(), cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(),false, cpd.getLastName(), cpd.getMiddleName(), cpd.getNationalInsuranceNumber(), cpd.getNationalityCode(), cpd.getNationalityDescription(), cpd.getNationalityId(), cpd.getOccupation(), cpd.getOccupationCode(), cpd.getPersonMarkers(), cpd.getSpecificRequirements(), cpd.getTitle()); diff --git a/pom.xml b/pom.xml index 9fc93489de..0621b863a8 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ 0.8 1.3.3 0.1.96 - 17.103.10 + 17.103.11 17.0.120 17.0.57 17.0.57 From 9160ed539944dc8e1395287e92f26374b3d6fc6c Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Tue, 10 Feb 2026 12:36:20 +0000 Subject: [PATCH 02/50] updating poms for 17.0.144-SNAPSHOT development --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index fa56ea5923..eded3145bd 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 0ad48ed721..946d9e96ed 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 41838d10f5..79c0ab8387 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index f1de50f97b..f60349d09f 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index 3b82904e71..c16ef0b53a 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 09dd666041..14186a7cfb 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 47f0f6ff36..f28c872f6d 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 6708b69e1d..1a10e4dd94 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 615005caf4..253af32552 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 02f696a5d4..67928e1538 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 6f44d0cd73..bc7739160b 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 209ba45ec7..108d3e42f0 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 72e8aa6d86..473027b56d 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 8ad60abe0d..ffde007178 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 50714d600a..5c18ae3e96 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 8359746351..7529e7811f 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 3c02d4f310..8a61119b22 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index 816cfc6f0c..794c648457 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 39fce24124..573c247af4 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 4c081a834f..b8466b620a 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 554ccd5c8a..b45ea3f4db 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 99fc51008b..49760d3684 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index e75396e5da..b855e06edd 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 0c96178f6c..6154de1033 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 0621b863a8..1124a9fc67 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 6f88affa82..a94a3c93c7 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.143-SNAPSHOT + 17.0.144-SNAPSHOT From ac85784ac8ac12d69b6116cfcac71931b8935c53 Mon Sep 17 00:00:00 2001 From: Sivarama Varma Penmetsa <30878701+psrvarma@users.noreply.github.com> Date: Tue, 10 Feb 2026 16:20:03 +0000 Subject: [PATCH 03/50] Dev/merge teamcimd50 into main (#31) * Initial commit of migrated source code (#3) * Initial commit of migrated source code * Add global allowlist to gitleaks custom rules Added global allowlist with specified paths and regexes. * New 17.0.88-cimd1560-SNAPSHOT * New 17.0.89-cimd1560-SNAPSHOT * updated pom --------- Co-authored-by: jayenhc Co-authored-by: devops-team --- .../command/api/HearingCommandApi.java | 5 - .../api/accesscontrol/hearing-command-api.drl | 9 -- .../src/raml/hearing-command-api.raml | 16 --- .../HearingCommandApiAccessControlTest.java | 21 ---- .../command/api/HearingCommandApiTest.java | 9 -- ...ComputeOutstandingFinesCommandHandler.java | 53 -------- .../hearing-command-handler.messaging.raml | 5 - ...ing.command.compute-outstanding-fines.json | 8 -- ...ing.command.compute-outstanding-fines.json | 26 ---- ...uteOutstandingFinesCommandHandlerTest.java | 111 ----------------- .../HearingCommandHandlerRamlConfigTest.java | 1 - .../domain/event/OutstandingFinesQueried.java | 1 + ...uteOutstandingFinesRequestedProcessor.java | 67 ---------- ...utstandingFinesRequestedProcessorTest.java | 116 ------------------ ...g.compute-outstanding-fines-requested.json | 26 ---- ...g.compute-outstanding-fines-requested.json | 63 ---------- .../src/yaml/subscriptions-descriptor.yaml | 4 - ...efendantOutstandingFinesByCourtRoomIT.java | 88 +++++++------ .../cpp/hearing/utils/WireMockStubUtils.java | 13 +- .../hearing.query.outstanding-fines.json | 7 ++ ...ourt-rooms-outstanding-fines-response.json | 41 +++++++ .../hearing/query/api/HearingQueryApi.java | 31 ++++- .../api/accesscontrol/hearing-query-api.drl | 10 ++ .../src/raml/hearing-query-api.raml | 21 ++++ ...ring.query.outstanding-fines-response.json | 41 +++++++ .../json/hearing.query.outstanding-fines.json | 0 ...ring.query.outstanding-fines-response.json | 111 +++++++++++++++++ .../hearing.query.outstanding-fines.json | 2 +- .../hearing/query/view/HearingQueryView.java | 6 +- pom.xml | 4 +- 30 files changed, 320 insertions(+), 596 deletions(-) delete mode 100644 hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/ComputeOutstandingFinesCommandHandler.java delete mode 100644 hearing-command/hearing-command-handler/src/raml/json/hearing.command.compute-outstanding-fines.json delete mode 100644 hearing-command/hearing-command-handler/src/raml/json/schema/hearing.command.compute-outstanding-fines.json delete mode 100644 hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ComputeOutstandingFinesCommandHandlerTest.java delete mode 100644 hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/ComputeOutstandingFinesRequestedProcessor.java delete mode 100644 hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ComputeOutstandingFinesRequestedProcessorTest.java delete mode 100644 hearing-event/hearing-event-processor/src/yaml/json/schema/hearing.compute-outstanding-fines-requested.json delete mode 100644 hearing-event/hearing-event-processor/src/yaml/json/schema/public.hearing.compute-outstanding-fines-requested.json create mode 100644 hearing-integration-test/src/test/resources/stub-data/hearing.query.outstanding-fines.json create mode 100644 hearing-integration-test/src/test/resources/stub-data/stagingenforcement.query.court-rooms-outstanding-fines-response.json create mode 100644 hearing-query/hearing-query-api/src/raml/json/hearing.query.outstanding-fines-response.json rename hearing-command/hearing-command-api/src/raml/json/hearing.compute-outstanding-fines.json => hearing-query/hearing-query-api/src/raml/json/hearing.query.outstanding-fines.json (100%) create mode 100644 hearing-query/hearing-query-api/src/raml/json/schema/hearing.query.outstanding-fines-response.json rename hearing-command/hearing-command-api/src/raml/json/schema/hearing.compute-outstanding-fines.json => hearing-query/hearing-query-api/src/raml/json/schema/hearing.query.outstanding-fines.json (88%) diff --git a/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApi.java b/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApi.java index f9365c699b..390d787e1a 100644 --- a/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApi.java +++ b/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApi.java @@ -260,11 +260,6 @@ public void publishHearingListsForCrownCourtsWithIds(final JsonEnvelope envelope sendEnvelopeWithName(envelope, "hearing.command.publish-hearing-lists-for-crown-courts-with-ids"); } - @Handles("hearing.compute-outstanding-fines") - public void computeOutstandingFines(final JsonEnvelope envelope) { - sendEnvelopeWithName(envelope, "hearing.command.compute-outstanding-fines"); - } - @Handles("hearing.book-provisional-hearing-slots") public void bookProvisionalHearingSlots(final JsonEnvelope envelope) { sendEnvelopeWithName(envelope, "hearing.command.book-provisional-hearing-slots"); diff --git a/hearing-command/hearing-command-api/src/main/resources/uk/gov/moj/cpp/hearing/command/api/accesscontrol/hearing-command-api.drl b/hearing-command/hearing-command-api/src/main/resources/uk/gov/moj/cpp/hearing/command/api/accesscontrol/hearing-command-api.drl index fb6ea37dd1..dcb73ce527 100644 --- a/hearing-command/hearing-command-api/src/main/resources/uk/gov/moj/cpp/hearing/command/api/accesscontrol/hearing-command-api.drl +++ b/hearing-command/hearing-command-api/src/main/resources/uk/gov/moj/cpp/hearing/command/api/accesscontrol/hearing-command-api.drl @@ -449,15 +449,6 @@ rule "Command - API - Action - hearing.publish-hearing-lists-for-crown-courts-wi $outcome.setSuccess(true); end -rule "Command - API - Action - hearing.compute-outstanding-fines" - when - $outcome: Outcome(); - $action: Action(name == "hearing.compute-outstanding-fines"); - eval(userAndGroupProvider.isMemberOfAnyOfTheSuppliedGroups($action,"Court Clerks", "Legal Advisers", "Court Associate", "NCES", "Court Administrators")); - then - $outcome.setSuccess(true); -end - rule "Command - API - Action - hearing.record-session-time" when $outcome: Outcome(); diff --git a/hearing-command/hearing-command-api/src/raml/hearing-command-api.raml b/hearing-command/hearing-command-api/src/raml/hearing-command-api.raml index ec9602dbcb..fcfc23fee4 100644 --- a/hearing-command/hearing-command-api/src/raml/hearing-command-api.raml +++ b/hearing-command/hearing-command-api/src/raml/hearing-command-api.raml @@ -551,22 +551,6 @@ baseUri: http://localhost:8080/hearing-command-api/command/api/rest/hearing 202: description: Request accepted -/outstanding-fines: - post: - description: | - ... - (mapping): - requestType: application/vnd.hearing.compute-outstanding-fines+json - name: hearing.compute-outstanding-fines - ... - body: - application/vnd.hearing.compute-outstanding-fines+json: - example: !include json/hearing.compute-outstanding-fines.json - schema: !include json/schema/hearing.compute-outstanding-fines.json - responses: - 202: - description: OK - /record-session-time: post: description: | diff --git a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiAccessControlTest.java b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiAccessControlTest.java index 705af3367c..c50122df20 100644 --- a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiAccessControlTest.java +++ b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiAccessControlTest.java @@ -45,8 +45,6 @@ public class HearingCommandApiAccessControlTest extends BaseDroolsAccessControlT private static final String ACTION_NAME_COURT_LIST_PUBLISH_STATUS = "hearing.publish-court-list"; private static final String ACTION_NAME_PUBLISH_HEARING_LISTS_FOR_CROWN_COURTS = "hearing.publish-hearing-lists-for-crown-courts"; private static final String ACTION_NAME_PUBLISH_HEARING_LISTS_FOR_CROWN_COURTS_WITH_IDS = "hearing.publish-hearing-lists-for-crown-courts-with-ids"; - private static final String ACTION_NAME_COMPUTE_OUTSTANDING_FINES = "hearing.compute-outstanding-fines"; - private static final String ACTION_NAME_RECORD_SESSION_TIME = "hearing.record-session-time"; private static final String ACTION_NAME_BOOK_PROVISIONAL_HEARING_SLOTS = "hearing.book-provisional-hearing-slots"; private static final String ACTION_NAME_SET_TRIAL_TYPE = "hearing.set-trial-type"; @@ -590,25 +588,6 @@ public void shouldNotAllowUserInAuthorisedGroupToBookProvisionalHearingSlots() { assertFailureOutcome(results); } - - @Test - public void shouldAllowAuthorisedUserToComputeOutstandingFines() { - final Action action = createActionFor(ACTION_NAME_COMPUTE_OUTSTANDING_FINES); - given(this.userAndGroupProvider.isMemberOfAnyOfTheSuppliedGroups(action, "Court Clerks", "Legal Advisers", "Court Associate", "NCES", "Court Administrators")) - .willReturn(true); - - final ExecutionResults results = executeRulesWith(action); - assertSuccessfulOutcome(results); - } - - @Test - public void shouldNotAllowUnauthorisedUserToComputeOutstandingFines() { - final Action action = createActionFor(ACTION_NAME_COMPUTE_OUTSTANDING_FINES); - - final ExecutionResults results = executeRulesWith(action); - assertFailureOutcome(results); - } - @Test public void shouldAllowAuthorisedUserToRecordSessionTime() { final Action action = createActionFor(ACTION_NAME_RECORD_SESSION_TIME); diff --git a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiTest.java b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiTest.java index c778dc0022..0bcfa242be 100644 --- a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiTest.java +++ b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiTest.java @@ -236,15 +236,6 @@ public void shouldPassThroughAddCompanyRepresentativeRequestToCommandHandler() { assertEnvelopeIsPassedThroughWithName(jsonRequestEnvelope.payloadAsJsonObject(), "hearing.command.add-company-representative"); } - @Test - public void shouldPassThroughComputeOutstandingFinesRequestToCommandHandler() { - final JsonEnvelope jsonRequestEnvelope = buildDummyJsonRequestEnvelopeWithName("hearing.compute-outstanding-fines"); - - hearingCommandApi.computeOutstandingFines(jsonRequestEnvelope); - - assertEnvelopeIsPassedThroughWithName(jsonRequestEnvelope.payloadAsJsonObject(), "hearing.command.compute-outstanding-fines"); - } - @Test public void shouldPassThroughBookProvisionalHearingSlotsRequestToCommandHandler() { final JsonEnvelope jsonRequestEnvelope = buildDummyJsonRequestEnvelopeWithName("hearing.book-provisional-hearing-slots"); diff --git a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/ComputeOutstandingFinesCommandHandler.java b/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/ComputeOutstandingFinesCommandHandler.java deleted file mode 100644 index 6beffc4293..0000000000 --- a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/ComputeOutstandingFinesCommandHandler.java +++ /dev/null @@ -1,53 +0,0 @@ -package uk.gov.moj.cpp.hearing.command.handler; - -import static uk.gov.justice.services.core.annotation.Component.COMMAND_HANDLER; -import static uk.gov.justice.services.core.enveloper.Enveloper.toEnvelopeWithMetadataFrom; - -import uk.gov.justice.services.core.annotation.Handles; -import uk.gov.justice.services.core.annotation.ServiceComponent; -import uk.gov.justice.services.eventsourcing.source.core.EventStream; -import uk.gov.justice.services.eventsourcing.source.core.exception.EventStreamException; -import uk.gov.justice.services.messaging.JsonEnvelope; -import uk.gov.moj.cpp.hearing.domain.OutstandingFinesQuery; -import uk.gov.moj.cpp.hearing.domain.event.OutstandingFinesQueried; - -import java.util.UUID; -import java.util.stream.Stream; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -@ServiceComponent(COMMAND_HANDLER) -public class ComputeOutstandingFinesCommandHandler extends AbstractCommandHandler { - - private static final Logger LOGGER = - LoggerFactory.getLogger(ComputeOutstandingFinesCommandHandler.class.getName()); - - @Handles("hearing.command.compute-outstanding-fines") - public void computeOutstandingFines(final JsonEnvelope envelope) throws EventStreamException { - - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("hearing.command.compute-outstanding-fines {}", envelope.toObfuscatedDebugString()); - } - - final OutstandingFinesQuery outstandingFinesQuery = convertToObject(envelope, OutstandingFinesQuery.class); - - final EventStream eventStream = eventSource.getStreamById(UUID.randomUUID()); - - final Stream newEvents = Stream.of(outstandingFinesQuery) - .map(this::createOutstandingFinesQueried) - .map(toEnvelopeWithMetadataFrom(envelope)); - - eventStream.append(newEvents); - - } - - private OutstandingFinesQueried createOutstandingFinesQueried(final OutstandingFinesQuery query) { - return OutstandingFinesQueried.newBuilder() - .withCourtCentreId(query.getCourtCentreId()) - .withCourtRoomIds(query.getCourtRoomIds()) - .withHearingDate(query.getHearingDate()) - .build(); - } - -} \ No newline at end of file diff --git a/hearing-command/hearing-command-handler/src/raml/hearing-command-handler.messaging.raml b/hearing-command/hearing-command-handler/src/raml/hearing-command-handler.messaging.raml index f70d017609..32b6f257db 100644 --- a/hearing-command/hearing-command-handler/src/raml/hearing-command-handler.messaging.raml +++ b/hearing-command/hearing-command-handler/src/raml/hearing-command-handler.messaging.raml @@ -413,11 +413,6 @@ baseUri: message://command/handler/message/hearing schema: !include json/schema/hearing.command.publish-hearing-lists-for-crown-courts-with-ids.json example: !include json/hearing.command.publish-hearing-lists-for-crown-courts-with-ids.json -# Compute Outstanding Fines - application/vnd.hearing.command.compute-outstanding-fines+json: - schema: !include json/schema/hearing.command.compute-outstanding-fines.json - example: !include json/hearing.command.compute-outstanding-fines.json - application/vnd.hearing.command.record-session-time+json: schema: !include json/schema/hearing.command.record-session-time.json example: !include json/hearing.command.record-session-time.json diff --git a/hearing-command/hearing-command-handler/src/raml/json/hearing.command.compute-outstanding-fines.json b/hearing-command/hearing-command-handler/src/raml/json/hearing.command.compute-outstanding-fines.json deleted file mode 100644 index f9037056e5..0000000000 --- a/hearing-command/hearing-command-handler/src/raml/json/hearing.command.compute-outstanding-fines.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "courtCentreId": "05683290-f82a-456f-8017-12d9717b703a", - "courtRoomIds": [ - "0d8b8e7c-e803-4ba5-96df-1917eccaaf9d", - "db4ac13f-9791-4796-8a8e-7c01d84a3893" - ], - "hearingDate": "2019-12-17" -} \ No newline at end of file diff --git a/hearing-command/hearing-command-handler/src/raml/json/schema/hearing.command.compute-outstanding-fines.json b/hearing-command/hearing-command-handler/src/raml/json/schema/hearing.command.compute-outstanding-fines.json deleted file mode 100644 index a2ad68fa48..0000000000 --- a/hearing-command/hearing-command-handler/src/raml/json/schema/hearing.command.compute-outstanding-fines.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-04/schema#", - "id": "http://justice.gov.uk/hearing/courts/hearing.command.compute-outstanding-fines.json", - "type": "object", - "properties": { - "courtCentreId": { - "$ref": "http://justice.gov.uk/core/courts/courtsDefinitions.json#/definitions/uuid" - }, - "courtRoomIds": { - "type": "array", - "minItems": 1, - "items": { - "$ref": "http://justice.gov.uk/core/courts/courtsDefinitions.json#/definitions/uuid" - } - }, - "hearingDate": { - "$ref": "http://justice.gov.uk/core/courts/courtsDefinitions.json#/definitions/datePattern" - } - }, - "required": [ - "courtCentreId", - "courtRoomIds", - "hearingDate" - ], - "additionalProperties": false -} \ No newline at end of file diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ComputeOutstandingFinesCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ComputeOutstandingFinesCommandHandlerTest.java deleted file mode 100644 index 8f4261e0d2..0000000000 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ComputeOutstandingFinesCommandHandlerTest.java +++ /dev/null @@ -1,111 +0,0 @@ -package uk.gov.moj.cpp.hearing.command.handler; - -import static java.util.UUID.fromString; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.is; -import static org.hamcrest.collection.IsIterableContainingInAnyOrder.containsInAnyOrder; -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.when; -import static uk.gov.justice.services.test.utils.core.enveloper.EnveloperFactory.createEnveloperWithEvents; -import static uk.gov.justice.services.test.utils.core.helper.EventStreamMockHelper.verifyAppendAndGetArgumentFrom; -import static uk.gov.justice.services.test.utils.core.messaging.MetadataBuilderFactory.metadataWithRandomUUID; -import static uk.gov.justice.services.test.utils.core.reflection.ReflectionUtil.setField; -import static uk.gov.moj.cpp.hearing.test.ObjectConverters.asPojo; -import static uk.gov.moj.cpp.hearing.test.matchers.BeanMatcher.isBean; - -import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; -import uk.gov.justice.services.common.converter.ObjectToJsonObjectConverter; -import uk.gov.justice.services.common.converter.jackson.ObjectMapperProducer; -import uk.gov.justice.services.core.enveloper.Enveloper; -import uk.gov.justice.services.eventsourcing.source.core.EventSource; -import uk.gov.justice.services.eventsourcing.source.core.EventStream; -import uk.gov.justice.services.eventsourcing.source.core.exception.EventStreamException; -import uk.gov.justice.services.messaging.JsonEnvelope; -import uk.gov.justice.services.messaging.MetadataBuilder; -import uk.gov.justice.services.test.utils.framework.api.JsonObjectConvertersFactory; -import uk.gov.moj.cpp.hearing.domain.event.OutstandingFinesQueried; - -import java.time.LocalDate; -import java.util.stream.Collectors; - -import javax.json.Json; -import javax.json.JsonObject; - -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Test; -import org.junit.jupiter.api.extension.ExtendWith; -import org.mockito.InjectMocks; -import org.mockito.Mock; -import org.mockito.Spy; -import org.mockito.junit.jupiter.MockitoExtension; - -@ExtendWith(MockitoExtension.class) -public class ComputeOutstandingFinesCommandHandlerTest { - - private static final String COURT_ROOM_ID1 = "2181fbc2-f4f9-495b-a648-9bb45e752302"; - private static final String COURT_ROOM_ID2 = "872f4cce-6be1-45c8-a520-604828c96cbd"; - private static final String COURT_ROOM_ID3 = "d16499b0-28ca-48e2-960a-c443123af9c3"; - - @Spy - private final Enveloper enveloper = createEnveloperWithEvents(OutstandingFinesQueried.class); - - @InjectMocks - private ComputeOutstandingFinesCommandHandler computeOutstandingFinesCommandHandler; - - - @Mock - private EventStream eventStream; - - @Mock - private EventSource eventSource; - - @Spy - private JsonObjectToObjectConverter jsonObjectToObjectConverter = new JsonObjectConvertersFactory().jsonObjectToObjectConverter(); - - @Spy - private ObjectToJsonObjectConverter objectToJsonObjectConverter = new JsonObjectConvertersFactory().objectToJsonObjectConverter(); - - - @Test - public void computeOutstandingFines() throws EventStreamException { - - - final JsonObject payload = createCourtRoomsOutstandingFInesQuery(); - - final MetadataBuilder metadataBuilder = metadataWithRandomUUID("hearing.command.compute-outstanding-fines") - .withClientCorrelationId("0d5d72c0-7987-4677-8ce7-69fab7031f9b"); - - final JsonEnvelope envelope = JsonEnvelope.envelopeFrom(metadataBuilder, payload); - - when(eventSource.getStreamById(any())).thenReturn(eventStream); - - - computeOutstandingFinesCommandHandler.computeOutstandingFines(envelope); - - final JsonEnvelope actualEventProduced = verifyAppendAndGetArgumentFrom(eventStream).collect(Collectors.toList()).get(0); - assertThat(actualEventProduced.metadata().name(), is("hearing.compute-outstanding-fines-requested")); - assertThat(actualEventProduced.metadata().clientCorrelationId().get(), is("0d5d72c0-7987-4677-8ce7-69fab7031f9b")); - assertThat(asPojo(actualEventProduced, OutstandingFinesQueried.class), - isBean(OutstandingFinesQueried.class) - .with(OutstandingFinesQueried::getCourtCentreId, is(fromString("88abd281-8c52-4171-aca1-740f734b43d7"))) - .with(OutstandingFinesQueried::getCourtRoomIds, containsInAnyOrder( - fromString(COURT_ROOM_ID1), - fromString(COURT_ROOM_ID2), - fromString(COURT_ROOM_ID3) - )) - .with(OutstandingFinesQueried::getHearingDate, is(LocalDate.parse("2019-12-18"))) - ); - } - - private JsonObject createCourtRoomsOutstandingFInesQuery() { - return Json.createObjectBuilder() - .add("courtCentreId", "88abd281-8c52-4171-aca1-740f734b43d7") - .add("courtRoomIds", Json.createArrayBuilder() - .add(COURT_ROOM_ID1) - .add(COURT_ROOM_ID2) - .add(COURT_ROOM_ID3)) - .add("hearingDate", "2019-12-18") - .build(); - } - -} \ No newline at end of file diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/HearingCommandHandlerRamlConfigTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/HearingCommandHandlerRamlConfigTest.java index 18c0f5806c..10067f76ce 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/HearingCommandHandlerRamlConfigTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/HearingCommandHandlerRamlConfigTest.java @@ -61,7 +61,6 @@ public void testActionNameAndHandleNameAreSame() throws Exception { UpdateDefendantLegalAidStatusCommandHandler.class, UpdateCaseDefendantsHandler.class, PublishCourtListStatusHandler.class, - ComputeOutstandingFinesCommandHandler.class, SessionTimeCommandHandler.class, BookProvisionalHearingSlotsCommandHandler.class, ClearVacatedReasonCommandHandler.class, diff --git a/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/OutstandingFinesQueried.java b/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/OutstandingFinesQueried.java index 4073983981..a8e89c23d7 100644 --- a/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/OutstandingFinesQueried.java +++ b/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/OutstandingFinesQueried.java @@ -9,6 +9,7 @@ import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; +@Deprecated @Event("hearing.compute-outstanding-fines-requested") public class OutstandingFinesQueried { diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/ComputeOutstandingFinesRequestedProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/ComputeOutstandingFinesRequestedProcessor.java deleted file mode 100644 index 813bff933a..0000000000 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/ComputeOutstandingFinesRequestedProcessor.java +++ /dev/null @@ -1,67 +0,0 @@ -package uk.gov.moj.cpp.hearing.event; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; -import uk.gov.justice.services.core.annotation.Component; -import uk.gov.justice.services.core.annotation.Handles; -import uk.gov.justice.services.core.annotation.ServiceComponent; -import uk.gov.justice.services.core.requester.Requester; -import uk.gov.justice.services.core.sender.Sender; -import uk.gov.justice.services.messaging.Envelope; -import uk.gov.justice.services.messaging.JsonEnvelope; -import uk.gov.moj.cpp.hearing.domain.event.OutstandingFinesQueried; - -import javax.inject.Inject; -import javax.json.JsonObject; -import java.util.UUID; -import java.util.stream.Collectors; - -import static javax.json.Json.createObjectBuilder; -import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; -import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; -import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; -import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; - -@ServiceComponent(EVENT_PROCESSOR) -public class ComputeOutstandingFinesRequestedProcessor { - - private static final Logger LOGGER = LoggerFactory.getLogger(ComputeOutstandingFinesRequestedProcessor.class); - - @Inject - private Sender sender; - - @Inject - @ServiceComponent(Component.EVENT_PROCESSOR) - private Requester requester; - - @Inject - private JsonObjectToObjectConverter jsonObjectToObjectConverter; - - - @Handles("hearing.compute-outstanding-fines-requested") - public void publicComputeOutstandingFinesRequested(final JsonEnvelope event) { - final OutstandingFinesQueried finesQueried = this.jsonObjectToObjectConverter.convert(event.payloadAsJsonObject(), - OutstandingFinesQueried.class); - - - final Envelope envelope = envelop(createObjectBuilder() - .add("courtCentreId", finesQueried.getCourtCentreId().toString()) - .add("courtRoomIds", finesQueried.getCourtRoomIds().stream().map(UUID::toString).collect(Collectors.joining(","))) - .add("hearingDate", finesQueried.getHearingDate().toString()) - .build() - ).withName("hearing.defendant.info").withMetadataFrom(event); - - final Envelope courtBasedDefendantQueryInformation = requester.requestAsAdmin(envelopeFrom(envelope.metadata(), envelope.payload()), JsonObject.class); - final JsonObject payload = courtBasedDefendantQueryInformation.payload(); - if (!payload.isEmpty()) { - this.sender.send(envelopeFrom( - metadataFrom(event.metadata()).withName("stagingenforcement.court.rooms.outstanding-fines"), - payload)); - }else { - LOGGER.info("hearing.defendant.info response Information is empty"); - } - - } - -} diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ComputeOutstandingFinesRequestedProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ComputeOutstandingFinesRequestedProcessorTest.java deleted file mode 100644 index 3e73347646..0000000000 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ComputeOutstandingFinesRequestedProcessorTest.java +++ /dev/null @@ -1,116 +0,0 @@ -package uk.gov.moj.cpp.hearing.event; - -import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.allOf; -import static org.hamcrest.Matchers.is; -import static org.mockito.Mockito.doNothing; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.when; -import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; -import static uk.gov.justice.services.test.utils.core.enveloper.EnveloperFactory.createEnveloper; -import static uk.gov.justice.services.test.utils.core.matchers.JsonEnvelopeMetadataMatcher.withMetadataEnvelopedFrom; -import static uk.gov.justice.services.test.utils.core.messaging.MetadataBuilderFactory.metadataWithRandomUUID; - -import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; -import uk.gov.justice.services.core.enveloper.Enveloper; -import uk.gov.justice.services.core.requester.Requester; -import uk.gov.justice.services.core.sender.Sender; -import uk.gov.justice.services.messaging.Envelope; -import uk.gov.justice.services.messaging.JsonEnvelope; -import uk.gov.justice.services.test.utils.core.matchers.JsonEnvelopePayloadMatcher; -import uk.gov.moj.cpp.hearing.domain.event.OutstandingFinesQueried; - -import java.time.LocalDate; -import java.util.Arrays; -import java.util.List; -import java.util.UUID; - -import javax.json.Json; -import javax.json.JsonObject; - -import org.junit.jupiter.api.Test; -import org.junit.jupiter.api.extension.ExtendWith; -import org.mockito.ArgumentCaptor; -import org.mockito.Captor; -import org.mockito.InjectMocks; -import org.mockito.Mock; -import org.mockito.Spy; -import org.mockito.junit.jupiter.MockitoExtension; - -@ExtendWith(MockitoExtension.class) -public class ComputeOutstandingFinesRequestedProcessorTest { - - @Spy - private final Enveloper enveloper = createEnveloper(); - - @Mock - private Sender sender; - - @Captor - private ArgumentCaptor envelopeArgumentCaptor; - - @Captor - private ArgumentCaptor argumentCaptor; - - @Mock - private Requester requester; - - @Mock - private JsonObjectToObjectConverter jsonObjectToObjectConverter; - - - @InjectMocks - private ComputeOutstandingFinesRequestedProcessor computeOutstandingFinesRequestedProcessor; - - - @Test - public void publicComputeOutstandingFinesRequested() { - final JsonObject outstandingFinesQuery = Json.createObjectBuilder().build(); - final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.compute-outstanding-fines-requested"), - outstandingFinesQuery); - - - final Envelope courtBasedDefendantQueryInformation = mock(Envelope.class); - when(courtBasedDefendantQueryInformation.payload()).thenReturn(Json.createObjectBuilder().build()); - - final OutstandingFinesQueried outstandingFinesQueried = OutstandingFinesQueried.newBuilder() - .withCourtCentreId(UUID.fromString("cb41f33d-9de0-4f49-9f8e-b7b06de4279a")) - .withCourtRoomIds(Arrays.asList(UUID.fromString("52faed9a-db0f-4430-bdf0-d6672ff7f3fa"), - UUID.fromString("d760acf6-fc92-46dd-bf26-80ebf50fbed4"))) - .withHearingDate(LocalDate.parse("2019-12-21")) - .build(); - when(jsonObjectToObjectConverter.convert(outstandingFinesQuery, OutstandingFinesQueried.class)).thenReturn( - outstandingFinesQueried - ); - - when(requester.requestAsAdmin(envelopeArgumentCaptor.capture(), argumentCaptor.capture())).thenReturn(courtBasedDefendantQueryInformation); - final JsonObject courtBasedDefendantQueryJsonObject = mock(JsonObject.class); - when(courtBasedDefendantQueryInformation.payload()).thenReturn(courtBasedDefendantQueryJsonObject); - - doNothing().when(sender).send(envelopeArgumentCaptor.capture()); - - computeOutstandingFinesRequestedProcessor.publicComputeOutstandingFinesRequested(event); - - final List allValues = envelopeArgumentCaptor.getAllValues(); - final JsonEnvelope outstandingFinesQueryEnvelope = allValues.get(0); - final Envelope courtBasedDefendantQueryEnvelope = allValues.get(1); - - assertThat(outstandingFinesQueryEnvelope.metadata(), withMetadataEnvelopedFrom(event)); - assertThat(outstandingFinesQueryEnvelope.payload(), - JsonEnvelopePayloadMatcher.payloadIsJson( - allOf( - - withJsonPath("$.courtCentreId", is("cb41f33d-9de0-4f49-9f8e-b7b06de4279a")), - withJsonPath("$.courtRoomIds", is("52faed9a-db0f-4430-bdf0-d6672ff7f3fa,d760acf6-fc92-46dd-bf26-80ebf50fbed4")), - withJsonPath("$.hearingDate", is("2019-12-21")) - ))) - ; - - assertThat(courtBasedDefendantQueryEnvelope.metadata(), withMetadataEnvelopedFrom(event) - .withCausationIds() - .withName("stagingenforcement.court.rooms.outstanding-fines")); - assertThat(courtBasedDefendantQueryEnvelope.payload(), is(courtBasedDefendantQueryJsonObject)); - - } -} diff --git a/hearing-event/hearing-event-processor/src/yaml/json/schema/hearing.compute-outstanding-fines-requested.json b/hearing-event/hearing-event-processor/src/yaml/json/schema/hearing.compute-outstanding-fines-requested.json deleted file mode 100644 index 5b5427fa89..0000000000 --- a/hearing-event/hearing-event-processor/src/yaml/json/schema/hearing.compute-outstanding-fines-requested.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-04/schema#", - "id": "http://justice.gov.uk/json/schemas/hearing/hearing.compute-outstanding-fines-requested.json", - "type": "object", - "properties": { - "courtCentreId": { - "$ref": "http://justice.gov.uk/core/courts/courtsDefinitions.json#/definitions/uuid" - }, - "courtRoomIds": { - "type": "array", - "minItems": 1, - "items": { - "$ref": "http://justice.gov.uk/core/courts/courtsDefinitions.json#/definitions/uuid" - } - }, - "hearingDate": { - "$ref": "http://justice.gov.uk/core/courts/courtsDefinitions.json#/definitions/datePattern" - } - }, - "required": [ - "courtCentreId", - "courtRoomIds", - "hearingDate" - ], - "additionalProperties": false -} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/yaml/json/schema/public.hearing.compute-outstanding-fines-requested.json b/hearing-event/hearing-event-processor/src/yaml/json/schema/public.hearing.compute-outstanding-fines-requested.json deleted file mode 100644 index ec63e75ef3..0000000000 --- a/hearing-event/hearing-event-processor/src/yaml/json/schema/public.hearing.compute-outstanding-fines-requested.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-04/schema#", - "id": "http://justice.gov.uk/json/schemas/hearing/public.hearing.compute-outstanding-fines-requested.json", - "type": "object", - "properties": { - "courtRooms": { - "type": "array", - "items": { - "$ref": "#/definitions/courtRooms" - } - } - }, - "required": [ - "courtRooms" - ], - "definitions": { - "courtRooms": { - "type": "object", - "properties": { - "courtRoomName": { - "type": "string" - }, - "defendantDetails": { - "type": "array", - "items": { - "$ref": "#/definitions/defendantDetails" - } - } - }, - "required": [ - "courtRoomName", - "defendantDetails" - ] - }, - "defendantDetails": { - "type": "object", - "properties": { - "defendantId": { - "$ref": "http://justice.gov.uk/core/courts/courtsDefinitions.json#/definitions/uuid" - }, - "firstName": { - "type": "string" - }, - "lastName": { - "type": "string" - }, - "dateOfBirth": { - "$ref": "http://justice.gov.uk/core/courts/courtsDefinitions.json#/definitions/datePattern" - }, - "nationalInsuranceNumber": { - "type": "string" - }, - "legalEntityOrganizationName": { - "description": "The name of legal entity.", - "type": "string" - } - }, - "required": [ - "id" - ] - } - } -} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/yaml/subscriptions-descriptor.yaml b/hearing-event/hearing-event-processor/src/yaml/subscriptions-descriptor.yaml index 85ee065a15..f99c72e77f 100644 --- a/hearing-event/hearing-event-processor/src/yaml/subscriptions-descriptor.yaml +++ b/hearing-event/hearing-event-processor/src/yaml/subscriptions-descriptor.yaml @@ -273,10 +273,6 @@ subscriptions_descriptor: - name: hearing.application-defendants-updated schema_uri: http://justice.gov.uk/json/schemas/hearing/hearing.application-defendants-updated.json - # Outstanding Fines Queried - - name: hearing.compute-outstanding-fines-requested - schema_uri: http://justice.gov.uk/json/schemas/hearing/hearing.compute-outstanding-fines-requested.json - # Set Trial Type - name: hearing.hearing-trial-type-set schema_uri: http://justice.gov.uk/hearing/courts/hearing.hearing-trial-type-set.json diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/DefendantOutstandingFinesByCourtRoomIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/DefendantOutstandingFinesByCourtRoomIT.java index 4768c25fd0..9480be6eab 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/DefendantOutstandingFinesByCourtRoomIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/DefendantOutstandingFinesByCourtRoomIT.java @@ -1,39 +1,41 @@ package uk.gov.moj.cpp.hearing.it; -import static com.github.tomakehurst.wiremock.client.WireMock.containing; -import static com.github.tomakehurst.wiremock.client.WireMock.postRequestedFor; -import static com.github.tomakehurst.wiremock.client.WireMock.urlPathMatching; -import static com.github.tomakehurst.wiremock.client.WireMock.verify; -import static java.util.List.of; -import static java.util.UUID.randomUUID; -import static org.awaitility.Awaitility.waitAtMost; +import static com.google.common.collect.ImmutableList.of; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.is; +import static uk.gov.justice.services.common.http.HeaderConstants.USER_ID; +import static uk.gov.justice.services.test.utils.core.http.BaseUriProvider.getBaseUri; import static uk.gov.moj.cpp.hearing.it.UseCases.initiateHearing; -import static uk.gov.moj.cpp.hearing.it.Utilities.makeCommand; import static uk.gov.moj.cpp.hearing.test.CommandHelpers.h; import static uk.gov.moj.cpp.hearing.test.TestTemplates.InitiateHearingCommandTemplates.standardInitiateHearingTemplate; import static uk.gov.moj.cpp.hearing.utils.WireMockStubUtils.stubStagingenforcementCourtRoomsOutstandingFines; import uk.gov.justice.core.courts.CourtCentre; import uk.gov.justice.core.courts.HearingDay; -import uk.gov.justice.core.courts.Person; -import uk.gov.justice.services.common.http.HeaderConstants; +import uk.gov.justice.services.common.converter.StringToJsonObjectConverter; +import uk.gov.justice.services.test.utils.core.rest.ResteasyClientBuilderFactory; import uk.gov.moj.cpp.hearing.command.initiate.InitiateHearingCommand; import uk.gov.moj.cpp.hearing.domain.OutstandingFinesQuery; -import uk.gov.moj.cpp.hearing.test.CommandHelpers.InitiateHearingCommandHelper; -import java.time.Duration; import java.time.ZonedDateTime; -import java.util.Arrays; -import java.util.List; import java.util.UUID; -import com.github.tomakehurst.wiremock.matching.RequestPatternBuilder; +import javax.ws.rs.client.Entity; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.MultivaluedHashMap; +import javax.ws.rs.core.MultivaluedMap; +import javax.ws.rs.core.Response; + +import com.fasterxml.jackson.core.JsonProcessingException; +import io.restassured.path.json.JsonPath; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; @SuppressWarnings("unchecked") public class DefendantOutstandingFinesByCourtRoomIT extends AbstractIT { + final StringToJsonObjectConverter stringToJsonObjectConverter = new StringToJsonObjectConverter(); + @BeforeEach public void setUp() { setUpPerTest(); @@ -41,44 +43,40 @@ public void setUp() { } @Test - public void shouldPostComputeOutstandingFines() { + public void shouldPostComputeOutstandingFines() throws JsonProcessingException { final InitiateHearingCommand initiateHearingCommand = standardInitiateHearingTemplate(); final CourtCentre courtCentre = initiateHearingCommand.getHearing().getCourtCentre(); final HearingDay hearingDay = initiateHearingCommand.getHearing().getHearingDays().get(0); hearingDay.setSittingDay(ZonedDateTime.now().plusDays(1)); - final InitiateHearingCommandHelper initiate = h(initiateHearing(getRequestSpec(), initiateHearingCommand)); - - final UUID correlationId = randomUUID(); - getRequestSpec().header(HeaderConstants.CLIENT_CORRELATION_ID, correlationId); - makeCommand(getRequestSpec(), "hearing.compute-outstanding-fines") - .ofType("application/vnd.hearing.compute-outstanding-fines+json") - .withPayload( - OutstandingFinesQuery.newBuilder() - .withCourtCentreId(courtCentre.getId()) - .withCourtRoomIds(of(courtCentre.getRoomId())) - .withHearingDate(initiateHearingCommand.getHearing().getHearingDays().get(0).getSittingDay().toLocalDate()) - .build() - ) - .executeSuccessfully(); - final Person personDetails = initiate.getFirstDefendantForFirstCase().getPersonDefendant().getPersonDetails(); - - waitAtMost(Duration.ofSeconds(30)) - .untilAsserted(() -> verifyStagingEnforcementCourtRoomsOutstandingFines(Arrays.asList( - personDetails.getFirstName(), - personDetails.getLastName(), - personDetails.getNationalInsuranceNumber() - )) - ); + h(initiateHearing(getRequestSpec(), initiateHearingCommand)); + + final OutstandingFinesQuery payload = OutstandingFinesQuery.newBuilder() + .withCourtCentreId(courtCentre.getId()) + .withCourtRoomIds(of(courtCentre.getRoomId())) + .withHearingDate(initiateHearingCommand.getHearing().getHearingDays().get(0).getSittingDay().toLocalDate()) + .build(); + try (Response response = query(getBaseUri() + "/hearing-query-api/query/api/rest/hearing/outstanding-fines", + "application/vnd.hearing.query.outstanding-fines+json", + Utilities.JsonUtil.toJsonString(payload), + headers())) { + + final JsonPath jsonPath = new JsonPath(response.readEntity(String.class)); + + assertThat(jsonPath.getString("courtRooms[0].courtRoomName"), is("room1")); + assertThat(jsonPath.getString("courtRooms[0].outstandingFines[0].defendantName"), is("Abbie ARMSTRONG")); + } } - private void verifyStagingEnforcementCourtRoomsOutstandingFines(final List expectedValues) { + private static MultivaluedMap headers() { + final MultivaluedMap headers = new MultivaluedHashMap<>(); + headers.putSingle(USER_ID, UUID.randomUUID()); + return headers; + } - final RequestPatternBuilder requestPatternBuilder = postRequestedFor(urlPathMatching("/stagingenforcement-service/command/api/rest/stagingenforcement/court/rooms/outstanding-fines")); - expectedValues.forEach( - expectedValue -> requestPatternBuilder.withRequestBody(containing(expectedValue)) - ); - verify(requestPatternBuilder); + public Response query(final String url, final String contentType, final String requestPayload, final MultivaluedMap headers) { + Entity entity = Entity.entity(requestPayload, MediaType.valueOf(contentType)); + return ResteasyClientBuilderFactory.clientBuilder().build().target(url).request().headers(headers).post(entity); } diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/WireMockStubUtils.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/WireMockStubUtils.java index 22f96b6d9e..cb0015a618 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/WireMockStubUtils.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/WireMockStubUtils.java @@ -9,6 +9,7 @@ import static com.github.tomakehurst.wiremock.client.WireMock.stubFor; import static com.github.tomakehurst.wiremock.client.WireMock.urlMatching; import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo; +import static com.github.tomakehurst.wiremock.client.WireMock.urlPathMatching; import static java.text.MessageFormat.format; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; @@ -247,10 +248,14 @@ public static void setupAsMagistrateUser(final UUID userId) { } public static void stubStagingenforcementCourtRoomsOutstandingFines() { - stubFor(post(urlPathEqualTo("/stagingenforcement-service/command/api/rest/stagingenforcement/court/rooms/outstanding-fines")) - .withHeader(CONTENT_TYPE, equalTo("application/vnd.stagingenforcement.court.rooms.outstanding-fines+json")) - .willReturn(aResponse().withStatus(SC_ACCEPTED))); - + stubFor(post(urlPathMatching("/stagingenforcement-service/query/api/rest/stagingenforcement/court/rooms/outstanding-fines")) + .withHeader(CONTENT_TYPE, containing("stagingenforcement.query.court-rooms-outstanding-fines")) + .willReturn(aResponse().withStatus(SC_OK) + .withHeader(ID, randomUUID().toString()) + .withHeader(CONTENT_TYPE, APPLICATION_JSON) + .withBody( + getPayload("stub-data/stagingenforcement.query.court-rooms-outstanding-fines-response.json") + ))); } public static final void mockMaterialUpload() { diff --git a/hearing-integration-test/src/test/resources/stub-data/hearing.query.outstanding-fines.json b/hearing-integration-test/src/test/resources/stub-data/hearing.query.outstanding-fines.json new file mode 100644 index 0000000000..a16aa8528a --- /dev/null +++ b/hearing-integration-test/src/test/resources/stub-data/hearing.query.outstanding-fines.json @@ -0,0 +1,7 @@ +{ + "courtCentreId": "b52f805c-2821-4904-a0e0-26f7fda6dd08", + "courtRoomIds": [ + "5d5d7b5e-7833-4dc1-b94a-d1a5c635c623" + ], + "hearingDate": "2019-12-17" +} \ No newline at end of file diff --git a/hearing-integration-test/src/test/resources/stub-data/stagingenforcement.query.court-rooms-outstanding-fines-response.json b/hearing-integration-test/src/test/resources/stub-data/stagingenforcement.query.court-rooms-outstanding-fines-response.json new file mode 100644 index 0000000000..cce7029540 --- /dev/null +++ b/hearing-integration-test/src/test/resources/stub-data/stagingenforcement.query.court-rooms-outstanding-fines-response.json @@ -0,0 +1,41 @@ +{ + "courtRooms":[ + { + "courtRoomName": "room1", + "outstandingFines":[ + { + "defendantName":"Abbie ARMSTRONG", + "dateOfBirth":"1980-11-06", + "accountNumber":"09001080W", + "address":"777 Oxford Pl\nShire Hall\nIpswich\nIP2 7QQ", + "lastEnforcementAction":"NBWT", + "outstandingBalance":200.00, + "isCollectionOrderMade":true, + "paymentRate":"£20 per fortnight", + "amountImposed":200.00, + "amountPaid":0.00, + "defaultDays":0, + "isConsolidated":true, + "accountLocation":"LCC 123\nLondon Road\nLondon\nNW1 7EL", + "parentGuardianToPay":false + }, + { + "defendantName":"Max Tango", + "dateOfBirth":"1985-11-06", + "accountNumber":"09001111W", + "address":"777 London Pl\nShire Hall\nIpswich\nEC2 7QQ", + "lastEnforcementAction":"NBWT", + "outstandingBalance":400.00, + "isCollectionOrderMade":true, + "paymentRate":"£40 per fortnight", + "amountImposed":400.00, + "amountPaid":10.00, + "defaultDays":0, + "isConsolidated":true, + "accountLocation":"LCC 123\nLondon Road\nLondon\nNW1 7EL", + "parentGuardianToPay":false + } + ] + } + ] +} \ No newline at end of file diff --git a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java index 168b3fc195..d958ea206f 100644 --- a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java +++ b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java @@ -5,11 +5,13 @@ import static javax.json.Json.createObjectBuilder; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; +import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; import static uk.gov.justice.services.messaging.JsonObjects.getString; import static uk.gov.justice.services.messaging.JsonObjects.getUUID; import uk.gov.justice.core.courts.CrackedIneffectiveTrial; import uk.gov.justice.hearing.courts.GetHearings; +import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; import uk.gov.justice.services.core.annotation.Component; import uk.gov.justice.services.core.annotation.Handles; import uk.gov.justice.services.core.annotation.ServiceComponent; @@ -20,10 +22,10 @@ import uk.gov.justice.services.messaging.Envelope; import uk.gov.justice.services.messaging.JsonEnvelope; import uk.gov.moj.cpp.external.domain.progression.prosecutioncases.ProsecutionCase; +import uk.gov.moj.cpp.hearing.domain.OutstandingFinesQuery; import uk.gov.moj.cpp.hearing.domain.referencedata.HearingTypes; import uk.gov.moj.cpp.hearing.event.nowsdomain.referencedata.nows.CrackedIneffectiveVacatedTrialTypes; import uk.gov.moj.cpp.hearing.event.nowsdomain.referencedata.resultdefinition.Prompt; -import uk.gov.moj.cpp.hearing.mapping.CourtApplicationsSerializer; import uk.gov.moj.cpp.hearing.query.api.service.accessfilter.AccessibleApplications; import uk.gov.moj.cpp.hearing.query.api.service.accessfilter.AccessibleCases; import uk.gov.moj.cpp.hearing.query.api.service.accessfilter.DDJChecker; @@ -54,6 +56,7 @@ import java.util.Optional; import java.util.Set; import java.util.UUID; +import java.util.stream.Collectors; import javax.inject.Inject; import javax.json.Json; @@ -128,6 +131,9 @@ public class HearingQueryApi { @Inject private ProgressionService progressionService; + @Inject + private JsonObjectToObjectConverter jsonObjectToObjectConverter; + @Inject private HearingService hearingService; @@ -418,4 +424,27 @@ public JsonEnvelope getProsecutionCaseForHearing(final JsonEnvelope query) { } return query; } + + @Handles("hearing.query.outstanding-fines") + public JsonEnvelope getHearingOutstandingFines(final JsonEnvelope queryEnvelope) { + + final OutstandingFinesQuery outstandingFinesQuery = jsonObjectToObjectConverter.convert(queryEnvelope.payloadAsJsonObject(), OutstandingFinesQuery.class); + final JsonEnvelope envelopeWithReStructuredPayload = envelopeFrom(queryEnvelope.metadata(), createObjectBuilder() + .add("courtCentreId", outstandingFinesQuery.getCourtCentreId().toString()) + .add("courtRoomIds", outstandingFinesQuery.getCourtRoomIds().stream().map(UUID::toString).collect(Collectors.joining(","))) + .add("hearingDate", outstandingFinesQuery.getHearingDate().toString()) + .build()); + + final JsonEnvelope envelope = this.hearingQueryView.getDefendantInfoFromCourtHouseId(envelopeWithReStructuredPayload); + + final JsonEnvelope jsonEnvelope = envelopeFrom( + metadataFrom(queryEnvelope.metadata()).withName("stagingenforcement.query.court-rooms-outstanding-fines"), + envelope.payload()); + + final Envelope outStandingFinesEnvelope = requester.requestAsAdmin(jsonEnvelope, JsonObject.class); + + return envelopeFrom(queryEnvelope.metadata(), outStandingFinesEnvelope.payload()); + + } + } diff --git a/hearing-query/hearing-query-api/src/main/resources/uk/gov/moj/cpp/hearing/query/api/accesscontrol/hearing-query-api.drl b/hearing-query/hearing-query-api/src/main/resources/uk/gov/moj/cpp/hearing/query/api/accesscontrol/hearing-query-api.drl index 788b46ce30..7c6888da25 100644 --- a/hearing-query/hearing-query-api/src/main/resources/uk/gov/moj/cpp/hearing/query/api/accesscontrol/hearing-query-api.drl +++ b/hearing-query/hearing-query-api/src/main/resources/uk/gov/moj/cpp/hearing/query/api/accesscontrol/hearing-query-api.drl @@ -290,3 +290,13 @@ rule "Query - API - hearing.get-hearing-event-log-count" then $outcome.setSuccess(true); end + + +rule "Query - API - Action - hearing.query.outstanding-fines" + when + $outcome: Outcome(); + $action: Action(name == "hearing.query.outstanding-fines"); + eval(userAndGroupProvider.isMemberOfAnyOfTheSuppliedGroups($action,"Court Clerks", "Legal Advisers", "Court Associate", "NCES", "Court Administrators")); + then + $outcome.setSuccess(true); +end diff --git a/hearing-query/hearing-query-api/src/raml/hearing-query-api.raml b/hearing-query/hearing-query-api/src/raml/hearing-query-api.raml index 6314fa2241..7f0bcd40fa 100644 --- a/hearing-query/hearing-query-api/src/raml/hearing-query-api.raml +++ b/hearing-query/hearing-query-api/src/raml/hearing-query-api.raml @@ -475,6 +475,27 @@ protocols: [ HTTP, HTTPS ] example: !include json/hearing.defendant.outstanding-fines.json schema: !include json/schema/hearing.defendant.outstanding-fines.json +/outstanding-fines: + post: + description: | + ... + (mapping): + requestType: application/vnd.hearing.query.outstanding-fines+json + responseType: application/vnd.hearing.query.outstanding-fines-response+json + name: hearing.query.outstanding-fines + ... + body: + application/vnd.hearing.query.outstanding-fines+json: + example: !include json/hearing.query.outstanding-fines.json + schema: !include json/schema/hearing.query.outstanding-fines.json + responses: + 200: + description: OK + body: + application/vnd.hearing.outstanding-fines-response+json: + example: !include json/hearing.query.outstanding-fines-response.json + schema: !include json/schema/hearing.query.outstanding-fines-response.json + /session-time/{courtHouseId}/{courtRoomId}: uriParameters: diff --git a/hearing-query/hearing-query-api/src/raml/json/hearing.query.outstanding-fines-response.json b/hearing-query/hearing-query-api/src/raml/json/hearing.query.outstanding-fines-response.json new file mode 100644 index 0000000000..cce7029540 --- /dev/null +++ b/hearing-query/hearing-query-api/src/raml/json/hearing.query.outstanding-fines-response.json @@ -0,0 +1,41 @@ +{ + "courtRooms":[ + { + "courtRoomName": "room1", + "outstandingFines":[ + { + "defendantName":"Abbie ARMSTRONG", + "dateOfBirth":"1980-11-06", + "accountNumber":"09001080W", + "address":"777 Oxford Pl\nShire Hall\nIpswich\nIP2 7QQ", + "lastEnforcementAction":"NBWT", + "outstandingBalance":200.00, + "isCollectionOrderMade":true, + "paymentRate":"£20 per fortnight", + "amountImposed":200.00, + "amountPaid":0.00, + "defaultDays":0, + "isConsolidated":true, + "accountLocation":"LCC 123\nLondon Road\nLondon\nNW1 7EL", + "parentGuardianToPay":false + }, + { + "defendantName":"Max Tango", + "dateOfBirth":"1985-11-06", + "accountNumber":"09001111W", + "address":"777 London Pl\nShire Hall\nIpswich\nEC2 7QQ", + "lastEnforcementAction":"NBWT", + "outstandingBalance":400.00, + "isCollectionOrderMade":true, + "paymentRate":"£40 per fortnight", + "amountImposed":400.00, + "amountPaid":10.00, + "defaultDays":0, + "isConsolidated":true, + "accountLocation":"LCC 123\nLondon Road\nLondon\nNW1 7EL", + "parentGuardianToPay":false + } + ] + } + ] +} \ No newline at end of file diff --git a/hearing-command/hearing-command-api/src/raml/json/hearing.compute-outstanding-fines.json b/hearing-query/hearing-query-api/src/raml/json/hearing.query.outstanding-fines.json similarity index 100% rename from hearing-command/hearing-command-api/src/raml/json/hearing.compute-outstanding-fines.json rename to hearing-query/hearing-query-api/src/raml/json/hearing.query.outstanding-fines.json diff --git a/hearing-query/hearing-query-api/src/raml/json/schema/hearing.query.outstanding-fines-response.json b/hearing-query/hearing-query-api/src/raml/json/schema/hearing.query.outstanding-fines-response.json new file mode 100644 index 0000000000..0d8bcaf2b7 --- /dev/null +++ b/hearing-query/hearing-query-api/src/raml/json/schema/hearing.query.outstanding-fines-response.json @@ -0,0 +1,111 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "id": "http://justice.gov.uk/json/schemas/hearing/hearing.query.outstanding-fines-response.json", + "type": "object", + "properties": { + "courtRooms": { + "type": "array", + "minItems": 1, + "items": { + "$ref": "#/definitions/courtRoom" + } + } + }, + "additionalItems": false, + "required": [ + "courtRooms" + ], + "definitions": { + "courtRoom": { + "type": "object", + "properties": { + "courtRoomName": { + "description": "The first name of court room.", + "type": "string" + }, + "outstandingFines": { + "description": "the outstanding fines for defendants", + "type": "array", + "minItems": 1, + "items": { + "$ref": "#/definitions/outstandingFines" + } + } + }, + "required": [ + "courtRoomName", + "outstandingFines" + ], + "additionalProperties": false + }, + "outstandingFines": { + "type": "object", + "additionalProperties": false, + "properties": { + "defendantName": { + "type": "string" + }, + "dateOfBirth": { + "description": "The DOB of Defendant", + "$ref": "http://justice.gov.uk/domain/core/common/definitions.json#/definitions/date" + }, + "accountNumber": { + "description": "The Account Number", + "type": "string" + }, + "address": { + "description": "The Address of Defendant", + "type": "string" + }, + "lastEnforcementAction": { + "description": "The Last Enforcement Action", + "type": "string" + }, + "outstandingBalance": { + "description": "Balance Outstanding", + "$ref": "#/definitions/money" + }, + "isCollectionOrderMade": { + "description": "Collection Order Made", + "type": "boolean" + }, + "paymentRate": { + "description": "Payment Rate", + "type": "string" + }, + "amountImposed": { + "description": "Amount Imposed", + "$ref": "#/definitions/money" + }, + "amountPaid": { + "description": "Amount Paid", + "$ref": "#/definitions/money" + }, + "defaultDays": { + "description": "Days in default", + "type": "integer" + }, + "isConsolidated": { + "description": "Consolidation flag", + "type": "boolean" + }, + "accountLocation": { + "description": "Account Location", + "type": "string" + }, + "parentGuardianToPay": { + "description": "Parent / Guardian Flag", + "type": "boolean" + } + }, + "required": [ + "defendantName", + "accountNumber" + ] + }, + "money": { + "type": "number", + "multipleOf": 0.01 + } + } +} \ No newline at end of file diff --git a/hearing-command/hearing-command-api/src/raml/json/schema/hearing.compute-outstanding-fines.json b/hearing-query/hearing-query-api/src/raml/json/schema/hearing.query.outstanding-fines.json similarity index 88% rename from hearing-command/hearing-command-api/src/raml/json/schema/hearing.compute-outstanding-fines.json rename to hearing-query/hearing-query-api/src/raml/json/schema/hearing.query.outstanding-fines.json index c798fefaf8..2a2dd685cf 100644 --- a/hearing-command/hearing-command-api/src/raml/json/schema/hearing.compute-outstanding-fines.json +++ b/hearing-query/hearing-query-api/src/raml/json/schema/hearing.query.outstanding-fines.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-04/schema#", - "id": "http://justice.gov.uk/hearing/courts/hearing.compute-outstanding-fines.json", + "id": "http://justice.gov.uk/hearing/courts/hearing.query.outstanding-fines.json", "type": "object", "properties": { "courtCentreId": { diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryView.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryView.java index 4510153c0c..a6318a1574 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryView.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryView.java @@ -82,11 +82,11 @@ public class HearingQueryView { private static final String FIELD_BAIL_STATUS_CODE = "bailStatusCode"; private static final String FIELD_DEFENDANT_ID = "defendantId"; private static final String FIELD_DATE = "date"; - private static final String FIELD_COURT_CENTRE_ID = "courtCentreId"; + public static final String FIELD_COURT_CENTRE_ID = "courtCentreId"; private static final String FIELD_COURT_CENTRE_IDS = "courtCentreIds"; private static final String DATE_OF_HEARING = "dateOfHearing"; - private static final String FIELD_COURT_ROOM_IDS = "courtRoomIds"; - private static final String FIELD_HEARING_DATE = "hearingDate"; + public static final String FIELD_COURT_ROOM_IDS = "courtRoomIds"; + public static final String FIELD_HEARING_DATE = "hearingDate"; private static final String FIELD_ROOM_ID = "roomId"; private static final String FIELD_START_TIME = "startTime"; private static final String FIELD_END_TIME = "endTime"; diff --git a/pom.xml b/pom.xml index 1124a9fc67..3ac0943780 100644 --- a/pom.xml +++ b/pom.xml @@ -28,9 +28,9 @@ 17.103.11 17.0.120 17.0.57 - 17.0.57 + 17.0.58 17.0.1 - 17.0.64 + 17.103.73 17.0.215 2.2.11 2.6.3 From df19e1be8ab66da86ddb32cabdf6d4a7bdd5673b Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Tue, 10 Feb 2026 16:25:06 +0000 Subject: [PATCH 04/50] updating poms for 17.0.144 branch with snapshot versions From 1c7b5ba5a0ac646d88d3e34e5cb5fbe5e226dbc7 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Tue, 10 Feb 2026 16:25:10 +0000 Subject: [PATCH 05/50] updating poms for 17.0.145-SNAPSHOT development --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index eded3145bd..07b7f4d4af 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 946d9e96ed..000fe13b6d 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 79c0ab8387..e31a69083a 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index f60349d09f..24394533d9 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index c16ef0b53a..23cbb5f990 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 14186a7cfb..ef08d51a43 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index f28c872f6d..bb31a083e7 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 1a10e4dd94..0ae99a8ef9 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 253af32552..2a6360c90e 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 67928e1538..fd76adf288 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index bc7739160b..520228311d 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 108d3e42f0..006a71b5f0 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 473027b56d..a1d51e9ed0 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index ffde007178..6231e31909 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 5c18ae3e96..e3a5caddef 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 7529e7811f..60a9b9de5b 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 8a61119b22..a9deb45a57 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index 794c648457..f11ef93613 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 573c247af4..a6f5ac7f67 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index b8466b620a..3c16aa2d9e 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index b45ea3f4db..fbfc60da76 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 49760d3684..8a339908ec 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index b855e06edd..bdf7cae605 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 6154de1033..15e2d7158d 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 3ac0943780..ed103b6dae 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index a94a3c93c7..4c576a6626 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.145-SNAPSHOT From c76076336559651866245d7d8e18c71436b05d60 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Tue, 10 Feb 2026 17:07:51 +0000 Subject: [PATCH 06/50] updating poms for branch'dev/release-17.0.144' with non-snapshot versions --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index eded3145bd..70b9550d7f 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.144-SNAPSHOT + 17.0.144 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 946d9e96ed..5f4c6210f6 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.144-SNAPSHOT + 17.0.144 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 79c0ab8387..6fd346a655 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.144 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index f60349d09f..243472315c 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144-SNAPSHOT + 17.0.144 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index c16ef0b53a..d99c259126 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144-SNAPSHOT + 17.0.144 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 14186a7cfb..dfb5fa64ea 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144-SNAPSHOT + 17.0.144 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index f28c872f6d..3588740393 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144-SNAPSHOT + 17.0.144 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 1a10e4dd94..3329d06da7 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144-SNAPSHOT + 17.0.144 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 253af32552..7dc9acc94a 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.144 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 67928e1538..aee944a92f 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144-SNAPSHOT + 17.0.144 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index bc7739160b..0cbd3e088f 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.144-SNAPSHOT + 17.0.144 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 108d3e42f0..37e450b8d4 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.144-SNAPSHOT + 17.0.144 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 473027b56d..9e74225c77 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.144 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index ffde007178..4a29ad33ff 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144-SNAPSHOT + 17.0.144 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 5c18ae3e96..bafc566db9 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.144 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 7529e7811f..3dc987c3c8 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144-SNAPSHOT + 17.0.144 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 8a61119b22..ba38388304 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.144-SNAPSHOT + 17.0.144 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index 794c648457..383810c791 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.144-SNAPSHOT + 17.0.144 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 573c247af4..54de6dd2a6 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.144 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index b8466b620a..a9f8722fd1 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.144 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index b45ea3f4db..81179a9020 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.144-SNAPSHOT + 17.0.144 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 49760d3684..46b0497ef1 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.144-SNAPSHOT + 17.0.144 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index b855e06edd..f648cb13e7 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.144 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 6154de1033..73764d6f88 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.144 pojo-plugin diff --git a/pom.xml b/pom.xml index 3ac0943780..a9ca569ab6 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.144 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index a94a3c93c7..6e05b80d8d 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144-SNAPSHOT + 17.0.144 From fc0d5db884d8d07e1914c231d3389e5deae703f9 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Tue, 10 Feb 2026 17:08:16 +0000 Subject: [PATCH 07/50] updating develop poms to master versions to avoid merge conflicts --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 07b7f4d4af..70b9550d7f 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.145-SNAPSHOT + 17.0.144 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 000fe13b6d..5f4c6210f6 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.145-SNAPSHOT + 17.0.144 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index e31a69083a..6fd346a655 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.144 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 24394533d9..243472315c 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.144 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index 23cbb5f990..d99c259126 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.144 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index ef08d51a43..dfb5fa64ea 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.144 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index bb31a083e7..3588740393 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.144 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 0ae99a8ef9..3329d06da7 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.144 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 2a6360c90e..7dc9acc94a 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.144 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index fd76adf288..aee944a92f 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.144 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 520228311d..0cbd3e088f 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.145-SNAPSHOT + 17.0.144 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 006a71b5f0..37e450b8d4 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.144 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index a1d51e9ed0..9e74225c77 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.144 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 6231e31909..4a29ad33ff 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.144 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index e3a5caddef..bafc566db9 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.144 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 60a9b9de5b..3dc987c3c8 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.144 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index a9deb45a57..ba38388304 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.145-SNAPSHOT + 17.0.144 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index f11ef93613..383810c791 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.145-SNAPSHOT + 17.0.144 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index a6f5ac7f67..54de6dd2a6 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.144 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 3c16aa2d9e..a9f8722fd1 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.144 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index fbfc60da76..81179a9020 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.145-SNAPSHOT + 17.0.144 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 8a339908ec..46b0497ef1 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.145-SNAPSHOT + 17.0.144 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index bdf7cae605..f648cb13e7 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.144 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 15e2d7158d..73764d6f88 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.144 pojo-plugin diff --git a/pom.xml b/pom.xml index ed103b6dae..a9ca569ab6 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.144 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 4c576a6626..6e05b80d8d 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.144 From 8d9da7a1df8338e9bb078a92be944e46f29833a0 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Tue, 10 Feb 2026 17:08:21 +0000 Subject: [PATCH 08/50] Updating develop poms back to pre merge state --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 70b9550d7f..07b7f4d4af 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.144 + 17.0.145-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 5f4c6210f6..000fe13b6d 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.144 + 17.0.145-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 6fd346a655..e31a69083a 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144 + 17.0.145-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 243472315c..24394533d9 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144 + 17.0.145-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index d99c259126..23cbb5f990 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144 + 17.0.145-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index dfb5fa64ea..ef08d51a43 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144 + 17.0.145-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 3588740393..bb31a083e7 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144 + 17.0.145-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 3329d06da7..0ae99a8ef9 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.144 + 17.0.145-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 7dc9acc94a..2a6360c90e 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144 + 17.0.145-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index aee944a92f..fd76adf288 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144 + 17.0.145-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 0cbd3e088f..520228311d 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.144 + 17.0.145-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 37e450b8d4..006a71b5f0 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.144 + 17.0.145-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 9e74225c77..a1d51e9ed0 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144 + 17.0.145-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 4a29ad33ff..6231e31909 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144 + 17.0.145-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index bafc566db9..e3a5caddef 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144 + 17.0.145-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 3dc987c3c8..60a9b9de5b 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.144 + 17.0.145-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index ba38388304..a9deb45a57 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.144 + 17.0.145-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index 383810c791..f11ef93613 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.144 + 17.0.145-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 54de6dd2a6..a6f5ac7f67 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144 + 17.0.145-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index a9f8722fd1..3c16aa2d9e 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144 + 17.0.145-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 81179a9020..fbfc60da76 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.144 + 17.0.145-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 46b0497ef1..8a339908ec 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.144 + 17.0.145-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index f648cb13e7..bdf7cae605 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144 + 17.0.145-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 73764d6f88..15e2d7158d 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144 + 17.0.145-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index a9ca569ab6..ed103b6dae 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144 + 17.0.145-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 6e05b80d8d..4c576a6626 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.144 + 17.0.145-SNAPSHOT From 173ef623ee390bd8ed6a88c8b468c77690f1d681 Mon Sep 17 00:00:00 2001 From: rsukka <146491415+rsukka@users.noreply.github.com> Date: Thu, 19 Feb 2026 10:41:47 +0000 Subject: [PATCH 09/50] DD-41695: added payload validation checks on outstanding fines event (#37) * Added DD-41695 team branch * DD-41695: added payload validation checks on outstanding fines event (#35) * New 17.0.146-dd-41695-SNAPSHOT * DD-41695: updated hearing.query.outstanding-fines event (#36) * New 17.0.147-dd-41695-SNAPSHOT * DD41695: merge to master --------- Co-authored-by: devops-team --- .../hearing/query/api/HearingQueryApi.java | 10 +- .../HearingOutstandingFinesQueryApiTest.java | 121 ++++++++++++++++++ pom.xml | 2 +- 3 files changed, 131 insertions(+), 2 deletions(-) create mode 100644 hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/HearingOutstandingFinesQueryApiTest.java diff --git a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java index d958ea206f..3968a796ec 100644 --- a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java +++ b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java @@ -436,10 +436,18 @@ public JsonEnvelope getHearingOutstandingFines(final JsonEnvelope queryEnvelope) .build()); final JsonEnvelope envelope = this.hearingQueryView.getDefendantInfoFromCourtHouseId(envelopeWithReStructuredPayload); + final JsonObject defendantInfoPayload = envelope.payloadAsJsonObject(); + + if (defendantInfoPayload.isEmpty()) { + LOGGER.info("hearing.defendant.info response information is empty"); + return envelopeFrom(queryEnvelope.metadata(), createObjectBuilder() + .add("courtRooms", createArrayBuilder()) + .build()); + } final JsonEnvelope jsonEnvelope = envelopeFrom( metadataFrom(queryEnvelope.metadata()).withName("stagingenforcement.query.court-rooms-outstanding-fines"), - envelope.payload()); + defendantInfoPayload); final Envelope outStandingFinesEnvelope = requester.requestAsAdmin(jsonEnvelope, JsonObject.class); diff --git a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/HearingOutstandingFinesQueryApiTest.java b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/HearingOutstandingFinesQueryApiTest.java new file mode 100644 index 0000000000..a2aac08453 --- /dev/null +++ b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/HearingOutstandingFinesQueryApiTest.java @@ -0,0 +1,121 @@ +package uk.gov.moj.cpp.hearing.query.api; + +import static java.util.Collections.singletonList; +import static javax.json.Json.createObjectBuilder; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.is; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.never; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; +import static uk.gov.justice.services.test.utils.core.enveloper.EnvelopeFactory.createEnvelope; + +import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; +import uk.gov.justice.services.core.requester.Requester; +import uk.gov.justice.services.messaging.Envelope; +import uk.gov.justice.services.messaging.JsonEnvelope; +import uk.gov.moj.cpp.hearing.domain.OutstandingFinesQuery; +import uk.gov.moj.cpp.hearing.query.view.HearingQueryView; + +import java.time.LocalDate; +import java.util.UUID; + +import javax.json.Json; +import javax.json.JsonObject; + +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.junit.jupiter.MockitoExtension; + + +@ExtendWith(MockitoExtension.class) +public class HearingOutstandingFinesQueryApiTest { + + private static final UUID COURT_CENTRE_ID = UUID.randomUUID(); + private static final UUID COURT_ROOM_ID = UUID.randomUUID(); + private static final LocalDate HEARING_DATE = LocalDate.now(); + + @Mock + private Requester requester; + + @Mock + private HearingQueryView hearingQueryView; + + @Mock + private JsonObjectToObjectConverter jsonObjectToObjectConverter; + + @InjectMocks + private HearingQueryApi hearingQueryApi; + + @Test + public void should_return_empty_payload_and_not_call_staging_enforcement_when_defendant_info_is_empty() { + final JsonEnvelope queryEnvelope = createQueryEnvelope(); + final OutstandingFinesQuery outstandingFinesQuery = OutstandingFinesQuery.newBuilder() + .withCourtCentreId(COURT_CENTRE_ID) + .withCourtRoomIds(singletonList(COURT_ROOM_ID)) + .withHearingDate(HEARING_DATE) + .build(); + + when(jsonObjectToObjectConverter.convert(any(JsonObject.class), eq(OutstandingFinesQuery.class))) + .thenReturn(outstandingFinesQuery); + + final JsonEnvelope emptyDefendantInfoEnvelope = createEnvelope("hearing.defendant.info", + Json.createObjectBuilder().build()); + when(hearingQueryView.getDefendantInfoFromCourtHouseId(any(JsonEnvelope.class))) + .thenReturn(emptyDefendantInfoEnvelope); + + final JsonEnvelope result = hearingQueryApi.getHearingOutstandingFines(queryEnvelope); + + verify(requester, never()).requestAsAdmin(any(), eq(JsonObject.class)); + assertThat(result.payloadAsJsonObject().getJsonArray("courtRooms").isEmpty(), is(true)); + } + + @Test + public void should_call_staging_enforcement_and_return_result_when_defendant_info_is_not_empty() { + final JsonEnvelope queryEnvelope = createQueryEnvelope(); + final OutstandingFinesQuery outstandingFinesQuery = OutstandingFinesQuery.newBuilder() + .withCourtCentreId(COURT_CENTRE_ID) + .withCourtRoomIds(singletonList(COURT_ROOM_ID)) + .withHearingDate(HEARING_DATE) + .build(); + + when(jsonObjectToObjectConverter.convert(any(JsonObject.class), eq(OutstandingFinesQuery.class))) + .thenReturn(outstandingFinesQuery); + + final JsonObject defendantInfoPayload = createObjectBuilder() + .add("courtCentreId", COURT_CENTRE_ID.toString()) + .add("courtRoomIds", COURT_ROOM_ID.toString()) + .add("hearingDate", HEARING_DATE.toString()) + .build(); + final JsonEnvelope defendantInfoEnvelope = createEnvelope("hearing.defendant.info", defendantInfoPayload); + when(hearingQueryView.getDefendantInfoFromCourtHouseId(any(JsonEnvelope.class))) + .thenReturn(defendantInfoEnvelope); + + final JsonObject stagingEnforcementResponse = createObjectBuilder() + .add("courtRooms", Json.createArrayBuilder().build()) + .build(); + @SuppressWarnings("unchecked") + final Envelope stagingEnvelope = (Envelope) (Envelope) Envelope.envelopeFrom( + defendantInfoEnvelope.metadata(), stagingEnforcementResponse); + when(requester.requestAsAdmin(any(JsonEnvelope.class), eq(JsonObject.class))) + .thenReturn(stagingEnvelope); + + final JsonEnvelope result = hearingQueryApi.getHearingOutstandingFines(queryEnvelope); + + verify(requester, times(1)).requestAsAdmin(any(JsonEnvelope.class), eq(JsonObject.class)); + assertThat(result.payloadAsJsonObject(), is(stagingEnforcementResponse)); + } + + private static JsonEnvelope createQueryEnvelope() { + final JsonObject queryPayload = createObjectBuilder() + .add("courtCentreId", COURT_CENTRE_ID.toString()) + .add("courtRoomIds", Json.createArrayBuilder().add(COURT_ROOM_ID.toString())) + .add("hearingDate", HEARING_DATE.toString()) + .build(); + return createEnvelope("hearing.query.outstanding-fines", queryPayload); + } +} diff --git a/pom.xml b/pom.xml index ed103b6dae..fc206fc448 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ 1.3.3 0.1.96 17.103.11 - 17.0.120 + 17.103.124 17.0.57 17.0.58 17.0.1 From d267da35feca72b91ee0a85f7ba3025d4a4dea61 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 19 Feb 2026 10:45:37 +0000 Subject: [PATCH 10/50] updating poms for 17.0.145 branch with snapshot versions From 2731de75c1e7a774b0e18c5f345cbce47c3c3f29 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 19 Feb 2026 10:45:40 +0000 Subject: [PATCH 11/50] updating poms for 17.0.146-SNAPSHOT development --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 07b7f4d4af..77f5ff1a4e 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 000fe13b6d..f56368f449 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index e31a69083a..0b2cf6e004 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 24394533d9..5f597d3d2b 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index 23cbb5f990..bdb1f42829 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index ef08d51a43..ebbd307481 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index bb31a083e7..26053c7726 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 0ae99a8ef9..c34022eeb3 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 2a6360c90e..f33a5222b2 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index fd76adf288..3a0744cd17 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 520228311d..1cb678a588 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 006a71b5f0..0ee9a3cc43 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index a1d51e9ed0..5d9950028e 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 6231e31909..6bcfe18f27 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index e3a5caddef..c8ec675e6e 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 60a9b9de5b..61f7680736 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index a9deb45a57..db012b2cf1 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index f11ef93613..dc685208c4 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index a6f5ac7f67..635cce25e8 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 3c16aa2d9e..0c8eb5db65 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index fbfc60da76..2a7b0203d1 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 8a339908ec..ef48da7e4b 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index bdf7cae605..b123004d0a 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 15e2d7158d..801f4fb679 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index fc206fc448..aeb0ebcfb4 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 4c576a6626..affd6f513c 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.146-SNAPSHOT From 9da59fdc8c1df5871721a8ff330762c69cec6f2f Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 19 Feb 2026 11:22:57 +0000 Subject: [PATCH 12/50] updating poms for branch'dev/release-17.0.145' with non-snapshot versions --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 07b7f4d4af..09a2f3de89 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.145-SNAPSHOT + 17.0.145 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 000fe13b6d..46d6ed8dc2 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.145-SNAPSHOT + 17.0.145 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index e31a69083a..6c1c010a19 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.145 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 24394533d9..776202027c 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.145 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index 23cbb5f990..06e6a80b08 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.145 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index ef08d51a43..dc19290825 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.145 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index bb31a083e7..8627f168b4 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.145 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 0ae99a8ef9..e4bf415e61 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145-SNAPSHOT + 17.0.145 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 2a6360c90e..f748645ba1 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.145 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index fd76adf288..0817512b6c 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.145 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 520228311d..24b486c808 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.145-SNAPSHOT + 17.0.145 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 006a71b5f0..8f357dd603 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.145 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index a1d51e9ed0..d193c9da57 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.145 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 6231e31909..22d9a2e756 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.145 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index e3a5caddef..aee41eba2b 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.145 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 60a9b9de5b..ce9e9e0036 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145-SNAPSHOT + 17.0.145 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index a9deb45a57..b467b34f92 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.145-SNAPSHOT + 17.0.145 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index f11ef93613..ec6f955b42 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.145-SNAPSHOT + 17.0.145 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index a6f5ac7f67..6ca0bc43b0 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.145 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 3c16aa2d9e..f9d68356f5 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.145 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index fbfc60da76..6d9da28547 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.145-SNAPSHOT + 17.0.145 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 8a339908ec..22559067f3 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.145-SNAPSHOT + 17.0.145 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index bdf7cae605..66cf27dd8e 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.145 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 15e2d7158d..68934fa750 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.145 pojo-plugin diff --git a/pom.xml b/pom.xml index fc206fc448..1ab01b79a6 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.145 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 4c576a6626..f16217df9c 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145-SNAPSHOT + 17.0.145 From 301f3c06a8032dd3bd13905d9040efdd19327d86 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 19 Feb 2026 11:23:13 +0000 Subject: [PATCH 13/50] updating develop poms to master versions to avoid merge conflicts --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 77f5ff1a4e..09a2f3de89 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.146-SNAPSHOT + 17.0.145 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index f56368f449..46d6ed8dc2 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.146-SNAPSHOT + 17.0.145 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 0b2cf6e004..6c1c010a19 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.145 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 5f597d3d2b..776202027c 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.145 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index bdb1f42829..06e6a80b08 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.145 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index ebbd307481..dc19290825 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.145 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 26053c7726..8627f168b4 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.145 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index c34022eeb3..e4bf415e61 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.145 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index f33a5222b2..f748645ba1 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.145 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 3a0744cd17..0817512b6c 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.145 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 1cb678a588..24b486c808 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.146-SNAPSHOT + 17.0.145 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 0ee9a3cc43..8f357dd603 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.145 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 5d9950028e..d193c9da57 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.145 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 6bcfe18f27..22d9a2e756 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.145 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index c8ec675e6e..aee41eba2b 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.145 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 61f7680736..ce9e9e0036 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.145 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index db012b2cf1..b467b34f92 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.146-SNAPSHOT + 17.0.145 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index dc685208c4..ec6f955b42 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.146-SNAPSHOT + 17.0.145 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 635cce25e8..6ca0bc43b0 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.145 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 0c8eb5db65..f9d68356f5 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.145 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 2a7b0203d1..6d9da28547 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.146-SNAPSHOT + 17.0.145 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index ef48da7e4b..22559067f3 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.146-SNAPSHOT + 17.0.145 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index b123004d0a..66cf27dd8e 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.145 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 801f4fb679..68934fa750 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.145 pojo-plugin diff --git a/pom.xml b/pom.xml index aeb0ebcfb4..1ab01b79a6 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.145 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index affd6f513c..f16217df9c 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.145 From e29686db7dcceb54dc23043a3f4206e8f514cd06 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 19 Feb 2026 11:23:17 +0000 Subject: [PATCH 14/50] Updating develop poms back to pre merge state --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 09a2f3de89..77f5ff1a4e 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.145 + 17.0.146-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 46d6ed8dc2..f56368f449 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.145 + 17.0.146-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 6c1c010a19..0b2cf6e004 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145 + 17.0.146-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 776202027c..5f597d3d2b 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145 + 17.0.146-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index 06e6a80b08..bdb1f42829 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145 + 17.0.146-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index dc19290825..ebbd307481 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145 + 17.0.146-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 8627f168b4..26053c7726 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145 + 17.0.146-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index e4bf415e61..c34022eeb3 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.145 + 17.0.146-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index f748645ba1..f33a5222b2 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145 + 17.0.146-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 0817512b6c..3a0744cd17 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145 + 17.0.146-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 24b486c808..1cb678a588 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.145 + 17.0.146-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 8f357dd603..0ee9a3cc43 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.145 + 17.0.146-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index d193c9da57..5d9950028e 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145 + 17.0.146-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 22d9a2e756..6bcfe18f27 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145 + 17.0.146-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index aee41eba2b..c8ec675e6e 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145 + 17.0.146-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index ce9e9e0036..61f7680736 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.145 + 17.0.146-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index b467b34f92..db012b2cf1 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.145 + 17.0.146-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index ec6f955b42..dc685208c4 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.145 + 17.0.146-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 6ca0bc43b0..635cce25e8 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145 + 17.0.146-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index f9d68356f5..0c8eb5db65 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145 + 17.0.146-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 6d9da28547..2a7b0203d1 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.145 + 17.0.146-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 22559067f3..ef48da7e4b 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.145 + 17.0.146-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 66cf27dd8e..b123004d0a 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145 + 17.0.146-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 68934fa750..801f4fb679 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145 + 17.0.146-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 1ab01b79a6..aeb0ebcfb4 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145 + 17.0.146-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index f16217df9c..affd6f513c 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.145 + 17.0.146-SNAPSHOT From 291d0847a72f4d6ba10ba3c8c2d97b86cf27be78 Mon Sep 17 00:00:00 2001 From: yilmazsaritemur2 <150049030+yilmazsaritemur2@users.noreply.github.com> Date: Wed, 25 Feb 2026 10:03:17 +0000 Subject: [PATCH 15/50] Revert "CCT-2357 code merge (#30)" (#41) * Revert "CCT-2357 code merge (#30)" This reverts commit bac14b02 * fix build * update ref data --- .../gitleaks-custom-rules-template.toml | 32 +- .../ShareResultsCommandHandlerTest.java | 2 +- .../ShareResultsCommandHandlerV2Test.java | 2 +- .../resultdefinition/ResultDefinition.java | 10 - .../event/result/PublicHearingResultedV2.java | 1 - .../event/PublishResultsV3EventProcessor.java | 18 +- .../delegates/PublishResultsDelegateV3.java | 63 +- .../DeletedJudicialResultTransformer.java | 169 - .../restructure/RestructuringHelperV3.java | 15 +- .../restructure/ResultTreeBuilderV3.java | 19 +- .../PublishResultsV3EventProcessorTest.java | 24 - .../PublishResultsDelegateV3Test.java | 60 - .../DeletedJudicialResultTransformerTest.java | 234 - .../RestructuringHelperV3Test.java | 97 +- .../helper/shared/RestructuringConstants.java | 3 - ...r_linked_app_with_deleted_resultlines.json | 1345 - ...sults-shared_with_deleted_resultlines.json | 741 - ...hared_with_deleted_resultlines_parent.json | 1633 - .../test/resources/result-definitions.json | 116436 +++++++-------- .../moj/cpp/hearing/it/ShareResultsIT.java | 4 +- pom.xml | 2 +- 21 files changed, 50807 insertions(+), 70103 deletions(-) delete mode 100644 hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java delete mode 100644 hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java delete mode 100644 hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json delete mode 100644 hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json delete mode 100644 hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json diff --git a/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml b/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml index 7eb8cbec9f..2d5f39288c 100644 --- a/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml +++ b/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml @@ -15,20 +15,20 @@ description = "Identify banned IDs" regex = '''${GITLEAKS_REGEX_BANNED_IDS}''' tags = ["banned-ids"] -[allowlist] -description = "Global allowlist" -paths = [ - ".idea/.*", - "(.*/)?target/.*", - ".gitreview" -] -regexes = [ - '''(?i).*query\.local-justice.*''', - '''(?i).*referencedata\.query\.local-justice-areas.*''', - '''(?i).*referencedata\.local-authority-address.*''', - '''(?i).*referencedata\.local-justice-area-address.*''', - '''(?i).*referencedata\.query\.local.*''', - '''(?i).*vnd\.referencedata\.query\.local.*''', - '''(?i).*referencedata\.local.*''' -] +[allowlist] +description = "Global allowlist" +paths = [ + ".idea/.*", + "(.*/)?target/.*", + ".gitreview" +] +regexes = [ + '''(?i).*query\.local-justice.*''', + '''(?i).*referencedata\.query\.local-justice-areas.*''', + '''(?i).*referencedata\.local-authority-address.*''', + '''(?i).*referencedata\.local-justice-area-address.*''', + '''(?i).*referencedata\.query\.local.*''', + '''(?i).*vnd\.referencedata\.query\.local.*''', + '''(?i).*referencedata\.local.*''' +] diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerTest.java index 0fb9549409..b4dd2ac208 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerTest.java @@ -164,7 +164,7 @@ private static Defendant convert(final uk.gov.justice.core.courts.Defendant curr final PersonDefendant curPd = currentDefendant.getPersonDefendant(); final Person cpd = curPd.getPersonDetails(); Person person = new Person(cpd.getAdditionalNationalityCode(), cpd.getAdditionalNationalityDescription(), cpd.getAdditionalNationalityId(), cpd.getAddress(), cpd.getContact(), cpd.getDateOfBirth(), - cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(),false, + cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(), cpd.getIsAddressConfidential(), cpd.getLastName(), cpd.getMiddleName(), cpd.getNationalInsuranceNumber(), cpd.getNationalityCode(), cpd.getNationalityDescription(), cpd.getNationalityId(), cpd.getOccupation(), cpd.getOccupationCode(), cpd.getPersonMarkers(), cpd.getSpecificRequirements(), cpd.getTitle()); diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerV2Test.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerV2Test.java index d9b6a53562..055e1d12e3 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerV2Test.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ShareResultsCommandHandlerV2Test.java @@ -230,7 +230,7 @@ private static Defendant convert(final uk.gov.justice.core.courts.Defendant curr final PersonDefendant curPd = currentDefendant.getPersonDefendant(); final Person cpd = curPd.getPersonDetails(); Person person = new Person(cpd.getAdditionalNationalityCode(), cpd.getAdditionalNationalityDescription(), cpd.getAdditionalNationalityId(), cpd.getAddress(), cpd.getContact(), cpd.getDateOfBirth(), - cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(), false, + cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(), cpd.getIsAddressConfidential(), cpd.getLastName(), cpd.getMiddleName(), cpd.getNationalInsuranceNumber(), cpd.getNationalityCode(), cpd.getNationalityDescription(), cpd.getNationalityId(), cpd.getOccupation(), cpd.getOccupationCode(), cpd.getPersonMarkers(), cpd.getSpecificRequirements(), cpd.getTitle()); diff --git a/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java b/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java index 653e64ec06..4cddcf0806 100644 --- a/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java +++ b/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java @@ -106,8 +106,6 @@ public class ResultDefinition { private Boolean canExtendActiveOrder; private Boolean sentToCC; private Boolean committedToCC; - private Boolean isDeemedServed; - public static ResultDefinition resultDefinition() { return new ResultDefinition(); @@ -533,12 +531,4 @@ public ResultDefinition setCommittedToCC(final Boolean committedToCC) { this.committedToCC = committedToCC; return this; } - - public Boolean getIsDeemedServed() { - return isDeemedServed; - } - - public void setIsDeemedServed(final Boolean deemedServed) { - isDeemedServed = deemedServed; - } } diff --git a/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java b/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java index ecf195457f..45fc6b6018 100644 --- a/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java +++ b/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java @@ -67,5 +67,4 @@ public PublicHearingResultedV2 setHearingDay(final LocalDate hearingDay) { this.hearingDay = hearingDay; return this; } - } diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java index 0ed51902c4..fdad7bc47c 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java @@ -14,6 +14,10 @@ import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.Constants.RESULT_DEFINITION_NOT_FOUND_EXCEPTION_FORMAT; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.TypeUtils.getBooleanValue; +import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; +import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; import uk.gov.justice.core.courts.Address; import uk.gov.justice.core.courts.ContactNumber; @@ -418,14 +422,16 @@ private List> getTreeNodes(final JsonEnvelope context .collect(toList()); for (final ResultLine2 resultLine : allResultLines) { - final TreeNode resultDefinitionNode = referenceDataService.getResultDefinitionTreeNodeById(context, resultLine.getOrderedDate(), resultLine.getResultDefinitionId()); + if (Boolean.FALSE.equals(getBooleanValue(resultLine.getIsDeleted(), false))) { + final TreeNode resultDefinitionNode = referenceDataService.getResultDefinitionTreeNodeById(context, resultLine.getOrderedDate(), resultLine.getResultDefinitionId()); - if (isNull(resultDefinitionNode)) { - throw new ResultDefinitionNotFoundException(format(RESULT_DEFINITION_NOT_FOUND_EXCEPTION_FORMAT, - resultLine.getResultLineId(), resultLine.getResultDefinitionId(), resultsSharedV3.getHearingId(), resultLine.getOrderedDate())); - } + if (isNull(resultDefinitionNode)) { + throw new ResultDefinitionNotFoundException(format(RESULT_DEFINITION_NOT_FOUND_EXCEPTION_FORMAT, + resultLine.getResultLineId(), resultLine.getResultDefinitionId(), resultsSharedV3.getHearingId(), resultLine.getOrderedDate())); + } - treeNodes.add(resultDefinitionNode); + treeNodes.add(resultDefinitionNode); + } } return treeNodes; } diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java index aeb4bd7f86..2622583ceb 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java @@ -18,7 +18,6 @@ import static uk.gov.justice.core.courts.Level.OFFENCE; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; -import static uk.gov.moj.cpp.hearing.event.delegates.helper.DeletedJudicialResultTransformer.toDeletedResults; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.CategoryEnumUtils.getCategory; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.TypeUtils.getBooleanValue; import static uk.gov.moj.cpp.hearing.event.helper.HearingHelper.getOffencesFromHearing; @@ -27,8 +26,10 @@ import uk.gov.justice.core.courts.CourtApplication; import uk.gov.justice.core.courts.DefendantJudicialResult; +import uk.gov.justice.core.courts.Hearing; import uk.gov.justice.core.courts.JudicialResult; import uk.gov.justice.core.courts.JudicialResultCategory; +import uk.gov.justice.core.courts.JudicialResultPrompt; import uk.gov.justice.core.courts.Offence; import uk.gov.justice.core.courts.Prompt; import uk.gov.justice.core.courts.ProsecutionCase; @@ -78,6 +79,13 @@ public class PublishResultsDelegateV3 { private static final Logger LOGGER = LoggerFactory.getLogger(PublishResultsDelegateV3.class.getName()); private static final String DDCH = "DDCH"; private static final String PRESS_ON = "PressOn"; + public static final String FIRST_HEARING_JUDICIAL_RESULT_TYPE_ID = "b3ed14c1-d921-459c-90fd-400a5d8d0076"; + public static final String CUSTODIAL_PERIOD_JUDICIAL_RESULT_TYPE_ID = "b65fb5f1-b11d-4a95-a198-3b81333c7cf9"; + public static final String SUSPENDED_SENTENCE_ORDER = "a78b50cc-0777-403d-8e51-5458e1ee3513, 8b1cff00-a456-40da-9ce4-f11c20959084"; + public static final String DRUG_REHABILITATION_RESIDENTIAL_WITH_REVIEW = "61ea03c9-c113-446b-a392-402144fcd9e8"; + public static final String DRUG_REHABILITATION_NON_RESIDENTIAL_WITH_REVIEW = "cc2cbb94-b75a-4a8c-9840-31c5f8007724"; + public static final String COMMUNITY_REQUIREMENT = "b2dab2b7-3edd-4223-b1be-3819173ec54d"; + public static final String COMMUNITY_ORDER = "418b3aa7-65ab-4a4a-bab9-2f96b698118c"; private final Enveloper enveloper; @@ -148,7 +156,6 @@ public void shareResults(final JsonEnvelope context, final Sender sender, final mapDefendantLevelDDCHJudicialResults(resultsShared, relistReferenceDataService.getResults(context, DDCH), orderedDate); } - final PublicHearingResultedV2 hearingResulted = PublicHearingResultedV2.publicHearingResultedV2() .setIsReshare(resultsShared.getIsReshare()) .setHearing(resultsShared.getHearing()) @@ -156,11 +163,6 @@ public void shareResults(final JsonEnvelope context, final Sender sender, final .setHearingDay(resultsShared.getHearingDay()) .setShadowListedOffences(getOffenceShadowListedForMagistratesNextHearing(resultsShared)); - final List> restructuredDeletedResults = this.restructuringHelper.getDeletedResults(context, resultsShared, treeNodes); - if (isNotEmpty(restructuredDeletedResults)) { - hearingResulted.getHearing().setDeletedJudicialResults(toDeletedResults(restructuredDeletedResults, resultsShared.getHearing())); - } - final JsonObject jsonObject = this.objectToJsonObjectConverter.convert(hearingResulted); final JsonEnvelope jsonEnvelope = envelopeFrom(metadataFrom(context.metadata()).withName("public.events.hearing.hearing-resulted"), jsonObject); if (LOGGER.isDebugEnabled()) { @@ -170,6 +172,53 @@ public void shareResults(final JsonEnvelope context, final Sender sender, final } + + private List getOffenceLevelJudicialResults(final Hearing hearing) { + return hearing.getProsecutionCases().stream() + .flatMap(prosecutionCase -> prosecutionCase.getDefendants().stream()) + .flatMap(defendant -> ofNullable(defendant.getOffences()).map(Collection::stream).orElseGet(Stream::empty)) + .filter(offence -> offence.getJudicialResults() != null) + .flatMap(offence -> ofNullable(offence.getJudicialResults()).map(Collection::stream).orElseGet(Stream::empty)).collect(toList()); + } + + + private String getResultValueFromPrompt(Hearing hearing, JudicialResult judicialResult, String promptRef) { + final Optional promptFromJudicialResult = judicialResult.getJudicialResultPrompts().stream().filter(jrPrompt -> promptRef.equals(jrPrompt.getPromptReference()) || jrPrompt.getLabel().equals(promptRef)).findFirst(); + if (promptFromJudicialResult.isPresent()) { + return promptFromJudicialResult.get().getValue(); + } else { + final JudicialResult parentJudicialResult = getRootParentResult(hearing.getProsecutionCases(), judicialResult); + if (parentJudicialResult != null) { + final Optional judicialResultPrompt = parentJudicialResult.getJudicialResultPrompts().stream().filter(jrPrompt -> promptRef.equals(jrPrompt.getPromptReference()) || jrPrompt.getLabel().equals(promptRef)).findFirst(); + if (judicialResultPrompt.isPresent()) { + return judicialResultPrompt.get().getValue(); + } else if (!parentJudicialResult.getJudicialResultId().equals(parentJudicialResult.getRootJudicialResultId())) { + getResultValueFromPrompt(hearing, parentJudicialResult, promptRef); + } + } + } + + return null; + } + + private JudicialResult getRootParentResult(List prosecutionCases, JudicialResult judicialResult) { + if (judicialResult == null) { + return null; + } else { + if (judicialResult.getJudicialResultId().equals(judicialResult.getRootJudicialResultId())) { + return judicialResult; + } + + final Optional judicialResultOptional = prosecutionCases.stream() + .flatMap(prosecutionCase -> prosecutionCase.getDefendants().stream()) + .flatMap(defendant -> ofNullable(defendant.getOffences()).map(Collection::stream).orElseGet(Stream::empty)) + .filter(offence -> offence.getJudicialResults() != null) + .flatMap(offence -> ofNullable(offence.getJudicialResults()).map(Collection::stream).orElseGet(Stream::empty)) + .filter(judicialResult1 -> judicialResult1.getJudicialResultId().equals(judicialResult.getRootJudicialResultId())).findFirst(); + return judicialResultOptional.orElse(null); + } + } + private List getOffenceShadowListedForMagistratesNextHearing(final ResultsSharedV3 resultsShared) { if (isNotEmpty(resultsShared.getHearing().getProsecutionCases()) && resultsShared.getHearing().getProsecutionCases().stream().flatMap(x -> x.getDefendants().stream()) .flatMap(def -> def.getOffences() != null ? def.getOffences().stream() : Stream.empty()) diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java deleted file mode 100644 index 957e4c6118..0000000000 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java +++ /dev/null @@ -1,169 +0,0 @@ -package uk.gov.moj.cpp.hearing.event.delegates.helper; - -import static java.util.Objects.isNull; -import static java.util.Objects.nonNull; -import static org.apache.commons.collections.CollectionUtils.isNotEmpty; - -import uk.gov.justice.core.courts.ApplicationCaseResults; -import uk.gov.justice.core.courts.ApplicationCourtOrderResults; -import uk.gov.justice.core.courts.ApplicationResults; -import uk.gov.justice.core.courts.CourtApplication; -import uk.gov.justice.core.courts.DeletedJudicialResults; -import uk.gov.justice.core.courts.Hearing; -import uk.gov.justice.core.courts.ProsecutionCase; -import uk.gov.justice.core.courts.ProsecutionCaseResults; -import uk.gov.justice.core.courts.ResultLine2; -import uk.gov.moj.cpp.hearing.event.helper.TreeNode; - -import java.util.List; -import java.util.Optional; -import java.util.UUID; - -public class DeletedJudicialResultTransformer { - - public static DeletedJudicialResults toDeletedResults(final List> restructuredDeletedResults, final Hearing hearing) { - - final List prosecutionCaseResults = getProsecutionCaseResults(restructuredDeletedResults, hearing.getProsecutionCases()); - final List applicationResults = getApplicationResults(restructuredDeletedResults, hearing.getCourtApplications()); - final List applicationCaseResults = getApplicationCaseResults(restructuredDeletedResults, hearing.getCourtApplications()); - final List applicationCourtOrderResults = getApplicationCourtOrderResults(restructuredDeletedResults, hearing.getCourtApplications()); - - return DeletedJudicialResults.deletedJudicialResults() - .withProsecutionCaseResults(isNotEmpty(prosecutionCaseResults) ? prosecutionCaseResults : null) - .withApplicationResults(isNotEmpty(applicationResults) ? applicationResults : null) - .withApplicationCaseResults(isNotEmpty(applicationCaseResults) ? applicationCaseResults : null) - .withApplicationCourtOrderResults(isNotEmpty(applicationCourtOrderResults) ? applicationCourtOrderResults : null) - .build(); - } - - private static List getApplicationCourtOrderResults(final List> restructuredDeletedResults, final List courtApplications) { - - return restructuredDeletedResults.stream() - .filter(node -> nonNull(node.getJudicialResult())) - .filter(node -> node.getJudicialResult().getIsNewAmendment()) - .filter(node -> nonNull(node.getOffenceId()) && nonNull(node.getApplicationId())) - .filter(node -> isCourtOrderResult(node, courtApplications)) - .map(node -> ApplicationCourtOrderResults.applicationCourtOrderResults() - .withDefendantId(getDefendantId(node.getDefendantId(), node.getApplicationId(), courtApplications)) - .withApplicationId(node.getApplicationId()) - .withOffenceId(node.getOffenceId()) - .withJudicialResult(node.getJudicialResult()) - .build()) - .toList(); - } - - private static List getApplicationCaseResults(final List> restructuredDeletedResults, final List courtApplications) { - return restructuredDeletedResults.stream() - .filter(node -> nonNull(node.getJudicialResult())) - .filter(node -> node.getJudicialResult().getIsNewAmendment()) - .filter(node -> nonNull(node.getOffenceId()) && nonNull(node.getApplicationId())) - .filter(node -> isApplicationCaseResult(node, courtApplications)) - .map(node -> ApplicationCaseResults.applicationCaseResults() - .withDefendantId(getDefendantId(node.getDefendantId(), node.getApplicationId(), courtApplications)) - .withApplicationId(node.getApplicationId()) - .withOffenceId(node.getOffenceId()) - .withJudicialResult(node.getJudicialResult()) - .build()) - .toList(); - } - - private static List getApplicationResults(final List> restructuredDeletedResults, final List courtApplications) { - return restructuredDeletedResults.stream() - .filter(node -> nonNull(node.getJudicialResult())) - .filter(node -> node.getJudicialResult().getIsNewAmendment()) - .filter(node -> isNull(node.getOffenceId())) - .filter(node -> isApplicationResult(node, courtApplications)) - .map(node -> ApplicationResults.applicationResults() - .withDefendantId(getDefendantId(node.getDefendantId(), node.getApplicationId(), courtApplications)) - .withApplicationId(node.getApplicationId()) - .withJudicialResult(node.getJudicialResult()) - .build()) - .toList(); - } - - private static List getProsecutionCaseResults(final List> restructuredDeletedResults, final List prosecutionCases) { - return restructuredDeletedResults.stream() - .filter(node -> nonNull(node.getJudicialResult())) - .filter(node -> node.getJudicialResult().getIsNewAmendment()) - .filter(node -> isNull(node.getApplicationId())) - .map(node -> ProsecutionCaseResults.prosecutionCaseResults() - .withDefendantId(node.getDefendantId()) - .withOffenceId(node.getOffenceId()) - .withJudicialResult(node.getJudicialResult()) - .build()) - .toList(); - } - - private static UUID getDefendantId(final UUID defendantId, final UUID applicationId, final List courtApplications) { - if (nonNull(defendantId)) { - return defendantId; - } - //liked applications - if (isNotEmpty(courtApplications) && nonNull(applicationId)) { - final Optional defendantOnSubject = fromSubject(applicationId, courtApplications); - if (defendantOnSubject.isPresent()) { - return defendantOnSubject.get(); - } - final Optional defendantOnApplicant = fromApplicant(applicationId, courtApplications); - if (defendantOnApplicant.isPresent()) { - return defendantOnApplicant.get(); - } - final Optional defendantOnRespondents = fromRespondent(applicationId, courtApplications); - if (defendantOnRespondents.isPresent()) { - return defendantOnRespondents.get(); - } - } - return null; - } - - private static Optional fromSubject(final UUID applicationId, final List courtApplications) { - return courtApplications.stream() - .filter(ca -> applicationId.equals(ca.getId())) - .filter(ca -> nonNull(ca.getSubject()) && nonNull(ca.getSubject().getMasterDefendant()) - && isNotEmpty(ca.getSubject().getMasterDefendant().getDefendantCase())) - .map(ca -> ca.getSubject().getMasterDefendant().getDefendantCase().get(0).getDefendantId()) - .findFirst(); - } - - private static Optional fromApplicant(final UUID applicationId, final List courtApplications) { - return courtApplications.stream() - .filter(ca -> applicationId.equals(ca.getId())) - .filter(ca -> nonNull(ca.getApplicant()) && nonNull(ca.getApplicant().getMasterDefendant()) - && isNotEmpty(ca.getApplicant().getMasterDefendant().getDefendantCase())) - .map(ca -> ca.getApplicant().getMasterDefendant().getDefendantCase().get(0).getDefendantId()) - .findFirst(); - } - - private static Optional fromRespondent(final UUID applicationId, final List courtApplications) { - return courtApplications.stream() - .filter(ca -> applicationId.equals(ca.getId())) - .filter(ca -> nonNull(ca.getRespondents())) - .flatMap(ca -> ca.getRespondents().stream()) - .filter(resp -> nonNull(resp.getMasterDefendant()) - && isNotEmpty(resp.getMasterDefendant().getDefendantCase())) - .map(resp -> resp.getMasterDefendant().getDefendantCase().get(0).getDefendantId()) - .findFirst(); - } - - private static boolean isCourtOrderResult(final TreeNode node, final List courtApplications) { - return isNotEmpty(courtApplications) && courtApplications.stream() - .filter(ca -> ca.getId().equals(node.getApplicationId())) - .filter(ca -> nonNull(ca.getCourtOrder()) && isNotEmpty(ca.getCourtOrder().getCourtOrderOffences())) - .flatMap(ca -> ca.getCourtOrder().getCourtOrderOffences().stream()) - .anyMatch(coo -> coo.getOffence().getId().equals(node.getOffenceId())); - } - - private static boolean isApplicationCaseResult(final TreeNode node, final List courtApplications) { - return isNotEmpty(courtApplications) && courtApplications.stream() - .filter(ca -> ca.getId().equals(node.getApplicationId())) - .filter(ca -> isNotEmpty(ca.getCourtApplicationCases())) - .flatMap(ca -> ca.getCourtApplicationCases().stream()) - .flatMap(cac -> cac.getOffences().stream()) - .anyMatch(caco -> caco.getId().equals(node.getOffenceId())); - } - - private static boolean isApplicationResult(final TreeNode node, final List courtApplications) { - return isNotEmpty(courtApplications) && courtApplications.stream() - .anyMatch(ca -> ca.getId().equals(node.getApplicationId())); - } -} diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java index e15904ca9e..c9c962ac3e 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java @@ -19,6 +19,7 @@ import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.RollUpPromptsHelperV3.filterNodesWithRollUpPrompts; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.Constants.EXCLUDED_PROMPT_REFERENCE; + import uk.gov.justice.core.courts.JudicialResultPrompt; import uk.gov.justice.core.courts.ResultLine2; import uk.gov.justice.services.messaging.JsonEnvelope; @@ -46,18 +47,9 @@ public RestructuringHelperV3(final ResultTreeBuilderV3 resultTreeBuilder, final this.resultTextConfHelper = resultTextConfHelper; } - public List> getDeletedResults(final JsonEnvelope context, final ResultsSharedV3 resultsShared, final List> treeNodesResultDefinition) { - final List> treeNodesOrg = resultTreeBuilder.buildDeleted(context, resultsShared, treeNodesResultDefinition); - return updatePublishForNows(treeNodesOrg); - } - public List> restructure(final JsonEnvelope context, final ResultsSharedV3 resultsShared, final List> treeNodesResultDefinition) { final List> treeNodesOrg = resultTreeBuilder.build(context, resultsShared, treeNodesResultDefinition); - return updatePublishForNows(treeNodesOrg); - } - - private List> updatePublishForNows(final List> treeNodesOrg) { final List> publishedForNowsNodes = getNodesWithPublishedForNows(treeNodesOrg); @@ -78,7 +70,7 @@ private List> updatePublishForNows(final List> prepareTreeNodes(final List> treeNodes) { - if (resultTextConfHelper.isOldResultDefinitionV2(treeNodes)) { + if(resultTextConfHelper.isOldResultDefinitionV2(treeNodes)){ updateResultText( removeNonPublishableResults( restructureNextHearing( @@ -115,7 +107,6 @@ private List> prepareTreeNodes(final List> treeNodes) { @@ -138,7 +129,7 @@ private void updateResultText(final List> treeNodeList) { }); } - private List> updateResultTextWithNewLogic(final List> treeNodeList) { + private List> updateResultTextWithNewLogic(final List> treeNodeList) { ResultTextHelperV3.setResultText(treeNodeList, resultTextConfHelper); return treeNodeList; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java index 4989376cdf..79243e4c8c 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java @@ -53,7 +53,6 @@ import java.util.Optional; import java.util.Set; import java.util.UUID; -import java.util.function.Predicate; import java.util.stream.Collectors; import javax.inject.Inject; @@ -64,8 +63,6 @@ public class ResultTreeBuilderV3 { private final NextHearingHelperV3 nextHearingHelper; private final ResultLineHelperV3 resultLineHelper; private ResultTextConfHelper resultTextConfHelper; - private final Predicate resultLinesNotDeletedPredicate = resultLine -> !getBooleanValue(resultLine.getIsDeleted(), false); - private final Predicate resultLinesDeletedPredicate = resultLine -> getBooleanValue(resultLine.getIsDeleted(), false); @Inject @@ -77,13 +74,7 @@ public ResultTreeBuilderV3(final ReferenceDataService referenceDataService, fina } public List> build(final JsonEnvelope envelope, final ResultsSharedV3 resultsShared, final List> resultDefinitionTreeNods ) { - final Map> resultLinesMap = getTreeNodeMap(envelope, resultsShared,resultDefinitionTreeNods, resultLinesNotDeletedPredicate); - final Map> resultLinesMapWithRelations = mapTreeNodeRelations(resultLinesMap); - return new ArrayList<>(orderResult(resultLinesMapWithRelations)); - } - - public List> buildDeleted(final JsonEnvelope envelope, final ResultsSharedV3 resultsShared, final List> resultDefinitionTreeNods ) { - final Map> resultLinesMap = getTreeNodeMap(envelope, resultsShared,resultDefinitionTreeNods, resultLinesDeletedPredicate); + final Map> resultLinesMap = getTreeNodeMap(envelope, resultsShared,resultDefinitionTreeNods); final Map> resultLinesMapWithRelations = mapTreeNodeRelations(resultLinesMap); return new ArrayList<>(orderResult(resultLinesMapWithRelations)); } @@ -105,8 +96,7 @@ private Map> mapTreeNodeRelations(final Map> getTreeNodeMap(final JsonEnvelope context, final ResultsSharedV3 resultsShared, - final List> resultDefinitionNodes, final Predicate resultLinesPredicate) { + private Map> getTreeNodeMap(final JsonEnvelope context, final ResultsSharedV3 resultsShared, final List> resultDefinitionNodes) { final Map> result = new HashMap<>(); final List allResultLines = resultsShared.getTargets().stream() .flatMap(t -> t.getResultLines().stream()) @@ -119,7 +109,7 @@ private Map> getTreeNodeMap(final JsonEnvelope conte final List resultLines = target.getResultLines(); resultLines .stream() - .filter(resultLinesPredicate) + .filter(resultLine -> !getBooleanValue(resultLine.getIsDeleted(), false)) .forEach(resultLine -> { final TreeNode resultDefinitionNode = resultDefinitionNodes.stream() .filter(rdt -> rdt.getData().getId().equals(resultLine.getResultDefinitionId())) @@ -222,8 +212,7 @@ private Builder getJudicialBuilder(final ResultLine2 resultLine, final Hearing h .withPreserveActiveOrder(getBooleanValue(resultDefinition.getPreserveActiveOrder(), false)) .withCanExtendActiveOrder(getBooleanValue(resultDefinition.getCanExtendActiveOrder(), false)) .withCommittedToCC(getBooleanValue(resultDefinition.getCommittedToCC(), false)) - .withSentToCC(getBooleanValue(resultDefinition.getSentToCC(), false)) - .withIsDeemedServed(resultDefinition.getIsDeemedServed()); + .withSentToCC(getBooleanValue(resultDefinition.getSentToCC(), false)); if(resultTextConfHelper.isOldResultDefinition(resultLine.getOrderedDate())) { judicialResult.withResultText(ResultTextHelperV3.getResultText(resultDefinition, resultLine)); } diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java index 17a9f2f127..2406f7acfb 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java @@ -4,15 +4,12 @@ import static org.hamcrest.MatcherAssert.assertThat; 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.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.test.utils.core.messaging.MetadataBuilderFactory.metadataWithRandomUUID; import static uk.gov.moj.cpp.hearing.event.NowsTemplates.resultsSharedV3Template; -import static uk.gov.moj.cpp.hearing.test.CoreTestTemplates.resultLine2; -import uk.gov.justice.core.courts.ResultLine2; import uk.gov.justice.hearing.courts.referencedata.OrganisationalUnit; import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; import uk.gov.justice.services.common.converter.ObjectToJsonObjectConverter; @@ -109,27 +106,6 @@ public void shouldHandleShareResult() { } - @Test - public void shouldHandleShareResultWithDeletedResultLines() { - final ResultsSharedV3 resultsSharedV3 = resultsSharedV3Template(); - final ResultLine2 deletedResultLine = resultLine2(randomUUID()); - deletedResultLine.setIsDeleted(Boolean.TRUE); - resultsSharedV3.getTargets().get(0).getResultLines().add(deletedResultLine); - final TreeNode resultDefinitionTreeNode = new TreeNode<>(randomUUID(), new ResultDefinition()); - - final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.events.results-shared-v3"), objectToJsonObjectConverter.convert(resultsSharedV3)); - - when(referenceDataLoader.getOrganisationUnitById(eq(resultsSharedV3.getHearing().getCourtCentre().getId()))).thenReturn(buildOrganisationalUnit()); - when(newTargetToLegacyTargetConverter.convert(any())).thenReturn((resultsSharedV3.getTargets())); - when(jsonObjectToObjectConverter.convert(event.payloadAsJsonObject(), ResultsSharedV3.class)).thenReturn(resultsSharedV3); - when(referenceDataService.getResultDefinitionTreeNodeById(any(), any(), any())).thenReturn(resultDefinitionTreeNode); - - publishResultsEventProcessor.resultsShared(event); - - verify(referenceDataService, times(2)).getResultDefinitionTreeNodeById(any(), any(), any()); - verify(publishResultsDelegate).shareResults(any(), any(), any(), any()); - } - @Test public void shouldHandleShareResultSuccess() { final UUID hearingId = randomUUID(); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java index 5f3195ac74..b00c3b6914 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java @@ -21,13 +21,11 @@ import uk.gov.justice.core.courts.Defendant; import uk.gov.justice.core.courts.DefendantJudicialResult; -import uk.gov.justice.core.courts.DelegatedPowers; import uk.gov.justice.core.courts.Hearing; import uk.gov.justice.core.courts.JudicialResult; import uk.gov.justice.core.courts.NextHearing; import uk.gov.justice.core.courts.Offence; import uk.gov.justice.core.courts.ResultLine2; -import uk.gov.justice.core.courts.Target2; import uk.gov.justice.hearing.courts.referencedata.CourtCentreOrganisationUnit; import uk.gov.justice.hearing.courts.referencedata.Courtrooms; import uk.gov.justice.services.core.sender.Sender; @@ -48,10 +46,7 @@ import uk.gov.moj.cpp.hearing.test.FileResourceObjectMapper; import java.io.IOException; -import java.time.LocalDate; import java.util.ArrayList; -import java.util.Collections; -import java.util.HashMap; import java.util.List; import java.util.UUID; import java.util.stream.Collectors; @@ -332,61 +327,6 @@ public void shouldUpdateCaseDefendantDrivingLicenseNumber() throws Exception { assertEquals("DVL1234", resultsShared.getHearing().getProsecutionCases().get(0).getDefendants().get(0).getPersonDefendant().getDriverNumber()); } - @Test - public void shouldGetIsDeemedFromResultDefinitionAndAddToResultsSharedV3() throws Exception { - final ResultDefinition resultDefinitionWithDeemedServed = resultDefinitions.stream() - .filter(rd -> rd.getId().toString().equals("de946ddc-ad77-44b1-8480-8bbc251cdcfb")) - .findFirst() - .orElseThrow(() -> new RuntimeException("Result definition with isDeemedServed not found")); - assertTrue(resultDefinitionWithDeemedServed.getIsDeemedServed()); - - final ResultsSharedV3 resultsShared = resultsSharedWithDeemedServed(); - final JsonEnvelope envelope = getEnvelope(resultsShared); - final List> treeNodes = new ArrayList<>(); - TreeNode resultDefinitionTreeNode = new TreeNode(resultDefinitionWithDeemedServed.getId(), resultDefinitions); - resultDefinitionTreeNode.setResultDefinitionId(resultDefinitionWithDeemedServed.getId()); - resultDefinitionTreeNode.setData(resultDefinitionWithDeemedServed); - treeNodes.add(resultDefinitionTreeNode); - final List> resultTree = resultTreeBuilder.build(envelope, resultsShared, treeNodes); - assertTrue(resultTree.stream().anyMatch(node -> - node.getData().getResultDefinitionId().equals(resultDefinitionWithDeemedServed.getId()))); - final TreeNode treeNode = resultTree.get(0); - final JudicialResult judicialResult = treeNode.getJudicialResult(); - assertTrue(judicialResult.getIsDeemedServed()); - } - - private ResultsSharedV3 resultsSharedWithDeemedServed() { - final ResultLine2 resultLine = ResultLine2.resultLine2() - .withResultLineId(UUID.randomUUID()) - .withResultDefinitionId(UUID.fromString("de946ddc-ad77-44b1-8480-8bbc251cdcfb")) - .withOrderedDate(LocalDate.now()) - .withPrompts(new ArrayList<>()) - .build(); - - final Target2 target = Target2.target2() - .withResultLines(Collections.singletonList(resultLine)) - .build(); - - final Hearing hearing = Hearing.hearing() - .withId(UUID.randomUUID()) - .withProsecutionCases(Collections.emptyList()) - .build(); - - final DelegatedPowers courtClerk = DelegatedPowers.delegatedPowers() - .withUserId(UUID.randomUUID()) - .withFirstName("Test") - .withLastName("Clerk") - .build(); - - return ResultsSharedV3.builder() - .withHearing(hearing) - .withCourtClerk(courtClerk) - .withTargets(Collections.singletonList(target)) - .withCompletedResultLinesStatus(new HashMap<>()) - .withNewAmendmentResults(new ArrayList<>()) - .build(); - } - @Test public void shouldUpdateApplicationDefendantDrivingLicenseNumber() throws Exception { final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(HEARING_APPLICATION_RESULTS_SHARED_WITH_DRIVINGLICENCENUMBER_JSON, ResultsSharedV3.class); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java deleted file mode 100644 index cb47dc5e8c..0000000000 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java +++ /dev/null @@ -1,234 +0,0 @@ -package uk.gov.moj.cpp.hearing.event.delegates.helper; - -import static java.lang.Boolean.TRUE; -import static java.util.UUID.randomUUID; -import static org.hamcrest.CoreMatchers.notNullValue; -import static org.hamcrest.CoreMatchers.nullValue; -import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.containsInAnyOrder; -import static org.hamcrest.core.Is.is; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.when; -import static uk.gov.justice.core.courts.CourtApplication.courtApplication; -import static uk.gov.moj.cpp.hearing.event.delegates.helper.DeletedJudicialResultTransformer.toDeletedResults; - -import uk.gov.justice.core.courts.CourtApplicationCase; -import uk.gov.justice.core.courts.CourtOrder; -import uk.gov.justice.core.courts.CourtOrderOffence; -import uk.gov.justice.core.courts.Defendant; -import uk.gov.justice.core.courts.DefendantJudicialResult; -import uk.gov.justice.core.courts.DeletedJudicialResults; -import uk.gov.justice.core.courts.Hearing; -import uk.gov.justice.core.courts.JudicialResult; -import uk.gov.justice.core.courts.Offence; -import uk.gov.justice.core.courts.ProsecutionCase; -import uk.gov.justice.core.courts.ResultLine2; -import uk.gov.moj.cpp.hearing.event.helper.TreeNode; - -import java.util.List; -import java.util.UUID; - -import org.junit.jupiter.api.Test; - -public class DeletedJudicialResultTransformerTest { - - @Test - public void givenDeletedDefendantLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { - final UUID defendantId = randomUUID(); - final UUID resultLineId = randomUUID(); - final TreeNode mockNode = mock(TreeNode.class); - final List> restructuredResults = List.of(mockNode); - - final Hearing hearing = Hearing.hearing().withDefendantJudicialResults(List.of(DefendantJudicialResult.defendantJudicialResult() - .withDefendantId(defendantId).build())).build(); - when(mockNode.getDefendantId()).thenReturn(defendantId); - when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); - - final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); - - assertThat(deletedResults.getProsecutionCaseResults().size(), is(1)); - assertThat(deletedResults.getProsecutionCaseResults().get(0).getDefendantId(), is(defendantId)); - assertThat(deletedResults.getProsecutionCaseResults().get(0).getJudicialResult(), is(notNullValue())); - } - - @Test - public void givenDeletedDefendantLevelJrs_whenTransformedToDeletedJudicialResults_andNoMatchFound_shouldReturnNullProsecutionCaseResults() { - final UUID defendantId = randomUUID(); - final UUID resultLineId = randomUUID(); - final TreeNode mockNode = mock(TreeNode.class); - final List> restructuredResults = List.of(mockNode); - - final Hearing hearing = Hearing.hearing().withDefendantJudicialResults(List.of(DefendantJudicialResult.defendantJudicialResult() - .withDefendantId(defendantId).build())).build(); - when(mockNode.getDefendantId()).thenReturn(randomUUID()); - when(mockNode.getApplicationId()).thenReturn(randomUUID()); - when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); - - final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); - - assertThat(deletedResults.getProsecutionCaseResults(), is(nullValue())); - } - - @Test - public void givenDeletedDefendantCaseLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { - final UUID defendantId = randomUUID(); - final UUID resultLineId = randomUUID(); - final TreeNode mockNode = mock(TreeNode.class); - final List> restructuredResults = List.of(mockNode); - - final Hearing hearing = Hearing.hearing() - .withProsecutionCases(List.of( - ProsecutionCase.prosecutionCase().withDefendants(List.of(Defendant.defendant() - .withId(defendantId) - .build())).build() - )) - .build(); - when(mockNode.getDefendantId()).thenReturn(defendantId); - when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); - - final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); - - assertThat(deletedResults.getProsecutionCaseResults().size(), is(1)); - assertThat(deletedResults.getProsecutionCaseResults().get(0).getDefendantId(), is(defendantId)); - assertThat(deletedResults.getProsecutionCaseResults().get(0).getJudicialResult(), is(notNullValue())); - } - - @Test - public void givenOffenceLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { - final UUID defendantId = randomUUID(); - final UUID resultLineId = randomUUID(); - final UUID offenceId = randomUUID(); - final TreeNode mockNode = mock(TreeNode.class); - final List> restructuredResults = List.of(mockNode); - - final Hearing hearing = Hearing.hearing() - .withProsecutionCases(List.of( - ProsecutionCase.prosecutionCase().withDefendants(List.of(Defendant.defendant() - .withId(defendantId) - .withOffences(List.of(Offence.offence().withId(offenceId) - .build())) - .build())).build() - )) - .build(); - when(mockNode.getDefendantId()).thenReturn(defendantId); - when(mockNode.getOffenceId()).thenReturn(offenceId); - when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); - - final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); - - assertThat(deletedResults.getProsecutionCaseResults().size(), is(1)); - assertThat(deletedResults.getProsecutionCaseResults().get(0).getDefendantId(), is(defendantId)); - assertThat(deletedResults.getProsecutionCaseResults().get(0).getJudicialResult(), is(notNullValue())); - } - - @Test - public void givenMultipleOffenceLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { - final UUID defendantId = randomUUID(); - final UUID resultLineId1 = randomUUID(); - final UUID resultLineId2 = randomUUID(); - final UUID offenceId = randomUUID(); - final TreeNode mockNode = mock(TreeNode.class); - final TreeNode mockNode2 = mock(TreeNode.class); - final List> restructuredResults = List.of(mockNode, mockNode2); - - final Hearing hearing = Hearing.hearing() - .withProsecutionCases(List.of( - ProsecutionCase.prosecutionCase().withDefendants(List.of(Defendant.defendant() - .withId(defendantId) - .withOffences(List.of(Offence.offence().withId(offenceId) - .build())) - .build())).build() - )) - .build(); - when(mockNode.getDefendantId()).thenReturn(defendantId); - when(mockNode.getOffenceId()).thenReturn(offenceId); - when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId1).withIsNewAmendment(TRUE).build()); - - when(mockNode2.getDefendantId()).thenReturn(defendantId); - when(mockNode2.getOffenceId()).thenReturn(offenceId); - when(mockNode2.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId2).withIsNewAmendment(TRUE).build()); - - final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); - - assertThat(deletedResults.getProsecutionCaseResults().size(), is(2)); - assertThat(deletedResults.getProsecutionCaseResults().stream().allMatch(pc -> pc.getDefendantId().equals(defendantId)), is(true)); - assertThat(deletedResults.getProsecutionCaseResults().stream().allMatch(pc -> pc.getOffenceId().equals(offenceId)), is(true)); - assertThat(deletedResults.getProsecutionCaseResults().stream().map(pc -> pc.getJudicialResult().getJudicialResultId()).toList(), containsInAnyOrder(resultLineId1, resultLineId2)); - } - - @Test - public void givenApplicationJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInApplicationResults() { - final UUID applicationId = randomUUID(); - final UUID resultLineId = randomUUID(); - final TreeNode mockNode = mock(TreeNode.class); - final List> restructuredResults = List.of(mockNode); - - final Hearing hearing = Hearing.hearing() - .withCourtApplications(List.of(courtApplication().withId(applicationId).build())) - .build(); - when(mockNode.getApplicationId()).thenReturn(applicationId); - when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); - - final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); - - assertThat(deletedResults.getApplicationResults().size(), is(1)); - assertThat(deletedResults.getApplicationResults().get(0).getApplicationId(), is(applicationId)); - assertThat(deletedResults.getApplicationResults().get(0).getJudicialResult(), is(notNullValue())); - } - - @Test - public void givenApplicationCaseJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInApplicationResults() { - final UUID applicationId = randomUUID(); - final UUID offenceId = randomUUID(); - final UUID resultLineId = randomUUID(); - final TreeNode mockNode = mock(TreeNode.class); - final List> restructuredResults = List.of(mockNode); - - final Hearing hearing = Hearing.hearing() - .withCourtApplications(List.of(courtApplication().withId(applicationId) - .withCourtApplicationCases(List.of(CourtApplicationCase.courtApplicationCase() - .withOffences(List.of(Offence.offence() - .withId(offenceId).build())) - .build())).build())) - .build(); - when(mockNode.getApplicationId()).thenReturn(applicationId); - when(mockNode.getOffenceId()).thenReturn(offenceId); - when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); - - final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); - - assertThat(deletedResults.getApplicationCaseResults().size(), is(1)); - assertThat(deletedResults.getApplicationCaseResults().get(0).getApplicationId(), is(applicationId)); - assertThat(deletedResults.getApplicationCaseResults().get(0).getJudicialResult(), is(notNullValue())); - } - - @Test - public void givenApplicationCourtOrderJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInApplicationResults() { - final UUID applicationId = randomUUID(); - final UUID offenceId = randomUUID(); - final UUID resultLineId = randomUUID(); - final TreeNode mockNode = mock(TreeNode.class); - final List> restructuredResults = List.of(mockNode); - - final Hearing hearing = Hearing.hearing() - .withCourtApplications(List.of(courtApplication().withId(applicationId) - .withCourtOrder(CourtOrder.courtOrder() - .withCourtOrderOffences(List.of(CourtOrderOffence.courtOrderOffence() - .withOffence(Offence.offence().withId(offenceId) - .build()) - .build())) - .build()) - - .build())) - .build(); - when(mockNode.getApplicationId()).thenReturn(applicationId); - when(mockNode.getOffenceId()).thenReturn(offenceId); - when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); - - final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); - - assertThat(deletedResults.getApplicationCourtOrderResults().size(), is(1)); - assertThat(deletedResults.getApplicationCourtOrderResults().get(0).getApplicationId(), is(applicationId)); - assertThat(deletedResults.getApplicationCourtOrderResults().get(0).getJudicialResult(), is(notNullValue())); - } -} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java index bbe04dc789..5cf039892f 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java @@ -1,24 +1,16 @@ package uk.gov.moj.cpp.hearing.event.delegates.helper.restructure; -import static net.bytebuddy.matcher.ElementMatchers.anyOf; import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.is; -import static org.hamcrest.Matchers.nullValue; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; import static uk.gov.justice.services.test.utils.core.reflection.ReflectionUtil.setField; -import static uk.gov.moj.cpp.hearing.event.delegates.helper.DeletedJudicialResultTransformer.toDeletedResults; import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_DATEORDERS_HEARING_JSON; -import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_DELETED_RESULTLINES_JSON; -import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_DELETED_RESULTLINES_PARENT_JSON; -import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_LINKED_APP_DELETED_RESULTLINES_JSON; import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_NEW_REVIEW_HEARING_ALWAYS_PUBLISHED_LEAF_NODE_JSON; import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_NEW_REVIEW_HEARING_JSON; -import uk.gov.justice.core.courts.DeletedJudicialResults; import uk.gov.justice.core.courts.HearingType; import uk.gov.justice.core.courts.JudicialResultPrompt; import uk.gov.justice.core.courts.ResultLine2; @@ -34,14 +26,11 @@ import java.util.List; import java.util.UUID; import java.util.stream.Collectors; -import java.util.stream.Stream; import org.apache.commons.lang3.StringUtils; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; -import org.junit.jupiter.params.ParameterizedTest; -import org.junit.jupiter.params.provider.Arguments; -import org.junit.jupiter.params.provider.MethodSource; import org.mockito.Mockito; import org.mockito.junit.jupiter.MockitoSettings; import org.mockito.quality.Strictness; @@ -66,19 +55,19 @@ public void setUp() throws IOException { public void shouldPublishWhenAlwaysPublishedIsALeafNode() throws IOException { final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(HEARING_RESULTS_NEW_REVIEW_HEARING_ALWAYS_PUBLISHED_LEAF_NODE_JSON, ResultsSharedV3.class); final JsonEnvelope envelope = getEnvelope(resultsShared); - List resultDefinitionIds = resultsShared.getTargets().stream() - .flatMap(t -> t.getResultLines().stream()) + List resultDefinitionIds=resultsShared.getTargets().stream() + .flatMap(t->t.getResultLines().stream()) .map(ResultLine2::getResultDefinitionId) .collect(Collectors.toList()); final List> treeNodes = new ArrayList<>(); - for (UUID resulDefinitionId : resultDefinitionIds) { - TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); - resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); - resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); - treeNodes.add(resultDefinitionTreeNode); - } + for(UUID resulDefinitionId:resultDefinitionIds){ + TreeNode resultDefinitionTreeNode=new TreeNode(resulDefinitionId,resultDefinitions); + resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); + resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); + treeNodes.add(resultDefinitionTreeNode); + } final List> restructuredTree = target.restructure(envelope, resultsShared, treeNodes); @@ -111,15 +100,15 @@ public void shouldPublishWhenAlwaysPublishedIsAnIntermediaryNodeWhenLeafNodePubl assertThat(rl2.getPrompts().size(), is(3)); assertThat(firstReviewResultLint.getPrompts().size(), is(12)); - List resultDefinitionIds = resultsShared.getTargets().stream() - .flatMap(t -> t.getResultLines().stream()) + List resultDefinitionIds=resultsShared.getTargets().stream() + .flatMap(t->t.getResultLines().stream()) .map(ResultLine2::getResultDefinitionId) .collect(Collectors.toList()); final List> treeNodes = new ArrayList<>(); - for (UUID resulDefinitionId : resultDefinitionIds) { - TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); + for(UUID resulDefinitionId:resultDefinitionIds){ + TreeNode resultDefinitionTreeNode=new TreeNode(resulDefinitionId,resultDefinitions); resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); treeNodes.add(resultDefinitionTreeNode); @@ -151,15 +140,15 @@ public void ShouldReturnResultTextForEachOrderedDateCorrectly() throws IOExcepti final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(HEARING_RESULTS_DATEORDERS_HEARING_JSON, ResultsSharedV3.class); final JsonEnvelope envelope = getEnvelope(resultsShared); - List resultDefinitionIds = resultsShared.getTargets().stream() - .flatMap(t -> t.getResultLines().stream()) + List resultDefinitionIds=resultsShared.getTargets().stream() + .flatMap(t->t.getResultLines().stream()) .map(ResultLine2::getResultDefinitionId) .collect(Collectors.toList()); final List> treeNodes = new ArrayList<>(); - for (UUID resulDefinitionId : resultDefinitionIds) { - TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); + for(UUID resulDefinitionId:resultDefinitionIds){ + TreeNode resultDefinitionTreeNode=new TreeNode(resulDefinitionId,resultDefinitions); resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); treeNodes.add(resultDefinitionTreeNode); @@ -174,58 +163,6 @@ public void ShouldReturnResultTextForEachOrderedDateCorrectly() throws IOExcepti restructuredTree.forEach(resultLine2TreeNode -> assertNotNull(resultLine2TreeNode.getJudicialResult().getResultText())); - } - - @ParameterizedTest - @MethodSource("amendmentsWithDeletedResults") - void ShouldReturnDeletedResultLines(final String resultsSharedEventPayloadFile, final int deletedProsecutionCaseResultsCount, final int deletedApplicationResultsCount, - final int deletedApplicationCaseResultsCount, - final int deletedApplicationCourtOrderResultsCount) throws IOException { - - final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(resultsSharedEventPayloadFile, ResultsSharedV3.class); - final JsonEnvelope envelope = getEnvelope(resultsShared); - - final List resultDefinitionIds = resultsShared.getTargets().stream() - .flatMap(t -> t.getResultLines().stream()) - .map(ResultLine2::getResultDefinitionId) - .toList(); - - final List> treeNodes = new ArrayList<>(); - - for (UUID resulDefinitionId : resultDefinitionIds) { - TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); - resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); - resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); - treeNodes.add(resultDefinitionTreeNode); - } - when(hearingTypeReverseLookup.getHearingTypeByName(any(), any())).thenReturn(HearingType.hearingType().withDescription("REV").build()); - ResultTextConfHelper resultTextConfHelper = new ResultTextConfHelper(); - setField(resultTextConfHelper, "liveDateOfResultTextTemplateConf", "01042023"); - resultTextConfHelper.setDate(); - resultTreeBuilder = new ResultTreeBuilderV3(referenceDataService, nextHearingHelperV3, resultLineHelperV3, resultTextConfHelper); - target = new RestructuringHelperV3(resultTreeBuilder, resultTextConfHelper); - final List> restructuredTree = target.getDeletedResults(envelope, resultsShared, treeNodes); - final DeletedJudicialResults deletedResults = toDeletedResults(restructuredTree, resultsShared.getHearing()); - - assertResultList(deletedResults.getProsecutionCaseResults(), deletedProsecutionCaseResultsCount); - assertResultList(deletedResults.getApplicationResults(), deletedApplicationResultsCount); - assertResultList(deletedResults.getApplicationCaseResults(), deletedApplicationCaseResultsCount); - assertResultList(deletedResults.getApplicationCourtOrderResults(), deletedApplicationCourtOrderResultsCount); - } - public static Stream amendmentsWithDeletedResults() { - return Stream.of( - Arguments.of(HEARING_RESULTS_DELETED_RESULTLINES_PARENT_JSON, 1, 0, 0, 0), - Arguments.of(HEARING_RESULTS_DELETED_RESULTLINES_JSON, 1, 0, 0, 0), - Arguments.of(HEARING_RESULTS_LINKED_APP_DELETED_RESULTLINES_JSON, 0, 4, 0, 0) - ); - } - - private void assertResultList(final List results, final int expectedCount){ - if (expectedCount == 0) { - assertThat(results, nullValue()); - } else { - assertThat(results.size(), is(expectedCount)); - } } } diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java index 425f6dd1cb..3126767d28 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java @@ -29,9 +29,6 @@ public class RestructuringConstants { public static final String HEARING_RESULTS_NEW_REVIEW_HEARING_JSON = "hearing.results-shared_new_review_hearing.json"; public static final String HEARING_RESULTS_NEW_REVIEW_HEARING_DEFENDANT_LEVEL_RESULTS_JSON = "hearing.results-shared_new_review_hearing_defendant_level_results.json"; public static final String HEARING_RESULTS_DATEORDERS_HEARING_JSON = "hearing.results-shared_with_orderedDates_hearing.json"; - public static final String HEARING_RESULTS_DELETED_RESULTLINES_JSON = "hearing.results-shared_with_deleted_resultlines.json"; - public static final String HEARING_RESULTS_LINKED_APP_DELETED_RESULTLINES_JSON = "hearing.results-shared_for_linked_app_with_deleted_resultlines.json"; - public static final String HEARING_RESULTS_DELETED_RESULTLINES_PARENT_JSON = "hearing.results-shared_with_deleted_resultlines_parent.json"; public static final String HEARING_RESULTS_HEARING_JSON = "hearing.events.results-shared-v3.json"; public static final String HEARING_CASE_RESULTS_SHARED_WITH_DRIVINGLICENCENUMBER_JSON = "hearing.case-results-shared_with_drivinglicencenumber.json"; public static final String HEARING_APPLICATION_RESULTS_SHARED_WITH_DRIVINGLICENCENUMBER_JSON = "hearing.application-results-shared_with_drivinglicencenumber.json"; diff --git a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json deleted file mode 100644 index 85929621dc..0000000000 --- a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json +++ /dev/null @@ -1,1345 +0,0 @@ -{ - "hearingId": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", - "sharedTime": "2025-09-19T16:02:11.893Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - }, - "hearing": { - "courtApplications": [ - { - "applicant": { - "id": "31bbd5fd-d058-421b-a090-1e58a9c78d19", - "masterDefendant": { - "defendantCase": [ - { - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "caseReference": "28DI6500116", - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d" - } - ], - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "personDefendant": { - "arrestSummonsNumber": "D28GC01126500116", - "bailStatus": { - "code": "A", - "description": "Not applicable", - "id": "86009c70-759d-3308-8de4-194886ff9a77" - }, - "driverNumber": "VANFL002222OW9PH", - "personDetails": { - "address": { - "address1": "9999A9899AAAA", - "address2": "Woodlane4", - "address3": "addressline 3", - "address4": "Bristol", - "address5": "Avon", - "postcode": "BS1 1JQ" - }, - "contact": { - "home": "0206500116", - "mobile": "07776500116", - "primaryEmail": "firstName.lastName6500116@gmail.com" - }, - "dateOfBirth": "1972-11-01", - "documentationLanguageNeeds": "ENGLISH", - "ethnicity": { - "observedEthnicityCode": "1", - "observedEthnicityDescription": "White", - "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", - "selfDefinedEthnicityCode": "W1", - "selfDefinedEthnicityDescription": "British", - "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" - }, - "firstName": "Angus", - "gender": "MALE", - "hearingLanguageNeeds": "ENGLISH", - "lastName": "Lindgren", - "title": "Mr" - }, - "policeBailStatus": { - "code": "C", - "description": "Custody", - "id": "12e69486-4d01-3403-a50a-7419ca040635" - } - } - }, - "notificationRequired": true, - "summonsRequired": false - }, - "applicationReceivedDate": "2025-09-19", - "applicationReference": "28DI6500116", - "applicationStatus": "LISTED", - "commissionerOfOath": false, - "courtApplicationCases": [ - { - "caseStatus": "INACTIVE", - "isSJP": false, - "offences": [ - { - "arrestDate": "2021-01-01", - "chargeDate": "2020-12-28", - "count": 0, - "endorsableFlag": false, - "id": "56693136-f544-4083-bd55-df22eff8d021", - "isDisposed": true, - "listingNumber": 1, - "maxPenalty": "EW:6M &/or Ultd Fine", - "modeOfTrial": "Either Way", - "offenceCode": "TH68010", - "offenceDateCode": 1, - "offenceDefinitionId": "38873d2b-4f99-35ae-9d8f-41da07abb6d5", - "offenceLegislation": "Contrary to section 1(1) and 7 of the Theft Act 1968.", - "offenceLegislationWelsh": "Yn groes i adran 1(1) a 7 Deddf Dwyn 1968.", - "offenceTitle": "Theft from a shop", - "offenceTitleWelsh": "Dwyn o siop - siop-ladrad", - "orderIndex": 1, - "proceedingsConcluded": true, - "startDate": "2019-11-28", - "wording": "Theft of pedal cycle." - } - ], - "prosecutionCaseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "prosecutionCaseIdentifier": { - "address": { - "address1": "Finance Operations", - "address2": "C3 East", - "address3": "DVLA", - "address4": "Longview Road", - "address5": "Swansea", - "postcode": "SA6 7JL" - }, - "contact": { - "primaryEmail": "sjp@dvla.gov.uk" - }, - "majorCreditorCode": "DVL2", - "prosecutionAuthorityCode": "DVLA", - "prosecutionAuthorityId": "6ae4b163-658b-3ae2-a66d-43401cac2f96", - "prosecutionAuthorityName": "Driver and Vehicle Licensing Agency", - "prosecutionAuthorityOUCode": "G94DV00", - "caseURN": "28DI6500116" - } - } - ], - "id": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "subject": { - "id": "31bbd5fd-d058-421b-a090-1e58a9c78d19", - "masterDefendant": { - "defendantCase": [ - { - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "caseReference": "28DI6500116", - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d" - } - ], - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "personDefendant": { - "arrestSummonsNumber": "D28GC01126500116", - "bailStatus": { - "code": "A", - "description": "Not applicable", - "id": "86009c70-759d-3308-8de4-194886ff9a77" - }, - "driverNumber": "VANFL002222OW9PH", - "personDetails": { - "address": { - "address1": "9999A9899AAAA", - "address2": "Woodlane4", - "address3": "addressline 3", - "address4": "Bristol", - "address5": "Avon", - "postcode": "BS1 1JQ" - }, - "contact": { - "home": "0206500116", - "mobile": "07776500116", - "primaryEmail": "firstName.lastName6500116@gmail.com" - }, - "dateOfBirth": "1972-11-01", - "documentationLanguageNeeds": "ENGLISH", - "ethnicity": { - "observedEthnicityCode": "1", - "observedEthnicityDescription": "White", - "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", - "selfDefinedEthnicityCode": "W1", - "selfDefinedEthnicityDescription": "British", - "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" - }, - "firstName": "Angus", - "gender": "MALE", - "hearingLanguageNeeds": "ENGLISH", - "lastName": "Lindgren", - "title": "Mr" - }, - "policeBailStatus": { - "code": "C", - "description": "Custody", - "id": "12e69486-4d01-3403-a50a-7419ca040635" - } - } - }, - "notificationRequired": true, - "summonsRequired": false - }, - "thirdParties": [ - { - "id": "977beebc-2e85-47cb-9d3f-f7038153a196", - "notificationRequired": true, - "prosecutingAuthority": { - "address": { - "address1": "Finance Operations", - "address2": "C3 East", - "address3": "DVLA", - "address4": "Longview Road", - "address5": "Swansea", - "postcode": "SA6 7JL" - }, - "contact": { - "primaryEmail": "sjp@dvla.gov.uk" - }, - "majorCreditorCode": "DVL2", - "name": "Driver and Vehicle Licensing Agency", - "prosecutionAuthorityCode": "DVLA", - "prosecutionAuthorityId": "6ae4b163-658b-3ae2-a66d-43401cac2f96", - "prosecutionAuthorityOUCode": "G94DV00" - }, - "summonsRequired": true - } - ], - "type": { - "appealFlag": false, - "applicantAppellantFlag": false, - "applicationWording": "Appears before the court in order to make a statutory declaration following conviction {1} by {2} on {3}. Original case number: {4}", - "applicationWordingWelsh": "Yn ymddangos gerbron y llys er mwyn gwneud datganiad statudol yn dilyn euogfarn <[am y trosedd ][am y troseddau ]> gan ar . Rhif yr Achos Gwreiddiol: ", - "boxworkNotifTemplate": "NOT_APPLICABLE", - "breachType": "NOT_APPLICABLE", - "categoryCode": "CR", - "changeDate": "2025-03-17T10:29:09", - "code": "MC80527", - "commrOfOathFlag": true, - "contestedFeeApplicable": false, - "courtExtractAvlFlag": true, - "courtOfAppealFlag": false, - "exParte": false, - "hearingCode": "APN", - "id": "a6663f2a-c900-4bb4-a7d7-4be34cb2f1f7", - "initialFeeApplicable": false, - "jurisdiction": "MAGISTRATES", - "lastModified": "2025-03-17T14:00:40.437Z", - "legislation": "In accordance with section 14 of the Magistrates' Courts Act 1980.", - "legislationWelsh": "Yn unol ag adran 14 Deddf Llysoedd Ynadon 1980.", - "linkType": "LINKED", - "listingNotifTemplate": "POSTAL_NOTIFICATION", - "offenceActiveOrder": "OFFENCE", - "pleaApplicableFlag": true, - "prosecutorThirdPartyFlag": true, - "pssId": 601795, - "sowRef": "APPS", - "spiOutApplicableFlag": true, - "summonsTemplateType": "NOT_APPLICABLE", - "type": "Appearance to make statutory declaration (other than SJP)", - "typeWelsh": "Ymddangosiad i wneud datganiad statudol", - "validFrom": "2000-01-05" - } - } - ], - "courtCentre": { - "address": { - "address1": "Norwich Place", - "address2": "Bexleyheath", - "address3": "Kent", - "address4": "", - "address5": "", - "postcode": "DA6 7ND" - }, - "code": "B01BH00", - "courtHearingLocation": "B01BH01", - "id": "7e967376-eacf-4fca-9b30-21b0c5aad427", - "lja": { - "ljaCode": "2575", - "ljaName": "South East London Magistrates' Court" - }, - "name": "Bexley Magistrates' Court", - "roomId": "8e912353-3b5d-36c3-953e-ad3b94b19de3", - "roomName": "Courtroom 01" - }, - "defendantAttendance": [ - { - "attendanceDays": [ - { - "attendanceType": "IN_PERSON", - "day": "2025-09-19" - } - ], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d" - } - ], - "hasSharedResults": true, - "hearingDays": [ - { - "courtCentreId": "7e967376-eacf-4fca-9b30-21b0c5aad427", - "courtRoomId": "8e912353-3b5d-36c3-953e-ad3b94b19de3", - "hasSharedResults": true, - "isCancelled": false, - "listedDurationMinutes": 20, - "listingSequence": 0, - "sittingDay": "2025-09-19T09:00:00.000Z" - } - ], - "hearingLanguage": "ENGLISH", - "id": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", - "jurisdictionType": "MAGISTRATES", - "shadowListedOffences": [], - "type": { - "description": "Application", - "id": "3449743b-95d6-4836-8941-57f588b52068" - } - }, - "variantDirectory": [], - "completedResultLinesStatus": { - "c3f54f8b-bae1-4141-bdf9-7dc38aee602a": { - "id": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", - "lastSharedDateTime": "2025-09-19T16:00:56.563Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "4b4dbc9f-7889-4433-9eab-5f631c103b81": { - "id": "4b4dbc9f-7889-4433-9eab-5f631c103b81", - "lastSharedDateTime": "2025-09-19T16:00:56.563Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "67c5877f-bcb0-430f-974c-334e4d565f05": { - "id": "67c5877f-bcb0-430f-974c-334e4d565f05", - "lastSharedDateTime": "2025-09-19T16:00:56.563Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "626a1980-77be-4612-9afc-55f3c85d7381": { - "id": "626a1980-77be-4612-9afc-55f3c85d7381", - "lastSharedDateTime": "2025-09-19T16:00:56.563Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "11593003-7af6-4d2a-aa08-82281a4df15c": { - "id": "11593003-7af6-4d2a-aa08-82281a4df15c", - "lastSharedDateTime": "2025-09-19T16:00:56.563Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "d6986f75-2404-4e8c-8250-d50b7d8e865c": { - "id": "d6986f75-2404-4e8c-8250-d50b7d8e865c", - "lastSharedDateTime": "2025-09-19T16:00:56.563Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "45b6b6d7-ce6f-425c-a2c6-bdae1db71690": { - "id": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", - "lastSharedDateTime": "2025-09-19T16:00:56.563Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "18ccf48c-c76a-4e20-a777-4d37d4645003": { - "id": "18ccf48c-c76a-4e20-a777-4d37d4645003", - "lastSharedDateTime": "2025-09-19T16:00:56.563Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "25082695-3304-4d5d-8176-b2e77fbd1236": { - "id": "25082695-3304-4d5d-8176-b2e77fbd1236", - "lastSharedDateTime": "2025-09-19T16:00:56.563Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "352c8174-5140-4717-bc12-cb9ce554d68a": { - "id": "352c8174-5140-4717-bc12-cb9ce554d68a", - "lastSharedDateTime": "2025-09-19T16:00:56.563Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - } - }, - "targets": [ - { - "applicationFinalised": true, - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "draftResult": "{}", - "hearingDay": "2025-09-19", - "hearingId": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "resultLines": [ - { - "amendmentDate": "2025-09-19T16:01:21.012Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "I", - "childResultLineIds": [], - "isComplete": true, - "isDeleted": true, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "orderedDate": "2025-09-19", - "prompts": [ - { - "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", - "label": "Defendant excused attendance at next hearing", - "promptRef": "defendantExcusedAttendanceAtNextHearing", - "value": "true" - } - ], - "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", - "resultLabel": "Adjournment", - "resultLineId": "25082695-3304-4d5d-8176-b2e77fbd1236", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "a" - }, - { - "amendmentDate": "2025-09-19T16:01:21.012Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "isComplete": true, - "isDeleted": true, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "orderedDate": "2025-09-19", - "prompts": [], - "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "resultLabel": "Next hearing", - "resultLineId": "d6986f75-2404-4e8c-8250-d50b7d8e865c", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "nexh" - }, - { - "amendmentDate": "2025-09-19T16:01:21.012Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "isComplete": true, - "isDeleted": true, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "orderedDate": "2025-09-19", - "prompts": [ - { - "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", - "label": "Date of hearing", - "promptRef": "HDATE", - "value": "2025-09-19" - }, - { - "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", - "label": "Time of hearing", - "promptRef": "timeOfHearing", - "value": "10:00" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse organisation name", - "promptRef": "hCHOUSEOrganisationName", - "value": "Lavender Hill Magistrates' Court" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 1", - "promptRef": "hCHOUSEAddress1", - "value": "176A Lavender Hill" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 2", - "promptRef": "hCHOUSEAddress2", - "value": "London" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse post code", - "promptRef": "hCHOUSEPostCode", - "value": "SW11 1JU" - }, - { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "promptRef": "HCROOM", - "value": "Courtroom 03" - }, - { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "promptRef": "HTYPE", - "value": "Bail Application" - }, - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "promptRef": "HEST", - "value": "20 MINUTES" - }, - { - "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", - "label": "Booking reference", - "promptRef": "bookingReference", - "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" - } - ], - "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", - "resultLabel": "Next hearing in magistrates' court", - "resultLineId": "18ccf48c-c76a-4e20-a777-4d37d4645003", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "nhmc" - }, - { - "amendmentDate": "2025-09-19T16:01:21.012Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "isComplete": true, - "isDeleted": true, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "orderedDate": "2025-09-19", - "prompts": [], - "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "resultLabel": "Adjournment reasons", - "resultLineId": "352c8174-5140-4717-bc12-cb9ce554d68a", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "adjr" - }, - { - "amendmentDate": "2025-09-19T16:01:32.983Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": true, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "prompts": [], - "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", - "resultLabel": "To attend or a warrant to issue", - "resultLineId": "67c5877f-bcb0-430f-974c-334e4d565f05", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "awi" - }, - { - "amendmentDate": "2025-09-19T16:01:21.012Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "isComplete": true, - "isDeleted": true, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "orderedDate": "2025-09-19", - "prompts": [], - "resultDefinitionId": "dbf9f59c-eee5-4285-8a1c-4fefe4508581", - "resultLabel": "To produce motor insurance documents or test certificates (not driving licence)", - "resultLineId": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "doc" - }, - { - "amendmentDate": "2025-09-19T16:01:32.983Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "I", - "childResultLineIds": [ - "4b4dbc9f-7889-4433-9eab-5f631c103b81", - "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" - ], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "prompts": [ - { - "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", - "label": "Defendant excused attendance at next hearing", - "promptRef": "defendantExcusedAttendanceAtNextHearing", - "value": "true" - } - ], - "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", - "resultLabel": "Adjournment", - "resultLineId": "626a1980-77be-4612-9afc-55f3c85d7381", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "a" - }, - { - "amendmentDate": "2025-09-19T16:01:32.983Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [ - "11593003-7af6-4d2a-aa08-82281a4df15c" - ], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "626a1980-77be-4612-9afc-55f3c85d7381" - ], - "prompts": [], - "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "resultLabel": "Next hearing", - "resultLineId": "4b4dbc9f-7889-4433-9eab-5f631c103b81", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "nexh" - }, - { - "amendmentDate": "2025-09-19T16:01:32.983Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "4b4dbc9f-7889-4433-9eab-5f631c103b81" - ], - "prompts": [ - { - "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", - "label": "Date of hearing", - "promptRef": "HDATE", - "value": "2025-09-19" - }, - { - "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", - "label": "Time of hearing", - "promptRef": "timeOfHearing", - "value": "10:00" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse organisation name", - "promptRef": "hCHOUSEOrganisationName", - "value": "Lavender Hill Magistrates' Court" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 1", - "promptRef": "hCHOUSEAddress1", - "value": "176A Lavender Hill" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 2", - "promptRef": "hCHOUSEAddress2", - "value": "London" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse post code", - "promptRef": "hCHOUSEPostCode", - "value": "SW11 1JU" - }, - { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "promptRef": "HCROOM", - "value": "Courtroom 03" - }, - { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "promptRef": "HTYPE", - "value": "Bail Application" - }, - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "promptRef": "HEST", - "value": "20 MINUTES" - }, - { - "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", - "label": "Booking reference", - "promptRef": "bookingReference", - "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" - } - ], - "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", - "resultLabel": "Next hearing in magistrates' court", - "resultLineId": "11593003-7af6-4d2a-aa08-82281a4df15c", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "nhmc" - }, - { - "amendmentDate": "2025-09-19T16:01:32.983Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [ - "92df62ca-9311-4894-8bfa-61c4e4ad5f1a" - ], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "626a1980-77be-4612-9afc-55f3c85d7381" - ], - "prompts": [], - "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "resultLabel": "Adjournment reasons", - "resultLineId": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "adjr" - }, - { - "amendmentDate": "2025-09-19T16:01:32.983Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": true, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "prompts": [], - "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", - "resultLabel": "To attend or a warrant to issue", - "resultLineId": "67c5877f-bcb0-430f-974c-334e4d565f05", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "awi" - }, - { - "amendmentDate": "2025-09-19T16:01:25.148Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:25.148Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "F", - "childResultLineIds": [], - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "orderedDate": "2025-09-19", - "prompts": [], - "resultDefinitionId": "2b3f7c20-8fc1-4fad-9076-df196c24b27e", - "resultLabel": "Granted", - "resultLineId": "e548f1a1-fee8-46c0-bc47-201a26de69f6", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "g" - }, - { - "amendmentDate": "2025-09-19T16:01:32.983Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:32.983Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" - ], - "prompts": [], - "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", - "resultLabel": "To attend or a warrant to issue", - "resultLineId": "92df62ca-9311-4894-8bfa-61c4e4ad5f1a", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "awi" - } - ], - "shadowListed": false, - "targetId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53" - } - ], - "savedTargets": [ - { - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "draftResult": "{}", - "hearingDay": "2025-09-19", - "hearingId": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "resultLines": [ - { - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "I", - "childResultLineIds": [ - "d6986f75-2404-4e8c-8250-d50b7d8e865c", - "352c8174-5140-4717-bc12-cb9ce554d68a" - ], - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "orderedDate": "2025-09-19", - "prompts": [ - { - "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", - "label": "Defendant excused attendance at next hearing", - "promptRef": "defendantExcusedAttendanceAtNextHearing", - "value": "true" - } - ], - "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", - "resultLabel": "Adjournment", - "resultLineId": "25082695-3304-4d5d-8176-b2e77fbd1236", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "a" - }, - { - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [ - "18ccf48c-c76a-4e20-a777-4d37d4645003" - ], - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "25082695-3304-4d5d-8176-b2e77fbd1236" - ], - "prompts": [], - "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "resultLabel": "Next hearing", - "resultLineId": "d6986f75-2404-4e8c-8250-d50b7d8e865c", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "nexh" - }, - { - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [ - "67c5877f-bcb0-430f-974c-334e4d565f05", - "c3f54f8b-bae1-4141-bdf9-7dc38aee602a" - ], - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "25082695-3304-4d5d-8176-b2e77fbd1236" - ], - "prompts": [], - "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "resultLabel": "Adjournment reasons", - "resultLineId": "352c8174-5140-4717-bc12-cb9ce554d68a", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "adjr" - }, - { - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "d6986f75-2404-4e8c-8250-d50b7d8e865c" - ], - "prompts": [ - { - "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", - "label": "Date of hearing", - "promptRef": "HDATE", - "value": "2025-09-19" - }, - { - "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", - "label": "Time of hearing", - "promptRef": "timeOfHearing", - "value": "10:00" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse organisation name", - "promptRef": "hCHOUSEOrganisationName", - "value": "Lavender Hill Magistrates' Court" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 1", - "promptRef": "hCHOUSEAddress1", - "value": "176A Lavender Hill" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 2", - "promptRef": "hCHOUSEAddress2", - "value": "London" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse post code", - "promptRef": "hCHOUSEPostCode", - "value": "SW11 1JU" - }, - { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "promptRef": "HCROOM", - "value": "Courtroom 03" - }, - { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "promptRef": "HTYPE", - "value": "Bail Application" - }, - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "promptRef": "HEST", - "value": "20 MINUTES" - }, - { - "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", - "label": "Booking reference", - "promptRef": "bookingReference", - "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" - } - ], - "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", - "resultLabel": "Next hearing in magistrates' court", - "resultLineId": "18ccf48c-c76a-4e20-a777-4d37d4645003", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "nhmc" - }, - { - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "I", - "childResultLineIds": [ - "4b4dbc9f-7889-4433-9eab-5f631c103b81", - "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" - ], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "prompts": [ - { - "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", - "label": "Defendant excused attendance at next hearing", - "promptRef": "defendantExcusedAttendanceAtNextHearing", - "value": "true" - } - ], - "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", - "resultLabel": "Adjournment", - "resultLineId": "626a1980-77be-4612-9afc-55f3c85d7381", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "a" - }, - { - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [ - "11593003-7af6-4d2a-aa08-82281a4df15c" - ], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "626a1980-77be-4612-9afc-55f3c85d7381" - ], - "prompts": [], - "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "resultLabel": "Next hearing", - "resultLineId": "4b4dbc9f-7889-4433-9eab-5f631c103b81", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "nexh" - }, - { - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "4b4dbc9f-7889-4433-9eab-5f631c103b81" - ], - "prompts": [ - { - "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", - "label": "Date of hearing", - "promptRef": "HDATE", - "value": "2025-09-19" - }, - { - "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", - "label": "Time of hearing", - "promptRef": "timeOfHearing", - "value": "10:00" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse organisation name", - "promptRef": "hCHOUSEOrganisationName", - "value": "Lavender Hill Magistrates' Court" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 1", - "promptRef": "hCHOUSEAddress1", - "value": "176A Lavender Hill" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 2", - "promptRef": "hCHOUSEAddress2", - "value": "London" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse post code", - "promptRef": "hCHOUSEPostCode", - "value": "SW11 1JU" - }, - { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "promptRef": "HCROOM", - "value": "Courtroom 03" - }, - { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "promptRef": "HTYPE", - "value": "Bail Application" - }, - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "promptRef": "HEST", - "value": "20 MINUTES" - }, - { - "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", - "label": "Booking reference", - "promptRef": "bookingReference", - "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" - } - ], - "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", - "resultLabel": "Next hearing in magistrates' court", - "resultLineId": "11593003-7af6-4d2a-aa08-82281a4df15c", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "nhmc" - }, - { - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [ - "67c5877f-bcb0-430f-974c-334e4d565f05" - ], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "626a1980-77be-4612-9afc-55f3c85d7381" - ], - "prompts": [], - "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "resultLabel": "Adjournment reasons", - "resultLineId": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "adjr" - }, - { - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "offenceId": "56693136-f544-4083-bd55-df22eff8d021", - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" - ], - "prompts": [], - "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", - "resultLabel": "To attend or a warrant to issue", - "resultLineId": "67c5877f-bcb0-430f-974c-334e4d565f05", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "awi" - }, - { - "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", - "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", - "category": "A", - "childResultLineIds": [], - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", - "nonStandaloneAncillaryResult": false, - "orderedDate": "2025-09-19", - "parentResultLineIds": [ - "352c8174-5140-4717-bc12-cb9ce554d68a" - ], - "prompts": [], - "resultDefinitionId": "dbf9f59c-eee5-4285-8a1c-4fefe4508581", - "resultLabel": "To produce motor insurance documents or test certificates (not driving licence)", - "resultLineId": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", - "shadowListed": false, - "sharedDate": "2025-09-19", - "shortCode": "doc" - } - ], - "shadowListed": false, - "targetId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53" - } - ], - "defendantDetailsChanged": [], - "isReshare": true, - "newAmendmentResults": [ - { - "id": "25082695-3304-4d5d-8176-b2e77fbd1236", - "amendmentDateTime": "2025-09-19T16:01:21.012Z" - }, - { - "id": "d6986f75-2404-4e8c-8250-d50b7d8e865c", - "amendmentDateTime": "2025-09-19T16:01:21.012Z" - }, - { - "id": "18ccf48c-c76a-4e20-a777-4d37d4645003", - "amendmentDateTime": "2025-09-19T16:01:21.012Z" - }, - { - "id": "352c8174-5140-4717-bc12-cb9ce554d68a", - "amendmentDateTime": "2025-09-19T16:01:21.012Z" - }, - { - "id": "67c5877f-bcb0-430f-974c-334e4d565f05", - "amendmentDateTime": "2025-09-19T16:01:32.983Z" - }, - { - "id": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", - "amendmentDateTime": "2025-09-19T16:01:21.012Z" - }, - { - "id": "626a1980-77be-4612-9afc-55f3c85d7381", - "amendmentDateTime": "2025-09-19T16:01:32.983Z" - }, - { - "id": "4b4dbc9f-7889-4433-9eab-5f631c103b81", - "amendmentDateTime": "2025-09-19T16:01:32.983Z" - }, - { - "id": "11593003-7af6-4d2a-aa08-82281a4df15c", - "amendmentDateTime": "2025-09-19T16:01:32.983Z" - }, - { - "id": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", - "amendmentDateTime": "2025-09-19T16:01:32.983Z" - }, - { - "id": "67c5877f-bcb0-430f-974c-334e4d565f05", - "amendmentDateTime": "2025-09-19T16:01:32.983Z" - }, - { - "id": "e548f1a1-fee8-46c0-bc47-201a26de69f6", - "amendmentDateTime": "2025-09-19T16:01:25.148Z" - }, - { - "id": "92df62ca-9311-4894-8bfa-61c4e4ad5f1a", - "amendmentDateTime": "2025-09-19T16:01:32.983Z" - } - ], - "hearingDay": "2025-09-19", - "version": 14 -} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json deleted file mode 100644 index 3cdf7b3e1c..0000000000 --- a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json +++ /dev/null @@ -1,741 +0,0 @@ -{ - "hearingId": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", - "sharedTime": "2025-08-27T17:07:44.238Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - }, - "hearing": { - "courtCentre": { - "address": { - "address1": "176A Lavender Hill", - "address2": "London", - "address3": "", - "address4": "", - "address5": "", - "postcode": "SW11 1JU" - }, - "code": "B01LY00", - "courtHearingLocation": "B01LY01", - "id": "f8254db1-1683-483e-afb3-b87fde5a0a26", - "lja": { - "ljaCode": "2577", - "ljaName": "South West London Magistrates' Court" - }, - "name": "Lavender Hill Magistrates' Court", - "roomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", - "roomName": "Courtroom 01" - }, - "defendantAttendance": [ - { - "attendanceDays": [ - { - "attendanceType": "IN_PERSON", - "day": "2025-08-27" - } - ], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a" - } - ], - "hasSharedResults": true, - "hearingDays": [ - { - "courtCentreId": "f8254db1-1683-483e-afb3-b87fde5a0a26", - "courtRoomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", - "hasSharedResults": true, - "isCancelled": false, - "listedDurationMinutes": 20, - "listingSequence": 0, - "sittingDay": "2025-08-27T20:30:00.000Z" - } - ], - "hearingLanguage": "ENGLISH", - "id": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", - "isGroupProceedings": false, - "jurisdictionType": "MAGISTRATES", - "prosecutionCases": [ - { - "caseStatus": "ACTIVE", - "cpsOrganisation": "A30AB00", - "defendants": [ - { - "courtProceedingsInitiated": "2025-08-27T17:02:47.341Z", - "id": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isYouth": false, - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "offences": [ - { - "arrestDate": "2020-12-01", - "chargeDate": "2020-12-02", - "count": 0, - "endorsableFlag": false, - "id": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "listingNumber": 1, - "modeOfTrial": "Either Way", - "offenceCode": "MD71521", - "offenceDateCode": 1, - "offenceDefinitionId": "734ad209-e52b-4df1-aca0-3b1c90e58ef7", - "offenceLegislation": "Contrary to section 5(2) of and Schedule 4 to the Misuse of Drugs Act 1971.", - "offenceTitle": "Possess a controlled drug of Class B - cannabis resin", - "orderIndex": 1, - "startDate": "2019-11-28", - "wording": "From 13th November 2018, an aggravated version of this offence applies where the offence is committed against an emergency worker acting in the exercise of his / her functions as such a worker, as per section 1 of the Assaults on emergency Workers (Offences) Act 2018; see offence wording document H19568." - } - ], - "personDefendant": { - "arrestSummonsNumber": "E28GC19102022001", - "bailStatus": { - "code": "C", - "description": "Custody", - "id": "12e69486-4d01-3403-a50a-7419ca040635" - }, - "driverNumber": "CRIME709136TC8GZ", - "personDetails": { - "address": { - "address1": "c", - "address2": "Hugh Parkway", - "address3": "Hermannside", - "address4": "Avon", - "postcode": "DA6 7ND" - }, - "contact": { - "home": "873-655-0683" - }, - "dateOfBirth": "2000-07-20", - "documentationLanguageNeeds": "ENGLISH", - "ethnicity": { - "observedEthnicityCode": "1", - "observedEthnicityDescription": "White", - "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", - "selfDefinedEthnicityCode": "W1", - "selfDefinedEthnicityDescription": "British", - "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" - }, - "firstName": "Casper", - "gender": "FEMALE", - "hearingLanguageNeeds": "ENGLISH", - "lastName": "Daugherty", - "title": "Mr" - }, - "policeBailStatus": { - "code": "C", - "description": "Custody", - "id": "12e69486-4d01-3403-a50a-7419ca040635" - } - }, - "prosecutionAuthorityReference": "E28GC19102022001", - "prosecutionCaseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23" - } - ], - "id": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "initiationCode": "C", - "originatingOrganisation": "0300000", - "prosecutionCaseIdentifier": { - "address": { - "address1": "Criminal Justice Department", - "address2": "Derbyshire Constabulary", - "address3": "Butterley Hall", - "address4": "Ripley", - "address5": "Derby", - "postcode": "DE5 3RS" - }, - "contact": { - "primaryEmail": "criminaldataderbyshire@derbyshire.police.uk" - }, - "majorCreditorCode": "PO30", - "prosecutionAuthorityCode": "DERPF", - "prosecutionAuthorityId": "bdc190e7-c939-37ca-be4b-9f615d6ef40e", - "prosecutionAuthorityName": "Derbyshire Police", - "prosecutionAuthorityOUCode": "0300000", - "caseURN": "70FF1811171" - } - } - ], - "type": { - "description": "First hearing", - "id": "4a0e892d-c0c5-3c51-95b8-704d8c781776" - } - }, - "variantDirectory": [], - "completedResultLinesStatus": { - "54498bd6-5474-4103-a9c3-b13a3371d338": { - "id": "54498bd6-5474-4103-a9c3-b13a3371d338", - "lastSharedDateTime": "2025-08-27T17:05:19.980Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "2f459f7c-5217-4cf7-8899-95e94c38b0fb": { - "id": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", - "lastSharedDateTime": "2025-08-27T17:05:19.980Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3": { - "id": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", - "lastSharedDateTime": "2025-08-27T17:05:19.980Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "24936f69-8fcd-492c-8a34-fb3bff18e8a2": { - "id": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", - "lastSharedDateTime": "2025-08-27T17:05:19.980Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "97bc9ae8-69f3-4271-82e1-02a5c402b15f": { - "id": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", - "lastSharedDateTime": "2025-08-27T17:05:19.980Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - } - }, - "targets": [ - { - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "draftResult": "{}", - "hearingDay": "2025-08-27", - "hearingId": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "resultLines": [ - { - "amendmentDate": "2025-08-27T17:06:57.511Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "category": "F", - "childResultLineIds": [ - "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", - "97bc9ae8-69f3-4271-82e1-02a5c402b15f" - ], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label": "End Date", - "promptRef": "endDate", - "value": "2025-12-12" - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "promptRef": "responsibleOfficer", - "value": "an officer of a provider of probation services" - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "promptRef": "supervisingCourt", - "value": "Aberystwyth Magistrates' Court" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", - "promptRef": "probationteamtobenotifiedOrganisationName", - "value": "Midlands Division NPS" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", - "promptRef": "probationteamtobenotifiedEmailAddress1", - "value": "midlandsnps.court@justice.gov.uk" - } - ], - "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", - "resultLabel": "Community order England / Wales", - "resultLineId": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "coew" - }, - { - "amendmentDate": "2025-08-27T17:06:57.511Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "category": "A", - "childResultLineIds": [ - "2f459f7c-5217-4cf7-8899-95e94c38b0fb", - "bd01656f-b7f7-4c8b-9b5e-84c6d4794e5c" - ], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "24936f69-8fcd-492c-8a34-fb3bff18e8a2" - ], - "prompts": [], - "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "resultLabel": "Community requirements", - "resultLineId": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "crs" - }, - { - "amendmentDate": "2025-08-27T17:06:57.511Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "category": "A", - "childResultLineIds": [], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "97bc9ae8-69f3-4271-82e1-02a5c402b15f" - ], - "prompts": [ - { - "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label": "Medical practitioner / Psychologist", - "promptRef": "medicalPractitionerPsychologist", - "value": "test" - }, - { - "id": "fb580537-9d36-4139-811b-77af09547b0d", - "label": "Care home / Hospital", - "promptRef": "careHomeHospital", - "value": "test" - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "promptRef": "periodOfTreatment", - "value": "2 Months" - } - ], - "resultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "resultLabel": "Mental health treatment non-residential patient", - "resultLineId": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "mhtrnr" - }, - { - "amendmentDate": "2025-08-27T17:06:57.511Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "category": "I", - "childResultLineIds": [], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "24936f69-8fcd-492c-8a34-fb3bff18e8a2" - ], - "prompts": [], - "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "resultLabel": "Is electronic monitoring required", - "resultLineId": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "emreq" - }, - { - "amendmentDate": "2025-08-27T17:06:57.511Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T17:06:57.511Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T17:07:41.900Z\"}]}", - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "category": "A", - "childResultLineIds": [], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isComplete": true, - "isDeleted": true, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor organisation name", - "promptRef": "electronicmonitoringcontractorOrganisationName", - "value": "G4S Scotland Monitoring Technologies & Services" - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor email address 1", - "promptRef": "electronicmonitoringcontractorEmailAddress1", - "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" - }, - { - "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", - "label": "Continuation of electronic monitoring", - "promptRef": "continuationOfElectronicMonitoring", - "value": "true" - }, - { - "id": "f6ca6307-bdab-42d3-968b-44485824b535", - "label": "Are there any additional requirements as well?", - "promptRef": "areThereAnyAdditionalRequirementsAsWell", - "value": "false" - }, - { - "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", - "label": "Was an interpreter used?", - "promptRef": "wasAnInterpreterUsed", - "value": "false" - }, - { - "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", - "label": "Does the offender have any special needs?", - "promptRef": "doesTheOffenderHaveAnySpecialNeeds", - "value": "false" - } - ], - "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", - "resultLabel": "Notification of electronic monitoring order (requirement)", - "resultLineId": "54498bd6-5474-4103-a9c3-b13a3371d338", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "nordrc" - }, - { - "amendmentDate": "2025-08-27T17:06:57.511Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T17:06:57.511Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T17:07:41.900Z\"}]}", - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "category": "A", - "childResultLineIds": [], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "97bc9ae8-69f3-4271-82e1-02a5c402b15f" - ], - "prompts": [ - { - "id": "72413aef-ecb9-4e9b-a143-31d1e9c11584", - "label": "Number of hours", - "promptRef": "numberOfHours", - "value": "10 Hours" - } - ], - "resultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", - "resultLabel": "Unpaid work. Requirement to be completed within 12 months.", - "resultLineId": "bd01656f-b7f7-4c8b-9b5e-84c6d4794e5c", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "upwr" - } - ], - "shadowListed": false, - "targetId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82" - } - ], - "savedTargets": [ - { - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "draftResult": "{}", - "hearingDay": "2025-08-27", - "hearingId": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "resultLines": [ - { - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "category": "F", - "childResultLineIds": [ - "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", - "97bc9ae8-69f3-4271-82e1-02a5c402b15f" - ], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label": "End Date", - "promptRef": "endDate", - "value": "2025-12-12" - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "promptRef": "responsibleOfficer", - "value": "an officer of a provider of probation services" - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "promptRef": "supervisingCourt", - "value": "Aberystwyth Magistrates' Court" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", - "promptRef": "probationteamtobenotifiedOrganisationName", - "value": "Midlands Division NPS" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", - "promptRef": "probationteamtobenotifiedEmailAddress1", - "value": "midlandsnps.court@justice.gov.uk" - } - ], - "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", - "resultLabel": "Community order England / Wales", - "resultLineId": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "coew" - }, - { - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "category": "I", - "childResultLineIds": [ - "54498bd6-5474-4103-a9c3-b13a3371d338" - ], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "24936f69-8fcd-492c-8a34-fb3bff18e8a2" - ], - "prompts": [], - "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "resultLabel": "Is electronic monitoring required", - "resultLineId": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "emreq" - }, - { - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "category": "A", - "childResultLineIds": [ - "2f459f7c-5217-4cf7-8899-95e94c38b0fb" - ], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "24936f69-8fcd-492c-8a34-fb3bff18e8a2" - ], - "prompts": [], - "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "resultLabel": "Community requirements", - "resultLineId": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "crs" - }, - { - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "category": "A", - "childResultLineIds": [], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3" - ], - "prompts": [ - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor organisation name", - "promptRef": "electronicmonitoringcontractorOrganisationName", - "value": "G4S Scotland Monitoring Technologies & Services" - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor email address 1", - "promptRef": "electronicmonitoringcontractorEmailAddress1", - "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" - }, - { - "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", - "label": "Continuation of electronic monitoring", - "promptRef": "continuationOfElectronicMonitoring", - "value": "true" - }, - { - "id": "f6ca6307-bdab-42d3-968b-44485824b535", - "label": "Are there any additional requirements as well?", - "promptRef": "areThereAnyAdditionalRequirementsAsWell", - "value": "false" - }, - { - "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", - "label": "Was an interpreter used?", - "promptRef": "wasAnInterpreterUsed", - "value": "false" - }, - { - "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", - "label": "Does the offender have any special needs?", - "promptRef": "doesTheOffenderHaveAnySpecialNeeds", - "value": "false" - } - ], - "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", - "resultLabel": "Notification of electronic monitoring order (requirement)", - "resultLineId": "54498bd6-5474-4103-a9c3-b13a3371d338", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "nordrc" - }, - { - "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", - "category": "A", - "childResultLineIds": [], - "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "97bc9ae8-69f3-4271-82e1-02a5c402b15f" - ], - "prompts": [ - { - "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label": "Medical practitioner / Psychologist", - "promptRef": "medicalPractitionerPsychologist", - "value": "test" - }, - { - "id": "fb580537-9d36-4139-811b-77af09547b0d", - "label": "Care home / Hospital", - "promptRef": "careHomeHospital", - "value": "test" - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "promptRef": "periodOfTreatment", - "value": "2 Months" - } - ], - "resultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "resultLabel": "Mental health treatment non-residential patient", - "resultLineId": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "mhtrnr" - } - ], - "shadowListed": false, - "targetId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82" - } - ], - "defendantDetailsChanged": [], - "isReshare": true, - "newAmendmentResults": [ - { - "id": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", - "amendmentDateTime": "2025-08-27T17:06:57.511Z" - }, - { - "id": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", - "amendmentDateTime": "2025-08-27T17:06:57.511Z" - }, - { - "id": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", - "amendmentDateTime": "2025-08-27T17:06:57.511Z" - }, - { - "id": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", - "amendmentDateTime": "2025-08-27T17:06:57.511Z" - }, - { - "id": "54498bd6-5474-4103-a9c3-b13a3371d338", - "amendmentDateTime": "2025-08-27T17:06:57.511Z" - }, - { - "id": "bd01656f-b7f7-4c8b-9b5e-84c6d4794e5c", - "amendmentDateTime": "2025-08-27T17:06:57.511Z" - } - ], - "hearingDay": "2025-08-27", - "version": 13 -} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json deleted file mode 100644 index dc09e22378..0000000000 --- a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json +++ /dev/null @@ -1,1633 +0,0 @@ -{ - "hearingId": "e7471522-d1e4-4293-bddf-bb96c38c92ef", - "sharedTime": "2025-08-27T16:01:59.115Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - }, - "hearing": { - "courtCentre": { - "address": { - "address1": "176A Lavender Hill", - "address2": "London", - "address3": "", - "address4": "", - "address5": "", - "postcode": "SW11 1JU" - }, - "code": "B01LY00", - "courtHearingLocation": "B01LY01", - "id": "f8254db1-1683-483e-afb3-b87fde5a0a26", - "lja": { - "ljaCode": "2577", - "ljaName": "South West London Magistrates' Court" - }, - "name": "Lavender Hill Magistrates' Court", - "roomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", - "roomName": "Courtroom 01" - }, - "defendantAttendance": [ - { - "attendanceDays": [ - { - "attendanceType": "IN_PERSON", - "day": "2025-08-27" - } - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f" - } - ], - "hasSharedResults": true, - "hearingDays": [ - { - "courtCentreId": "f8254db1-1683-483e-afb3-b87fde5a0a26", - "courtRoomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", - "hasSharedResults": true, - "isCancelled": false, - "listedDurationMinutes": 20, - "listingSequence": 0, - "sittingDay": "2025-08-27T20:30:00.000Z" - } - ], - "hearingLanguage": "ENGLISH", - "id": "e7471522-d1e4-4293-bddf-bb96c38c92ef", - "isGroupProceedings": false, - "jurisdictionType": "MAGISTRATES", - "prosecutionCases": [ - { - "caseStatus": "ACTIVE", - "cpsOrganisation": "A30AB00", - "defendants": [ - { - "courtProceedingsInitiated": "2025-08-27T15:17:34.427Z", - "id": "686e785b-105e-41a5-b22a-a689843d051f", - "isYouth": false, - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "offences": [ - { - "arrestDate": "2020-12-01", - "chargeDate": "2020-12-02", - "count": 0, - "endorsableFlag": false, - "id": "6910c878-e945-4177-b15f-f619b2bc7dae", - "listingNumber": 1, - "modeOfTrial": "Either Way", - "offenceCode": "MD71521", - "offenceDateCode": 1, - "offenceDefinitionId": "734ad209-e52b-4df1-aca0-3b1c90e58ef7", - "offenceLegislation": "Contrary to section 5(2) of and Schedule 4 to the Misuse of Drugs Act 1971.", - "offenceTitle": "Possess a controlled drug of Class B - cannabis resin", - "orderIndex": 1, - "startDate": "2019-11-28", - "wording": "From 13th November 2018, an aggravated version of this offence applies where the offence is committed against an emergency worker acting in the exercise of his / her functions as such a worker, as per section 1 of the Assaults on emergency Workers (Offences) Act 2018; see offence wording document H19568." - } - ], - "personDefendant": { - "arrestSummonsNumber": "E28GC19102022001", - "bailStatus": { - "code": "C", - "description": "Custody", - "id": "12e69486-4d01-3403-a50a-7419ca040635" - }, - "driverNumber": "CRIME709136TC8GZ", - "personDetails": { - "address": { - "address1": "c", - "address2": "Hugh Parkway", - "address3": "Hermannside", - "address4": "Avon", - "postcode": "DA6 7ND" - }, - "contact": { - "home": "873-655-0683" - }, - "dateOfBirth": "2000-07-20", - "documentationLanguageNeeds": "ENGLISH", - "ethnicity": { - "observedEthnicityCode": "1", - "observedEthnicityDescription": "White", - "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", - "selfDefinedEthnicityCode": "W1", - "selfDefinedEthnicityDescription": "British", - "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" - }, - "firstName": "Casper", - "gender": "FEMALE", - "hearingLanguageNeeds": "ENGLISH", - "lastName": "Daugherty", - "title": "Mr" - }, - "policeBailStatus": { - "code": "C", - "description": "Custody", - "id": "12e69486-4d01-3403-a50a-7419ca040635" - } - }, - "prosecutionAuthorityReference": "E28GC19102022001", - "prosecutionCaseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2" - } - ], - "id": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "initiationCode": "C", - "originatingOrganisation": "0300000", - "prosecutionCaseIdentifier": { - "address": { - "address1": "Criminal Justice Department", - "address2": "Derbyshire Constabulary", - "address3": "Butterley Hall", - "address4": "Ripley", - "address5": "Derby", - "postcode": "DE5 3RS" - }, - "contact": { - "primaryEmail": "criminaldataderbyshire@derbyshire.police.uk" - }, - "majorCreditorCode": "PO30", - "prosecutionAuthorityCode": "DERPF", - "prosecutionAuthorityId": "bdc190e7-c939-37ca-be4b-9f615d6ef40e", - "prosecutionAuthorityName": "Derbyshire Police", - "prosecutionAuthorityOUCode": "0300000", - "caseURN": "70FF1811170" - } - } - ], - "type": { - "description": "First hearing", - "id": "4a0e892d-c0c5-3c51-95b8-704d8c781776" - } - }, - "variantDirectory": [], - "completedResultLinesStatus": { - "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d": { - "id": "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d", - "lastSharedDateTime": "2025-08-27T15:20:01.219Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "3430f158-2e5f-4ebf-8f1e-9570f6f35270": { - "id": "3430f158-2e5f-4ebf-8f1e-9570f6f35270", - "lastSharedDateTime": "2025-08-27T15:20:01.219Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "b249a83e-e309-4bf0-96cd-7d3535bae70b": { - "id": "b249a83e-e309-4bf0-96cd-7d3535bae70b", - "lastSharedDateTime": "2025-08-27T15:20:01.219Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057": { - "id": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", - "lastSharedDateTime": "2025-08-27T15:45:16.622Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - } - }, - "bb58dbef-c2a1-4473-a34c-eb5570a188b1": { - "id": "bb58dbef-c2a1-4473-a34c-eb5570a188b1", - "lastSharedDateTime": "2025-08-27T15:47:40.318Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - } - }, - "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6": { - "id": "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6", - "lastSharedDateTime": "2025-08-27T15:47:40.318Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - } - }, - "0a9fd761-8dfd-4ea2-8bdd-35974021dc45": { - "id": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", - "lastSharedDateTime": "2025-08-27T15:45:16.622Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - } - }, - "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7": { - "id": "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7", - "lastSharedDateTime": "2025-08-27T15:20:01.219Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "bb477cfe-abbb-418c-b148-0ca9edfffc41": { - "id": "bb477cfe-abbb-418c-b148-0ca9edfffc41", - "lastSharedDateTime": "2025-08-27T15:47:40.318Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - } - }, - "cffb881f-9c55-423e-99f4-683d6da08a14": { - "id": "cffb881f-9c55-423e-99f4-683d6da08a14", - "lastSharedDateTime": "2025-08-27T15:45:16.622Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - } - }, - "32ae2771-7103-4558-aaec-2ca575dc74a7": { - "id": "32ae2771-7103-4558-aaec-2ca575dc74a7", - "lastSharedDateTime": "2025-08-27T15:45:16.622Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - } - }, - "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80": { - "id": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", - "lastSharedDateTime": "2025-08-27T15:45:16.622Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - } - }, - "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb": { - "id": "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb", - "lastSharedDateTime": "2025-08-27T15:20:01.219Z", - "courtClerk": { - "firstName": "Erica", - "lastName": "Wilson", - "userId": "a085e359-6069-4694-8820-7810e7dfe762" - } - }, - "220f8b93-1add-4de7-89d0-e505801a10d7": { - "id": "220f8b93-1add-4de7-89d0-e505801a10d7", - "lastSharedDateTime": "2025-08-27T15:45:16.622Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - } - }, - "8ac5068c-dc0c-4a28-a3ca-9365dd349f49": { - "id": "8ac5068c-dc0c-4a28-a3ca-9365dd349f49", - "lastSharedDateTime": "2025-08-27T15:47:40.318Z", - "courtClerk": { - "firstName": "Emma", - "lastName": "Cleaner", - "userId": "2781b565-4514-4805-8744-a3e827f0f611" - } - } - }, - "targets": [ - { - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "draftResult": "{}", - "hearingDay": "2025-08-27", - "hearingId": "e7471522-d1e4-4293-bddf-bb96c38c92ef", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "resultLines": [ - { - "amendmentDate": "2025-08-27T15:20:43.907Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label": "End Date", - "promptRef": "endDate", - "value": "2025-12-12" - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "promptRef": "responsibleOfficer", - "value": "a probation officer" - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "promptRef": "supervisingCourt", - "value": "Aberystwyth Magistrates' Court" - }, - { - "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", - "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", - "promptRef": "persistentOffenderPreviouslyFined", - "value": "test" - }, - { - "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", - "label": "Judge reserves breach proceedings", - "promptRef": "judgeReservesBreachProceedings", - "value": "false" - }, - { - "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", - "label": "Direction that a failure to comply be dealt with by magistrates' court", - "promptRef": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", - "value": "false" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", - "promptRef": "probationteamtobenotifiedOrganisationName", - "value": "Midlands Division NPS" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", - "promptRef": "probationteamtobenotifiedEmailAddress1", - "value": "midlandsnps.court@justice.gov.uk" - } - ], - "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", - "resultLabel": "Community order England / Wales", - "resultLineId": "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "coew" - }, - { - "amendmentDate": "2025-08-27T15:20:43.907Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [], - "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "resultLabel": "Community requirements", - "resultLineId": "b249a83e-e309-4bf0-96cd-7d3535bae70b", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "crs" - }, - { - "amendmentDate": "2025-08-27T15:20:43.907Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "promptRef": "startDate", - "value": "2025-08-10" - }, - { - "id": "6dd7348a-29e8-4487-a956-ae07d7fe7668", - "label": "End date", - "promptRef": "endDate", - "value": "2025-12-12" - }, - { - "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label": "Defendant to remain at", - "promptRef": "curfewAddressDetailsAndTimings", - "value": "test1" - }, - { - "id": "e5b96ed6-7ec0-464d-a698-62bc94a7f52f", - "label": "Details and timings", - "promptRef": "detailsAndTimings", - "value": "test2" - } - ], - "resultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "resultLabel": "Further curfew requirement made", - "resultLineId": "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "cura" - }, - { - "amendmentDate": "2025-08-27T15:20:43.907Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "I", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [], - "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "resultLabel": "Is electronic monitoring required", - "resultLineId": "3430f158-2e5f-4ebf-8f1e-9570f6f35270", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "emreq" - }, - { - "amendmentDate": "2025-08-27T15:20:43.907Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor organisation name", - "promptRef": "electronicmonitoringcontractorOrganisationName", - "value": "G4S Scotland Monitoring Technologies & Services" - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor email address 1", - "promptRef": "electronicmonitoringcontractorEmailAddress1", - "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" - }, - { - "id": "5ce30920-b300-471c-8fd7-67f3a193476a", - "label": "First notification of electronic monitoring", - "promptRef": "firstNotificationOfElectronicMonitoring", - "value": "true" - }, - { - "id": "f6ca6307-bdab-42d3-968b-44485824b535", - "label": "Are there any additional requirements as well?", - "promptRef": "areThereAnyAdditionalRequirementsAsWell", - "value": "false" - }, - { - "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", - "label": "Was an interpreter used?", - "promptRef": "wasAnInterpreterUsed", - "value": "false" - }, - { - "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", - "label": "Does the offender have any special needs?", - "promptRef": "doesTheOffenderHaveAnySpecialNeeds", - "value": "false" - } - ], - "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", - "resultLabel": "Notification of electronic monitoring order (requirement)", - "resultLineId": "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "nordrc" - }, - { - "amendmentDate": "2025-08-27T16:00:26.502Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [ - "cffb881f-9c55-423e-99f4-683d6da08a14", - "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", - "32ae2771-7103-4558-aaec-2ca575dc74a7" - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", - "label": "Amount of fine", - "promptRef": "AOF", - "value": "200.00" - } - ], - "resultDefinitionId": "969f150c-cd05-46b0-9dd9-30891efcc766", - "resultLabel": "Fine", - "resultLineId": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "fo" - }, - { - "amendmentDate": "2025-08-27T16:00:26.502Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" - ], - "prompts": [ - { - "id": "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", - "label": "Reason for no collection order", - "promptRef": "reasonForNoCollectionOrder", - "value": "impracticable" - } - ], - "resultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", - "resultLabel": "No collection order reason", - "resultLineId": "cffb881f-9c55-423e-99f4-683d6da08a14", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "nocollo" - }, - { - "amendmentDate": "2025-08-27T16:00:26.502Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" - ], - "prompts": [], - "resultDefinitionId": "cfa66730-f81c-4768-a36e-581791cb0270", - "resultLabel": "Has a collection order been made?", - "resultLineId": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "collom" - }, - { - "amendmentDate": "2025-08-27T16:00:26.502Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [ - "065c3bb0-94e4-453a-acf4-240c514c126c" - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" - ], - "prompts": [], - "resultDefinitionId": "3d742a7e-37a6-453c-bb6f-5e023bb19453", - "resultLabel": "Payment Method", - "resultLineId": "32ae2771-7103-4558-aaec-2ca575dc74a7", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "pm" - }, - { - "amendmentDate": "2025-08-27T16:00:26.502Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"},{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": true, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [], - "resultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", - "resultLabel": "Payment terms", - "resultLineId": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "payt" - }, - { - "amendmentDate": "2025-08-27T16:00:26.502Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"},{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": true, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "ee7d253a-c629-11e8-a355-529269fb1459", - "label": "Date to pay in full by", - "promptRef": "PBD", - "value": "2025-12-12" - } - ], - "resultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", - "resultLabel": "Pay by date", - "resultLineId": "220f8b93-1add-4de7-89d0-e505801a10d7", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "pdate" - }, - { - "amendmentDate": "2025-08-27T15:45:56.846Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[{\"type\":\"DATE\",\"label\":\"End Date\",\"value\":\"2025-11-11\",\"promptId\":\"d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9\",\"promptRef\":\"endDate\"},{\"type\":\"FIXL\",\"label\":\"Responsible officer\",\"value\":\"the officer in charge of the Attendance Centre\",\"promptId\":\"29f5b3c7-8d15-4606-9dcf-23f32a21b5ef\",\"promptRef\":\"responsibleOfficer\"}]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [ - "bb58dbef-c2a1-4473-a34c-eb5570a188b1", - "bb477cfe-abbb-418c-b148-0ca9edfffc41" - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label": "End Date", - "promptRef": "endDate", - "value": "2025-11-11" - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "promptRef": "responsibleOfficer", - "value": "the officer in charge of the Attendance Centre" - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "promptRef": "supervisingCourt", - "value": "Aberystwyth Magistrates' Court" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", - "promptRef": "probationteamtobenotifiedOrganisationName", - "value": "Midlands Division NPS" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", - "promptRef": "probationteamtobenotifiedEmailAddress1", - "value": "midlandsnps.court@justice.gov.uk" - } - ], - "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", - "resultLabel": "Community order England / Wales", - "resultLineId": "8ac5068c-dc0c-4a28-a3ca-9365dd349f49", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "coew" - }, - { - "amendmentDate": "2025-08-27T15:45:56.846Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [ - "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6" - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" - ], - "prompts": [], - "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "resultLabel": "Community requirements", - "resultLineId": "bb58dbef-c2a1-4473-a34c-eb5570a188b1", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "crs" - }, - { - "amendmentDate": "2025-08-27T15:45:56.846Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "I", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" - ], - "prompts": [], - "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "resultLabel": "Is electronic monitoring required", - "resultLineId": "bb477cfe-abbb-418c-b148-0ca9edfffc41", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "emreq" - }, - { - "amendmentDate": "2025-08-27T15:45:56.846Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "bb58dbef-c2a1-4473-a34c-eb5570a188b1" - ], - "prompts": [ - { - "id": "f092fe58-2297-4d10-818a-8b303692ac39", - "label": "Under direction of", - "promptRef": "underDirectionOf", - "value": "test" - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "promptRef": "periodOfTreatment", - "value": "2 Months" - } - ], - "resultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "resultLabel": "Alcohol treatment", - "resultLineId": "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "atr" - }, - { - "amendmentDate": "2025-08-27T16:00:26.502Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [ - "886f3820-ce92-4e35-8222-b13ee2849a83" - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "32ae2771-7103-4558-aaec-2ca575dc74a7" - ], - "prompts": [], - "resultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", - "resultLabel": "Application made for benefit deductions", - "resultLineId": "065c3bb0-94e4-453a-acf4-240c514c126c", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "abdc" - }, - { - "amendmentDate": "2025-08-27T16:00:26.502Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "I", - "childResultLineIds": [ - "ace3472e-e554-419d-833d-58e475369166" - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "065c3bb0-94e4-453a-acf4-240c514c126c" - ], - "prompts": [], - "resultDefinitionId": "4871697d-6dd1-4da2-8894-707e6b13c361", - "resultLabel": "Reserve Terms", - "resultLineId": "886f3820-ce92-4e35-8222-b13ee2849a83", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "rt" - }, - { - "amendmentDate": "2025-08-27T16:00:26.502Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "886f3820-ce92-4e35-8222-b13ee2849a83" - ], - "prompts": [ - { - "id": "c131cab0-5dd6-11e8-9c2d-fa7ae01bbebc", - "label": "Pay lump sum in full within", - "promptRef": "LSPW", - "value": "28 days" - } - ], - "resultDefinitionId": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", - "resultLabel": "Reserve Terms Lump sum", - "resultLineId": "ace3472e-e554-419d-833d-58e475369166", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "rlsum" - } - ], - "shadowListed": false, - "targetId": "6910c878-e945-4177-b15f-f619b2bc7dae" - } - ], - "savedTargets": [ - { - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "draftResult": "{}", - "hearingDay": "2025-08-27", - "hearingId": "e7471522-d1e4-4293-bddf-bb96c38c92ef", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "resultLines": [ - { - "amendmentDate": "2025-08-27T15:20:43.907Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label": "End Date", - "promptRef": "endDate", - "value": "2025-12-12" - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "promptRef": "responsibleOfficer", - "value": "a probation officer" - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "promptRef": "supervisingCourt", - "value": "Aberystwyth Magistrates' Court" - }, - { - "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", - "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", - "promptRef": "persistentOffenderPreviouslyFined", - "value": "test" - }, - { - "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", - "label": "Judge reserves breach proceedings", - "promptRef": "judgeReservesBreachProceedings", - "value": "false" - }, - { - "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", - "label": "Direction that a failure to comply be dealt with by magistrates' court", - "promptRef": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", - "value": "false" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", - "promptRef": "probationteamtobenotifiedOrganisationName", - "value": "Midlands Division NPS" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", - "promptRef": "probationteamtobenotifiedEmailAddress1", - "value": "midlandsnps.court@justice.gov.uk" - } - ], - "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", - "resultLabel": "Community order England / Wales", - "resultLineId": "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "coew" - }, - { - "amendmentDate": "2025-08-27T15:20:43.907Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [], - "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "resultLabel": "Community requirements", - "resultLineId": "b249a83e-e309-4bf0-96cd-7d3535bae70b", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "crs" - }, - { - "amendmentDate": "2025-08-27T15:20:43.907Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "promptRef": "startDate", - "value": "2025-08-10" - }, - { - "id": "6dd7348a-29e8-4487-a956-ae07d7fe7668", - "label": "End date", - "promptRef": "endDate", - "value": "2025-12-12" - }, - { - "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label": "Defendant to remain at", - "promptRef": "curfewAddressDetailsAndTimings", - "value": "test1" - }, - { - "id": "e5b96ed6-7ec0-464d-a698-62bc94a7f52f", - "label": "Details and timings", - "promptRef": "detailsAndTimings", - "value": "test2" - } - ], - "resultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "resultLabel": "Further curfew requirement made", - "resultLineId": "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "cura" - }, - { - "amendmentDate": "2025-08-27T15:20:43.907Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "I", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [], - "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "resultLabel": "Is electronic monitoring required", - "resultLineId": "3430f158-2e5f-4ebf-8f1e-9570f6f35270", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "emreq" - }, - { - "amendmentDate": "2025-08-27T15:20:43.907Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": true, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor organisation name", - "promptRef": "electronicmonitoringcontractorOrganisationName", - "value": "G4S Scotland Monitoring Technologies & Services" - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor email address 1", - "promptRef": "electronicmonitoringcontractorEmailAddress1", - "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" - }, - { - "id": "5ce30920-b300-471c-8fd7-67f3a193476a", - "label": "First notification of electronic monitoring", - "promptRef": "firstNotificationOfElectronicMonitoring", - "value": "true" - }, - { - "id": "f6ca6307-bdab-42d3-968b-44485824b535", - "label": "Are there any additional requirements as well?", - "promptRef": "areThereAnyAdditionalRequirementsAsWell", - "value": "false" - }, - { - "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", - "label": "Was an interpreter used?", - "promptRef": "wasAnInterpreterUsed", - "value": "false" - }, - { - "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", - "label": "Does the offender have any special needs?", - "promptRef": "doesTheOffenderHaveAnySpecialNeeds", - "value": "false" - } - ], - "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", - "resultLabel": "Notification of electronic monitoring order (requirement)", - "resultLineId": "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "nordrc" - }, - { - "amendmentDate": "2025-08-27T15:44:07.122Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [ - "cffb881f-9c55-423e-99f4-683d6da08a14", - "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", - "32ae2771-7103-4558-aaec-2ca575dc74a7" - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": false, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", - "label": "Amount of fine", - "promptRef": "AOF", - "value": "200.00" - } - ], - "resultDefinitionId": "969f150c-cd05-46b0-9dd9-30891efcc766", - "resultLabel": "Fine", - "resultLineId": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "fo" - }, - { - "amendmentDate": "2025-08-27T15:44:07.122Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": false, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" - ], - "prompts": [ - { - "id": "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", - "label": "Reason for no collection order", - "promptRef": "reasonForNoCollectionOrder", - "value": "impracticable" - } - ], - "resultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", - "resultLabel": "No collection order reason", - "resultLineId": "cffb881f-9c55-423e-99f4-683d6da08a14", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "nocollo" - }, - { - "amendmentDate": "2025-08-27T15:44:07.122Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": false, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" - ], - "prompts": [], - "resultDefinitionId": "cfa66730-f81c-4768-a36e-581791cb0270", - "resultLabel": "Has a collection order been made?", - "resultLineId": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "collom" - }, - { - "amendmentDate": "2025-08-27T15:44:07.122Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [ - "0a9fd761-8dfd-4ea2-8bdd-35974021dc45" - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": false, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" - ], - "prompts": [], - "resultDefinitionId": "3d742a7e-37a6-453c-bb6f-5e023bb19453", - "resultLabel": "Payment Method", - "resultLineId": "32ae2771-7103-4558-aaec-2ca575dc74a7", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "pm" - }, - { - "amendmentDate": "2025-08-27T15:44:07.122Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [ - "220f8b93-1add-4de7-89d0-e505801a10d7" - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": false, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "32ae2771-7103-4558-aaec-2ca575dc74a7" - ], - "prompts": [], - "resultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", - "resultLabel": "Payment terms", - "resultLineId": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "payt" - }, - { - "amendmentDate": "2025-08-27T15:44:07.122Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": false, - "level": "DEFENDANT", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "0a9fd761-8dfd-4ea2-8bdd-35974021dc45" - ], - "prompts": [ - { - "id": "ee7d253a-c629-11e8-a355-529269fb1459", - "label": "Date to pay in full by", - "promptRef": "PBD", - "value": "2025-12-12" - } - ], - "resultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", - "resultLabel": "Pay by date", - "resultLineId": "220f8b93-1add-4de7-89d0-e505801a10d7", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "pdate" - }, - { - "amendmentDate": "2025-08-27T15:45:56.846Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[{\"type\":\"DATE\",\"label\":\"End Date\",\"value\":\"2025-11-11\",\"promptId\":\"d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9\",\"promptRef\":\"endDate\"},{\"type\":\"FIXL\",\"label\":\"Responsible officer\",\"value\":\"the officer in charge of the Attendance Centre\",\"promptId\":\"29f5b3c7-8d15-4606-9dcf-23f32a21b5ef\",\"promptRef\":\"responsibleOfficer\"}],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "F", - "childResultLineIds": [ - "bb58dbef-c2a1-4473-a34c-eb5570a188b1", - "bb477cfe-abbb-418c-b148-0ca9edfffc41" - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "prompts": [ - { - "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label": "End Date", - "promptRef": "endDate", - "value": "2025-11-11" - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "promptRef": "responsibleOfficer", - "value": "the officer in charge of the Attendance Centre" - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "promptRef": "supervisingCourt", - "value": "Aberystwyth Magistrates' Court" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", - "promptRef": "probationteamtobenotifiedOrganisationName", - "value": "Midlands Division NPS" - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", - "promptRef": "probationteamtobenotifiedEmailAddress1", - "value": "midlandsnps.court@justice.gov.uk" - } - ], - "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", - "resultLabel": "Community order England / Wales", - "resultLineId": "8ac5068c-dc0c-4a28-a3ca-9365dd349f49", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "coew" - }, - { - "amendmentDate": "2025-08-27T15:45:56.846Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [ - "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6" - ], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" - ], - "prompts": [], - "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "resultLabel": "Community requirements", - "resultLineId": "bb58dbef-c2a1-4473-a34c-eb5570a188b1", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "crs" - }, - { - "amendmentDate": "2025-08-27T15:45:56.846Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "I", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" - ], - "prompts": [], - "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "resultLabel": "Is electronic monitoring required", - "resultLineId": "bb477cfe-abbb-418c-b148-0ca9edfffc41", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "emreq" - }, - { - "amendmentDate": "2025-08-27T15:45:56.846Z", - "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", - "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", - "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", - "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", - "category": "A", - "childResultLineIds": [], - "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "isComplete": true, - "isDeleted": false, - "isModified": true, - "level": "OFFENCE", - "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", - "nonStandaloneAncillaryResult": false, - "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", - "orderedDate": "2025-08-27", - "parentResultLineIds": [ - "bb58dbef-c2a1-4473-a34c-eb5570a188b1" - ], - "prompts": [ - { - "id": "f092fe58-2297-4d10-818a-8b303692ac39", - "label": "Under direction of", - "promptRef": "underDirectionOf", - "value": "test" - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "promptRef": "periodOfTreatment", - "value": "2 Months" - } - ], - "resultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "resultLabel": "Alcohol treatment", - "resultLineId": "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6", - "shadowListed": false, - "sharedDate": "2025-08-27", - "shortCode": "atr" - } - ], - "shadowListed": false, - "targetId": "6910c878-e945-4177-b15f-f619b2bc7dae" - } - ], - "defendantDetailsChanged": [], - "isReshare": true, - "newAmendmentResults": [ - { - "id": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", - "amendmentDateTime": "2025-08-27T16:00:26.502Z" - }, - { - "id": "cffb881f-9c55-423e-99f4-683d6da08a14", - "amendmentDateTime": "2025-08-27T16:00:26.502Z" - }, - { - "id": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", - "amendmentDateTime": "2025-08-27T16:00:26.502Z" - }, - { - "id": "32ae2771-7103-4558-aaec-2ca575dc74a7", - "amendmentDateTime": "2025-08-27T16:00:26.502Z" - }, - { - "id": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", - "amendmentDateTime": "2025-08-27T16:00:26.502Z" - }, - { - "id": "220f8b93-1add-4de7-89d0-e505801a10d7", - "amendmentDateTime": "2025-08-27T16:00:26.502Z" - }, - { - "id": "065c3bb0-94e4-453a-acf4-240c514c126c", - "amendmentDateTime": "2025-08-27T16:00:26.502Z" - }, - { - "id": "886f3820-ce92-4e35-8222-b13ee2849a83", - "amendmentDateTime": "2025-08-27T16:00:26.502Z" - }, - { - "id": "ace3472e-e554-419d-833d-58e475369166", - "amendmentDateTime": "2025-08-27T16:00:26.502Z" - } - ], - "hearingDay": "2025-08-27", - "version": 37 -} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json b/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json index 64f88b39bd..0151a921c3 100644 --- a/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json +++ b/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json @@ -22,6 +22,7 @@ "Review" ], "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "C", @@ -38,6 +39,7 @@ "financial": "N", "reference": "hCHOUSEOrganisationName", "userGroups": [ + ], "min": "", "max": "", @@ -61,6 +63,7 @@ "financial": "N", "reference": "hCHOUSEAddress1", "userGroups": [ + ], "min": "", "max": "", @@ -84,6 +87,7 @@ "financial": "N", "reference": "hCHOUSEAddress2", "userGroups": [ + ], "min": "", "max": "", @@ -107,6 +111,7 @@ "financial": "N", "reference": "hCHOUSEAddress3", "userGroups": [ + ], "min": "", "max": "", @@ -130,6 +135,7 @@ "financial": "N", "reference": "hCHOUSEAddress4", "userGroups": [ + ], "min": "", "max": "", @@ -153,6 +159,7 @@ "financial": "N", "reference": "hCHOUSEAddress5", "userGroups": [ + ], "min": "", "max": "", @@ -176,6 +183,7 @@ "financial": "N", "reference": "hCHOUSEPostCode", "userGroups": [ + ], "min": "", "max": "", @@ -199,6 +207,7 @@ "financial": "N", "reference": "hCHOUSEEmailAddress1", "userGroups": [ + ], "min": "", "max": "", @@ -222,6 +231,7 @@ "financial": "N", "reference": "hCHOUSEEmailAddress2", "userGroups": [ + ], "min": "", "max": "", @@ -246,6 +256,7 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -254,23 +265,20 @@ "associatedWithReferenceData": false }, { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HTYPE", - "courtExtract": "Y", - "durationSequence": null + "id" : "c1116d12-dd35-4171-807a-2cb845357d22", + "label" : "Hearing type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HTYPE", + "courtExtract" : "Y", + "durationSequence" : null }, { "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", @@ -282,6 +290,7 @@ "financial": "N", "reference": "timeOfHearing", "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -299,6 +308,7 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ + ], "min": "1", "max": "99", @@ -319,6 +329,7 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ + ], "min": "1", "max": "50", @@ -338,6 +349,7 @@ "financial": "N", "reference": "defendantToAttendReview", "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -407,6 +419,7 @@ "Years" ], "userGroups": [ + ], "min": "1", "max": "1", @@ -431,6 +444,7 @@ "Months" ], "userGroups": [ + ], "min": "1", "max": "1", @@ -455,6 +469,7 @@ "Attend" ], "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -475,6 +490,7 @@ "Review" ], "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "C", @@ -491,6 +507,7 @@ "financial": "N", "reference": "courthousenameOrganisationName", "userGroups": [ + ], "min": "1", "max": "100", @@ -514,6 +531,7 @@ "financial": "N", "reference": "courthousenameAddress1", "userGroups": [ + ], "min": "1", "max": "100", @@ -537,6 +555,7 @@ "financial": "N", "reference": "courthousenameAddress2", "userGroups": [ + ], "min": "1", "max": "100", @@ -560,6 +579,7 @@ "financial": "N", "reference": "courthousenameAddress3", "userGroups": [ + ], "min": "1", "max": "100", @@ -583,6 +603,7 @@ "financial": "N", "reference": "courthousenameAddress4", "userGroups": [ + ], "min": "1", "max": "100", @@ -606,6 +627,7 @@ "financial": "N", "reference": "courthousenameAddress5", "userGroups": [ + ], "min": "1", "max": "100", @@ -629,6 +651,7 @@ "financial": "N", "reference": "courthousenamePostCode", "userGroups": [ + ], "min": "1", "max": "100", @@ -652,6 +675,7 @@ "financial": "N", "reference": "courthousenameEmailAddress1", "userGroups": [ + ], "min": "1", "max": "100", @@ -675,6 +699,7 @@ "financial": "N", "reference": "courthousenameEmailAddress2", "userGroups": [ + ], "min": "1", "max": "100", @@ -699,6 +724,7 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ + ], "min": "1", "max": "70", @@ -718,6 +744,7 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ + ], "min": "1", "max": "99", @@ -738,6 +765,7 @@ "financial": "N", "reference": "underDirectionOf", "userGroups": [ + ], "min": "1", "max": "50", @@ -757,6 +785,7 @@ "financial": "N", "reference": "treatmentPlace", "userGroups": [ + ], "min": "1", "max": "200", @@ -776,6 +805,7 @@ "financial": "N", "reference": "firstReviewTime", "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -793,6 +823,7 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -801,24 +832,22 @@ "associatedWithReferenceData": false }, { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HTYPE", - "courtExtract": "Y", - "durationSequence": null + "id" : "c1116d12-dd35-4171-807a-2cb845357d22", + "label" : "Hearing type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HTYPE", + "courtExtract" : "Y", + "durationSequence" : null } + ], "welshLabel": "Adsefydlu defnyddiwr cyffuriau - preswyl gydag adolygiad", "financial": "N", @@ -881,6 +910,7 @@ "Years" ], "userGroups": [ + ], "min": "1", "max": "1", @@ -905,6 +935,7 @@ "Months" ], "userGroups": [ + ], "min": "1", "max": "1", @@ -929,6 +960,7 @@ "Attend" ], "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -949,6 +981,7 @@ "Review" ], "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "C", @@ -965,6 +998,7 @@ "financial": "N", "reference": "courthousenameOrganisationName", "userGroups": [ + ], "min": "1", "max": "100", @@ -988,6 +1022,7 @@ "financial": "N", "reference": "courthousenameAddress1", "userGroups": [ + ], "min": "1", "max": "100", @@ -1011,6 +1046,7 @@ "financial": "N", "reference": "courthousenameAddress2", "userGroups": [ + ], "min": "1", "max": "100", @@ -1034,6 +1070,7 @@ "financial": "N", "reference": "courthousenameAddress3", "userGroups": [ + ], "min": "1", "max": "100", @@ -1057,6 +1094,7 @@ "financial": "N", "reference": "courthousenameAddress4", "userGroups": [ + ], "min": "1", "max": "100", @@ -1080,6 +1118,7 @@ "financial": "N", "reference": "courthousenameAddress5", "userGroups": [ + ], "min": "1", "max": "100", @@ -1103,6 +1142,7 @@ "financial": "N", "reference": "courthousenamePostCode", "userGroups": [ + ], "min": "1", "max": "100", @@ -1126,6 +1166,7 @@ "financial": "N", "reference": "courthousenameEmailAddress1", "userGroups": [ + ], "min": "1", "max": "100", @@ -1149,6 +1190,7 @@ "financial": "N", "reference": "courthousenameEmailAddress2", "userGroups": [ + ], "min": "1", "max": "100", @@ -1173,6 +1215,7 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ + ], "min": "1", "max": "70", @@ -1192,6 +1235,7 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ + ], "min": "1", "max": "99", @@ -1212,6 +1256,7 @@ "financial": "N", "reference": "underDirectionOf", "userGroups": [ + ], "min": "1", "max": "50", @@ -1231,6 +1276,7 @@ "financial": "N", "reference": "treatmentPlace", "userGroups": [ + ], "min": "1", "max": "200", @@ -1250,6 +1296,7 @@ "financial": "N", "reference": "treatmentIntervals", "userGroups": [ + ], "min": "1", "max": "100", @@ -1269,6 +1316,7 @@ "financial": "N", "reference": "additionalInformation", "userGroups": [ + ], "min": "1", "max": "150", @@ -1288,6 +1336,7 @@ "financial": "N", "reference": "firstReviewTime", "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -1305,6 +1354,7 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -1313,23 +1363,20 @@ "associatedWithReferenceData": false }, { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HTYPE", - "courtExtract": "Y", - "durationSequence": null + "id" : "c1116d12-dd35-4171-807a-2cb845357d22", + "label" : "Hearing type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HTYPE", + "courtExtract" : "Y", + "durationSequence" : null } ], "welshLabel": "Adsefydlu defnyddiwr cyffuriau - dibreswyl gydag adolygiad", @@ -1377,6 +1424,7 @@ "Review" ], "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "C", @@ -1393,6 +1441,7 @@ "financial": "N", "reference": "hCHOUSEOrganisationName", "userGroups": [ + ], "min": "", "max": "", @@ -1416,6 +1465,7 @@ "financial": "N", "reference": "hCHOUSEAddress1", "userGroups": [ + ], "min": "", "max": "", @@ -1439,6 +1489,7 @@ "financial": "N", "reference": "hCHOUSEAddress2", "userGroups": [ + ], "min": "", "max": "", @@ -1462,6 +1513,7 @@ "financial": "N", "reference": "hCHOUSEAddress3", "userGroups": [ + ], "min": "", "max": "", @@ -1485,6 +1537,7 @@ "financial": "N", "reference": "hCHOUSEAddress4", "userGroups": [ + ], "min": "", "max": "", @@ -1508,6 +1561,7 @@ "financial": "N", "reference": "hCHOUSEAddress5", "userGroups": [ + ], "min": "", "max": "", @@ -1531,6 +1585,7 @@ "financial": "N", "reference": "hCHOUSEPostCode", "userGroups": [ + ], "min": "", "max": "", @@ -1554,6 +1609,7 @@ "financial": "N", "reference": "hCHOUSEEmailAddress1", "userGroups": [ + ], "min": "", "max": "", @@ -1577,6 +1633,7 @@ "financial": "N", "reference": "hCHOUSEEmailAddress2", "userGroups": [ + ], "min": "", "max": "", @@ -1601,6 +1658,7 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -1609,23 +1667,20 @@ "associatedWithReferenceData": false }, { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HTYPE", - "courtExtract": "Y", - "durationSequence": null + "id" : "c1116d12-dd35-4171-807a-2cb845357d22", + "label" : "Hearing type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HTYPE", + "courtExtract" : "Y", + "durationSequence" : null }, { "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", @@ -1637,6 +1692,7 @@ "financial": "N", "reference": "timeOfHearing", "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -1654,6 +1710,7 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ + ], "min": "1", "max": "99", @@ -1674,6 +1731,7 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ + ], "min": "1", "max": "50", @@ -1693,6 +1751,7 @@ "financial": "N", "reference": "defendantToAttendReview", "userGroups": [ + ], "courtExtract": "Y", "jurisdiction": "B", @@ -1725,62635 +1784,33076 @@ "isBooleanResult": false }, { - "id": "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", - "label": "Adjournment reason: Unexpected circumstances meant that the case could not be heard", - "shortCode": "UNF", - "level": "O", - "rank": 11100, - "canBeSubjectOfBreach": true, - "canBeSubjectOfVariation": true, - "wordGroups": [ - { - "wordGroup": [ - "unexpected", - "circumstances" - ] - }, - { - "wordGroup": [ - "adjournment", - "unforseen" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalInformation", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Rheswm dros ohirio: Gwrthodwyd gohirio’r achos", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "KU", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Adjournment reasons", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "alwaysPublished": true, - "resultDefinitionRules": [] + "id" : "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", + "label" : "Adjournment reason: Unexpected circumstances meant that the case could not be heard", + "shortCode" : "UNF", + "level" : "O", + "rank" : 11100, + "canBeSubjectOfBreach" : true, + "canBeSubjectOfVariation" : true, + "wordGroups" : [ { + "wordGroup" : [ "unexpected", "circumstances" ] + }, { + "wordGroup" : [ "adjournment", "unforseen" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalInformation", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Rheswm dros ohirio: Gwrthodwyd gohirio’r achos", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "KU", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Adjournment reasons", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "alwaysPublished" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", + "label" : "Adjournment reason: Insufficient court time to hear the case", + "shortCode" : "INSUF", + "level" : "O", + "rank" : 11200, + "wordGroups" : [ { + "wordGroup" : [ "adjournment", "insufficient", "Time" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "welshLabel" : "Rheswm dros ohirio: Nid oedd digon o amser i wrando'r achos", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "KQ", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Adjournment reasons", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, + { + "id" : "9fd6a4ef-1055-4e54-b035-f1130a524388", + "label" : "Adjournment reason: Non-standard reason", + "shortCode" : "NSR", + "level" : "O", + "rank" : 11300, + "wordGroups" : [ { + "wordGroup" : [ "adjournment", "reason", "other" ] + }, { + "wordGroup" : [ "adjournment", "reason", "non-standard" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "28a271c5-aff0-4e60-b599-88e441960699", + "label" : "Reason for adjournment", + "welshLabel" : "Rheswm dros ohirio", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "NSR", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Rheswm dros ohirio: Rheswm ansafonol", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Adjournment reasons", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, + { + "id" : "29e02fa1-42ce-4eec-914e-e62508397a16", + "label" : "No compensation reason", + "shortCode" : "NCR", + "level" : "O", + "rank" : 11400, + "wordGroups" : [ { + "wordGroup" : [ "compensation", "no" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e263de82-47ca-433a-bb41-cad2e1c5bb72", + "label" : "Reason for no compensation", + "welshLabel" : "Rheswm dros beidio â rhoi iawndal", + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "5f29ba24-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : "reasonForNoCompensation", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Rheswm dros beidio â dyfarnu iawndal", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, + { + "id" : "baf94928-04ae-4609-8e96-efc9f081b2be", + "label" : "No order for costs", + "shortCode" : "NCOSTS", + "level" : "O", + "rank" : 11500, + "wordGroups" : [ { + "wordGroup" : [ "no", "Costs" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "be2a46db-709d-4e0d-9b63-aeb831564c1d", + "label" : "Reason for no costs", + "welshLabel" : "", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "reasonForNoCosts", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "52770cf4-41a8-4c04-a41c-2b12a95cb8dd", + "label" : "Defendant has died", + "shortCode" : "dead", + "level" : "O", + "rank" : 11600, + "wordGroups" : [ { + "wordGroup" : [ "dead" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "2065", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "8f9539a0-bd05-4002-9146-d55920cbab9e", + "label" : "Defendant committed suicide", + "shortCode" : "deads", + "level" : "O", + "rank" : 11700, + "wordGroups" : [ { + "wordGroup" : [ "deads" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "2503", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4632d712-6cf7-4929-af0d-9bf4a4436ee3", + "label" : "The Court did not proceed with the trial in the defendant's absence", + "shortCode" : "NOTRIAL", + "level" : "O", + "rank" : 11800, + "wordGroups" : [ { + "wordGroup" : [ "trial", "adjourned" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "reason", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "88fd00c6-d63c-4f4e-9a86-4628856a9557", + "label" : "No evidence offered - verdict of not guilty by order of Judge", + "shortCode" : "NGJ", + "level" : "O", + "rank" : 11900, + "wordGroups" : [ { + "wordGroup" : [ "judge", "not", "guilty" ] + }, { + "wordGroup" : [ "prosecution", "no", "evidence" ] + }, { + "wordGroup" : [ "prosecution", "neo" ] + }, { + "wordGroup" : [ "no", "evidence" ] + }, { + "wordGroup" : [ "not", "guilty" ] + }, { + "wordGroup" : [ "NGJ" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "2050", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "14d66587-8fbe-424f-a369-b1144f1684e3", + "label" : "Dismissed", + "shortCode" : "DISM", + "level" : "O", + "rank" : 12000, + "wordGroups" : [ { + "wordGroup" : [ "DISM" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "2006", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "56e808c5-cd8f-4882-b8e2-c2f615e09c11", + "label" : "Criminal behaviour order", + "shortCode" : "CRIMBO", + "level" : "O", + "rank" : 12100, + "wordGroups" : [ { + "wordGroup" : [ "criminal", "behaviour", "Order" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "6c3f5d58-d206-46ca-a652-23ee198b371a", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c3f5d58-d206-46ca-a652-23ee198b371a", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c3f5d58-d206-46ca-a652-23ee198b371a", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label" : "Start date of order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4461f7f5-f984-4b6d-9f60-3084e5071382", + "label" : "Requirements", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label" : "Supervisor", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label" : "Supervisor's address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "56190eb2-0035-44cc-b904-b131f299835c", + "label" : "Prohibitions contained in the order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1177", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c2fa19f6-dabf-43fc-9f12-2347fc9b8cc5", + "label" : "Interim criminal behaviour order", + "shortCode" : "CRIMBI", + "level" : "O", + "rank" : 12200, + "wordGroups" : [ { + "wordGroup" : [ "interim", "criminal", "behaviour", "Order" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4461f7f5-f984-4b6d-9f60-3084e5071382", + "label" : "Requirements", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label" : "Supervisor", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label" : "Supervisor's address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "56190eb2-0035-44cc-b904-b131f299835c", + "label" : "Prohibitions contained in the order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "1178", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "3cf4b38f-004d-4eb4-8fdb-5d285c11ab47", + "label" : "Criminal behaviour order variation", + "shortCode" : "CRIMBV", + "level" : "O", + "rank" : 12300, + "wordGroups" : [ { + "wordGroup" : [ "criminal", "behaviour", "Order", "varied" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "84f70920-235c-4747-a0d5-545a2f761b37", + "label" : "Name of person on criminal behaviour order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3e9e09fd-f512-4cd1-95ad-f4ddd06a0d41", + "label" : "Date original criminal behaviour order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d2b6a2eb-53e5-440b-991d-65ee4ef806a0", + "label" : "Requirements (added, varied or removed)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label" : "Supervisor", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label" : "Supervisor's address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd92da3a-193a-4b87-98ae-b8622f4148ce", + "label" : "Prohibitions (added, varied or removed)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d2ed5c6c-2ebc-421b-834b-6f66ecb90e4e", + "label" : "Is the person on the original order a youth?", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6b509d44-fb0e-463f-8b7f-675cb6903265", + "label" : "Parent's name", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", + "label" : "Parent's address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1177", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "23d744a1-d71c-4849-b6a3-b736d71ea438", + "label" : "No video link reason", + "shortCode" : "NOVID", + "level" : "O", + "rank" : 12400, + "wordGroups" : [ { + "wordGroup" : [ "no", "video", "link" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "318c9eb2-cf3c-4592-a353-1b2166c15f81", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7959646e-ce77-4862-b6fe-5fb3a953c427", + "label" : "Order discharged", + "shortCode" : "ODIS", + "level" : "O", + "rank" : 12500, + "wordGroups" : [ { + "wordGroup" : [ "Order", "discharged" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "27c32341-8aed-4ccc-8894-7adb6f5eaf55", + "label" : "Type of order discharged", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "44554ccd-9975-4e36-b06d-8f58aebe788c", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "47f34fca-6355-4612-881a-07a2121b86ba", + "label" : "Supervising court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1029", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "204fc6b8-d6c9-4fb8-acd0-47d23c087625", + "label" : "No surcharge", + "shortCode" : "NOVS", + "level" : "D", + "rank" : 13100, + "wordGroups" : [ { + "wordGroup" : [ "no", "surcharge" ] + }, { + "wordGroup" : [ "no", "vs" ] + }, { + "wordGroup" : [ "no", "victim", "surcharge" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "042742a1-8d47-4558-9b3e-9f34b358e034", + "label" : "Reason for no surcharge", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9fdeff80-84c8-4dc0-8fcf-f8805d8e57ee", + "label" : "Surcharge reduced", + "shortCode" : "VSR", + "level" : "D", + "rank" : 13200, + "wordGroups" : [ { + "wordGroup" : [ "vs", "reduced" ] + }, { + "wordGroup" : [ "surcharge", "reduced" ] + }, { + "wordGroup" : [ "victim", "surcharge", "reduced" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "910d207e-29ac-4891-b0f8-4d0ade9ac224", + "label" : "Reason for reducing surcharge", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c3179e14-8754-4496-9190-3a9e47da0af7", + "label" : "Football banning order", + "shortCode" : "FBO", + "level" : "O", + "rank" : 13300, + "wordGroups" : [ { + "wordGroup" : [ "FBO" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", + "label" : "Police station name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "192c8ce6-57dd-463a-b588-bb7189f4c4c1", + "label" : "Police station address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "243f72af-801e-409e-b807-8878719d832a", + "label" : "Report within 5 days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", + "label" : "Reasons for making the order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "164d3778-bb74-4bdb-b006-8df4cd05a905", + "label" : "Additional requirements", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", + "label" : "Prison address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3068", + "adjournment" : false, + "convicted" : true, + "qualifier" : "FA", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "adf86eb7-2eb7-4575-bab5-63001eb23382", + "label" : "Football banning order terminated", + "shortCode" : "FBOT", + "level" : "O", + "rank" : 13400, + "wordGroups" : [ { + "wordGroup" : [ "FBO", "terminated" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", + "label" : "End date of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", + "label" : "Prison address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1029", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "73265700-cb68-4a88-86a8-53fcc6f5d6ba", + "label" : "Football banning order varied", + "shortCode" : "FBOV", + "level" : "O", + "rank" : 13500, + "wordGroups" : [ { + "wordGroup" : [ "FBO", "varied" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f4ffbd41-eea5-4465-b910-b1eaf033d30e", + "label" : "Details of variation", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "297a984c-71fa-436e-b9bd-068255e6d530", + "label" : "Original court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", + "label" : "Prison address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1030", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "fefede3e-436b-4cd6-a967-7c63d1cb4bce", + "label" : "Football banning order termination refused", + "shortCode" : "FBOTR", + "level" : "O", + "rank" : 13600, + "wordGroups" : [ { + "wordGroup" : [ "fbo. terminated", "refused" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d14c2611-0b4c-478c-a1ec-53bf44bcaa1f", + "label" : "Football banning order arising from offence outside England and Wales", + "shortCode" : "FBOI", + "level" : "O", + "rank" : 13700, + "wordGroups" : [ { + "wordGroup" : [ "FBO", "England" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", + "label" : "Police station name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "192c8ce6-57dd-463a-b588-bb7189f4c4c1", + "label" : "Police station address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "243f72af-801e-409e-b807-8878719d832a", + "label" : "Report within 5 days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", + "label" : "Reasons for making the order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "164d3778-bb74-4bdb-b006-8df4cd05a905", + "label" : "Additional requirements", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3068", + "adjournment" : false, + "convicted" : false, + "qualifier" : "FB", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5e272729-a76b-485c-8784-bddef53f700e", + "label" : "No football banning order", + "shortCode" : "NFBO", + "level" : "O", + "rank" : 13800, + "wordGroups" : [ { + "wordGroup" : [ "no", "FBO" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "46afed44-cb35-43bb-9f7e-78c4d9be298f", + "label" : "Reasons for not making a football banning order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c4705a6b-7914-4fc8-bf1e-3553ff1cccf5", + "label" : "Declaration of relevance relating to football matches", + "shortCode" : "DRF", + "level" : "O", + "rank" : 13900, + "wordGroups" : [ { + "wordGroup" : [ "declaration", "football", "match" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e44817e6-cc08-464f-8c21-1f3ba0af562d", + "label" : "Type of football match", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "5ba4aaa6-04d9-4495-bcad-6d1006209ea6", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3099", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e2f51977-ea53-4ac8-8951-75975da06bc5", + "label" : "Bind over to keep the peace", + "shortCode" : "BOCOND", + "level" : "O", + "rank" : 14000, + "wordGroups" : [ { + "wordGroup" : [ "bind", "over" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label" : "Amount of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a8ca6ddf-6dbd-4cc8-9699-7902297157df", + "label" : "Conduct or activity to be refrained from", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "516dbb2c-d9e1-4186-b458-e3b6f798db58", + "label" : "To keep the peace especially towards - name of person", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8c144a05-5804-4478-a419-12bab06748cc", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1016", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "label" : "Community requirement: Drug rehabilitation non-residential", + "shortCode" : "DRWR", + "level" : "O", + "rank" : 2100, + "wordGroups" : [ { + "wordGroup" : [ "Drug", "Rehabilitation", "Non-residential" ] + } ], + "userGroups" : [ ], + "prompts" : [ + + { + "id" : "f092fe58-2297-4d10-818a-8b303692ac39", + "label" : "Under direction of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "underDirectionOf", + "courtExtract" : "Y", + "durationSequence" : null + }, + { + "id" : "10028ef8-efc7-4a40-9703-1e121a6fbc84", + "label" : "Period to provide samples", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "periodToProvideSamples", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0b74fb53-acb7-42db-b9b6-976ce74b59b5", + "label" : "Treatment place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "treatmentPlace", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6aaf3645-0806-4917-ada5-b019c6a606c5", + "label" : "Treatment intervals", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3109", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BS", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "76c0d994-decd-4a2a-93ca-958f4595181e", + "label" : "Bind over to come up for judgment when called on", + "shortCode" : "BOJ", + "level" : "O", + "rank" : 14100, + "wordGroups" : [ { + "wordGroup" : [ "bind", "over", "judgement" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label" : "Amount of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8c144a05-5804-4478-a419-12bab06748cc", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "407bf65d-8be7-4996-b7e7-91d0ae7dfa75", + "label" : "Conditions of bind over to be complied with", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1016", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2c2bc8f2-4dd5-4670-b391-bdaca5b3e4f0", + "label" : "Bind over witness to keep the peace", + "shortCode" : "BOW", + "level" : "O", + "rank" : 14200, + "wordGroups" : [ { + "wordGroup" : [ "bind", "over", "witness", "peace" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", + "label" : "Witness name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e23c9dab-1dc4-4522-86db-2bcd29121134", + "label" : "Witness address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label" : "Amount of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a8ca6ddf-6dbd-4cc8-9699-7902297157df", + "label" : "Conduct or activity to be refrained from", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "516dbb2c-d9e1-4186-b458-e3b6f798db58", + "label" : "To keep the peace especially towards - name of person", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8c144a05-5804-4478-a419-12bab06748cc", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1016", + "adjournment" : false, + "convicted" : false, + "qualifier" : "W", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "92a97bb2-adfe-42bd-a705-6f538b3145f9", + "label" : "Sexual harm prevention order for period", + "shortCode" : "shopp", + "level" : "O", + "rank" : 14300, + "wordGroups" : [ { + "wordGroup" : [ "shopp" ] + }, { + "wordGroup" : [ "sexual", "harm", "prevention", "Order", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4aee5e0c-959b-4ed9-b589-71c1fe28134d", + "label" : "Type of order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "56190eb2-0035-44cc-b904-b131f299835c", + "label" : "Prohibitions contained in the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1179", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7fd3992e-c1dd-4fd1-abbc-a816f1250bae", + "label" : "Sexual harm prevention order until further order", + "shortCode" : "SHOPF", + "level" : "O", + "rank" : 14400, + "wordGroups" : [ { + "wordGroup" : [ "sexual", "harm", "prevention", "Order", "Further" ] + }, { + "wordGroup" : [ "shopo", "Further" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4aee5e0c-959b-4ed9-b589-71c1fe28134d", + "label" : "Type of order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "56190eb2-0035-44cc-b904-b131f299835c", + "label" : "Prohibitions contained in the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1179", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2b418a7d-a48d-4c75-a912-8112f1010ab9", + "label" : "Sexual harm prevention order until end date", + "shortCode" : "SHOPE", + "level" : "O", + "rank" : 14500, + "wordGroups" : [ { + "wordGroup" : [ "shopo", "until" ] + }, { + "wordGroup" : [ "sexual", "harm", "prevention", "Order", "until" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4aee5e0c-959b-4ed9-b589-71c1fe28134d", + "label" : "Type of order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "eea72b76-275c-4eef-9021-a99c59d088cc", + "label" : "End date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "Date", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "56190eb2-0035-44cc-b904-b131f299835c", + "label" : "Prohibitions contained in the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1179", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "69cf9e2e-f117-4311-952d-e286af84c3be", + "label" : "Sexual harm prevention order varied", + "shortCode" : "SHOPV", + "level" : "O", + "rank" : 14600, + "wordGroups" : [ { + "wordGroup" : [ "shopo", "varied" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "671e3bd7-0c84-461c-aada-7c73d6fad03b", + "label" : "Type of sexual harm prevention order varied", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label" : "Date order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "Date", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "94514093-d8de-4400-93de-9e3366f5af8c", + "label" : "Name of defendant on original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label" : "Name of court that made the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2def6a67-bdb7-4596-8544-53ebb5811880", + "label" : "Variation of prohibitions (other than foreign)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f0b5c085-202d-4b96-9409-959f950c6bf3", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label" : "Start date of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "03501a9a-2668-4587-acc1-b8e880f7c3f4", + "label" : "Parent's name (deft is a youth)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", + "label" : "Parent's address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1030", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "dc954e27-f35a-46e2-98a2-9e0ca1fbabb4", + "label" : "Total suspended detention", + "shortCode" : "STDET", + "level" : "D", + "rank" : 14700, + "wordGroups" : [ { + "wordGroup" : [ "Total", "SSO", "detention" ] + }, { + "wordGroup" : [ "STDET" ] + }, { + "wordGroup" : [ "Total", "suspended", "detention" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "699055ee-d41c-4311-91bd-b8ca38aaca84", + "label" : "Suspended period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 2 + }, { + "id" : "699055ee-d41c-4311-91bd-b8ca38aaca84", + "label" : "Suspended period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 2 + }, { + "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label" : "Supervision period", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label" : "Supervision period", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label" : "Supervision period", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label" : "Supervision period", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06a61bd3-ca3e-4871-b83e-000dfb6289e5", + "label" : "Judge reserves review hearing", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1200, + "duration" : null, + "wordGroup" : [ "Review" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label" : "Judge reserves breach proceedings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1300, + "duration" : null, + "wordGroup" : [ "Breach" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label" : "Total sentence consecutive to what", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc01db7c-d110-4d3c-9efa-d05a72742ddb", + "label" : "Review frequency", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bc256fd1-dedd-43ab-8882-f9fbb448a62d", + "label" : "First review date", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", + "label" : "Time of hearing", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TIME", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "dab2947a-9b21-450e-8fd1-d82ea3e0f42f", + "label" : "Courthouse", + "welshLabel" : "Adeilad llys", + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "335094b9-94ab-44de-b43e-8fcbc7600008", + "label" : "Courthouse", + "welshLabel" : "Adeilad llys", + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d6ac217f-6864-416e-89cf-3f31e1885cfc", + "label" : "Courtroom", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ccb76b76-b883-41c3-bd5c-7723531a8909", + "label" : "Defendant to attend review", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "6d72674d-1ca6-490a-a1c4-0a6404169f66", + "label" : "Disqualification from involvement as a director etc of a company", + "shortCode" : "DCO", + "level" : "O", + "rank" : 14800, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "director" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label" : "Duration of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label" : "Duration of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e7e298e3-4182-4e0a-b7d4-75f223a36549", + "label" : "Specify Section of Company Directors Disqualification Act 1986", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "350608f2-3deb-4c23-9643-1c7ad33a09f7", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "89cea994-e319-4a90-8899-8a4fd03e3afa", + "label" : "Disqualification start date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "21aadaea-89ef-424c-8606-b5d74811aeaf", + "label" : "Section 243 exemption applies", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0491c27e-7fdb-4e93-9358-620332372f25", + "label" : "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3002", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5fed2cbd-0d51-4848-8f9b-f0e574e9b0e7", + "label" : "Disqualification against a body corporate / firm", + "shortCode" : "DCOB", + "level" : "O", + "rank" : 14900, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "firm" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label" : "Duration of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label" : "Duration of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e7e298e3-4182-4e0a-b7d4-75f223a36549", + "label" : "Specify Section of Company Directors Disqualification Act 1986", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "350608f2-3deb-4c23-9643-1c7ad33a09f7", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "89cea994-e319-4a90-8899-8a4fd03e3afa", + "label" : "Disqualification start date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "543324ec-da1d-456b-8d9f-32300f8fe371", + "label" : "Company registration number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "64a61a50-ba04-46f8-b624-09494db4bb5a", + "label" : "Country of registration", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0491c27e-7fdb-4e93-9358-620332372f25", + "label" : "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "bcf1b451-af1e-4603-9605-586310d0e61e", + "label" : "Community requirement: Drug rehabilitation residential", + "shortCode" : "DRRWR", + "level" : "O", + "rank" : 2200, + "wordGroups" : [ { + "wordGroup" : [ "Drug", "Rehabilitation", "Residential" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "10028ef8-efc7-4a40-9703-1e121a6fbc84", + "label" : "Period to provide samples", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "10028ef8-efc7-4a40-9703-1e121a6fbc84", + "label" : "Period to provide samples", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f092fe58-2297-4d10-818a-8b303692ac39", + "label" : "Under direction of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0b74fb53-acb7-42db-b9b6-976ce74b59b5", + "label" : "Treatment place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3109", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BM", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ccfc452e-ebe4-4cd7-b8a0-4f90768447b4", + "label" : "Discretionary with ordinary disqualification", + "shortCode" : "DDD", + "level" : "O", + "rank" : 15000, + "wordGroups" : [ { + "wordGroup" : [ "DDD" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", + "label" : "Starting from date (date of interim disqualification)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label" : "Extension period section 35A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label" : "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3071", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "a67b959b-b2e6-4741-b758-d7ef27f973a7", + "label" : "Discretionary with ordinary disqualification for life", + "shortCode" : "DDDL", + "level" : "O", + "rank" : 15100, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "Life" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", + "label" : "Starting from date (date of interim disqualification)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3071", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : true, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "8c81d29b-5621-4f2c-9e05-297241822ba6", + "label" : "Obligatory but reduced disqualification for special reasons", + "shortCode" : "DDDR", + "level" : "O", + "rank" : 15200, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "special", "reasons" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", + "label" : "Starting from date (date of interim disqualification)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label" : "Extension period section 35A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label" : "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "dcaf502b-44d2-4be0-acfc-2f7d29142da6", + "label" : "Special reasons", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3070", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "20a7e0f4-abc5-4beb-8af0-a327de1d6e7e", + "label" : "Discretionary with disqualification until ordinary test passed", + "shortCode" : "DDDT", + "level" : "O", + "rank" : 15300, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "test", "until" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", + "label" : "Starting from date (date of interim disqualification)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label" : "Extension period section 35A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label" : "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3071", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "cf8a3c59-63f5-4757-8783-88f1e31aa653", + "label" : "Discretionary disqualification until test passed only", + "shortCode" : "DDDTO", + "level" : "O", + "rank" : 15400, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "test", "until", "only" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3073", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "c2c346d1-dc13-48c8-b557-ef3dabcb1b9b", + "label" : "Obligatory disqualification until extended test passed", + "shortCode" : "DDOTE", + "level" : "O", + "rank" : 15500, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "until", "extended" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", + "label" : "Starting from date (date of interim disqualification)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label" : "Extension period section 35A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label" : "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3070", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "73fe22ca-76bd-4aba-bdea-6dfef8ee03a2", + "label" : "Points disqualification", + "shortCode" : "DDP", + "level" : "O", + "rank" : 15600, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "points" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label" : "Extension period section 35A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label" : "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label" : "Notional penalty points", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3072", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "651cbf5b-b7f0-4921-ba01-e18ad2ac763b", + "label" : "Points disqualification for life", + "shortCode" : "DDPL", + "level" : "O", + "rank" : 15700, + "wordGroups" : [ { + "wordGroup" : [ "disqualificatiom", "ponts", "Life" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label" : "Notional penalty points", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3072", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : true, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "7b0933f8-405e-434a-9bfe-871f794260cb", + "label" : "Points but reduced disqualification for mitigating circumstance", + "shortCode" : "DDPR", + "level" : "O", + "rank" : 15800, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "points", "mitigating" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label" : "Extension period section 35A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label" : "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label" : "Notional penalty points", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a541edb8-fead-4a88-8665-79b5a59c183c", + "label" : "Mitigating circumstances", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "mitigatingCircumStances", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3072", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "097dfa33-6c62-4ed1-af46-6c6786b66d65", + "label" : "Points with disqualification until extended test passed", + "shortCode" : "DDPTE", + "level" : "O", + "rank" : 15900, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "points", "extended" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label" : "Extension period section 35A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label" : "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label" : "Notional penalty points", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3072", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "a5aa694e-4729-40f5-814e-60a75d9429e0", + "label" : "Community requirement: Programme", + "shortCode" : "PR", + "level" : "O", + "rank" : 2300, + "wordGroups" : [ { + "wordGroup" : [ "PR" ] + }, { + "wordGroup" : [ "Programme", "Requirement" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "60e386e4-51df-4c91-81f7-9a25751de426", + "label" : "Number of days", + "welshLabel" : "Nifer o ddyddiau", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3103", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "90ef1e35-b19a-4ad9-a4e1-e511e9d1d00e", + "label" : "Driving Disq - Reduction for course (discretionary)", + "shortCode" : "DDRCD", + "level" : "O", + "rank" : 16000, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "course", "dicretionary" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7326f05d-54b3-450e-92dd-a5bc0710f8f7", + "label" : "Name of course", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "286cc674-a4f8-408e-aa6d-8dbc175ab968", + "label" : "Date by which course must be completed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label" : "Extension period section 35A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label" : "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label" : "Defendant's mobile number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e2ae845f-12f4-498e-bddf-a90c8cb499ba", + "label" : "Defendant's home telephone number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label" : "Special needs", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3071", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "990e8cad-c8e0-4ad9-ba86-13180338986d", + "label" : "Driving Disq - Reduction for course (obligatory)", + "shortCode" : "DDRCO", + "level" : "O", + "rank" : 16100, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "course", "obligatory" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7326f05d-54b3-450e-92dd-a5bc0710f8f7", + "label" : "Name of course", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "286cc674-a4f8-408e-aa6d-8dbc175ab968", + "label" : "Date by which course must be completed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label" : "Extension period section 35A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label" : "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label" : "Defendant's mobile number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e2ae845f-12f4-498e-bddf-a90c8cb499ba", + "label" : "Defendant's home telephone number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label" : "Special needs", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3070", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "7ee02b35-88ca-4acc-ab8b-70f3e95a32d0", + "label" : "Obligatory Disqualification until extended test passed - reduction for course", + "shortCode" : "DDRCOT", + "level" : "O", + "rank" : 16200, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "course", "obligatory", "extended" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label" : "Disqualification reduction period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7326f05d-54b3-450e-92dd-a5bc0710f8f7", + "label" : "Name of course", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "286cc674-a4f8-408e-aa6d-8dbc175ab968", + "label" : "Date by which course must be completed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label" : "Extension period section 35A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label" : "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label" : "Defendant's mobile number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e2ae845f-12f4-498e-bddf-a90c8cb499ba", + "label" : "Defendant's home telephone number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label" : "Special needs", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3070", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "4414bffb-c62e-442c-841a-2ebed0e688b6", + "label" : "Interim disqualification", + "shortCode" : "DDRI", + "level" : "O", + "rank" : 16300, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "inerim" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3096", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "3ae7caf1-d5ff-4534-9fbb-17a3a04cb9ab", + "label" : "Disqualification for non-endorsable offence", + "shortCode" : "DDRN", + "level" : "O", + "rank" : 16400, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "non-endorsable" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label" : "Extension period section 35A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label" : "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3094", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "3fa139cc-efe0-422b-93d6-190a5be50953", + "label" : "Driving record endorsed with additional points (points on more than one offence)", + "shortCode" : "LEA", + "level" : "O", + "rank" : 16500, + "wordGroups" : [ { + "wordGroup" : [ "endorsed", "Additional", "points" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a8719de4-7783-448a-b792-e3f94e670ad0", + "label" : "Penalty points for this offence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "PENPT", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bbbb47bb-3418-463c-bfc3-43c6f72bb7c9", + "label" : "Reasons for imposing penalty points on more than one offence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3008", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "b0aeb4fc-df63-4e2f-af88-97e3f23e847f", + "label" : "Driving record endorsed (no points)", + "shortCode" : "LEN", + "level" : "O", + "rank" : 16600, + "wordGroups" : [ { + "wordGroup" : [ "endorsed", "no", "points" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3008", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "cee54856-4450-4f28-a8a9-72b688726201", + "label" : "Driving record endorsed with penalty points", + "shortCode" : "LEP", + "level" : "O", + "rank" : 16700, + "wordGroups" : [ { + "wordGroup" : [ "endorsed", "points" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a8719de4-7783-448a-b792-e3f94e670ad0", + "label" : "Penalty points for this offence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "PENPT", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3008", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "af322d0a-ba2a-47f1-8d46-7b3ea423d689", + "rollUpPrompts": true, + "publishedForNows": true, + "label" : "No disqualification - Mitigating Circumstances", + "shortCode" : "NDMC", + "level" : "C", + "rank" : 16800, + "wordGroups" : [ { + "wordGroup" : [ "no", "disqualification", "mitigating" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a541edb8-fead-4a88-8665-79b5a59c183c", + "label" : "Mitigating circumstances", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "mitigatingCircumStances", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3509", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "808313d1-f450-4410-b2f1-97409d7b4074", + "label" : "No disqualification - Special Reasons", + "shortCode" : "NDSR", + "level" : "O", + "rank" : 16900, + "wordGroups" : [ { + "wordGroup" : [ "no", "disqualification", "special", "reason" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "dcaf502b-44d2-4be0-acfc-2f7d29142da6", + "label" : "Special reasons", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3509", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "label" : "Community requirement: Rehabilitation activity", + "shortCode" : "RAR", + "level" : "O", + "rank" : 2400, + "wordGroups" : [ { + "wordGroup" : [ "Rehabilitation", "Activity" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1bc7246f-89f2-4b2f-b765-d01297d7b4aa", + "label" : "Max number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3149", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f121db73-57fb-4f74-9ab1-0843aabe4605", + "label" : "No endorsement - Special Reasons", + "shortCode" : "NESR", + "level" : "O", + "rank" : 17000, + "wordGroups" : [ { + "wordGroup" : [ "no", "endorsement", "special", "reason" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "dcaf502b-44d2-4be0-acfc-2f7d29142da6", + "label" : "Special reasons", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3508", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b5ee3936-2cd5-47f4-9192-3737c7093a7f", + "label" : "Removal of Driving Disqualification", + "shortCode" : "RDD", + "level" : "O", + "rank" : 17100, + "wordGroups" : [ { + "wordGroup" : [ "remove", "disqualification" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "fb28be9c-0f74-4c02-a70e-0fffa9b0614b", + "label" : "Date disqualification imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7a6d9bb9-a042-4234-8b92-d871437fd15a", + "label" : "Date disqualification ends", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "73f005c6-11e7-4d45-a378-85ea5919e553", + "label" : "Original date of conviction", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "37ee2b08-1950-4b04-bea5-f6f66b768bb0", + "label" : "Original offence date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5813ddb2-e987-44fd-bdcf-4148e6fb9cda", + "label" : "DVLA offence code", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "84a42b46-f384-410d-a4d9-46fe0cb74678", + "label" : "Applicant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c70597c0-a333-4828-959f-e6c8174a311c", + "label" : "Original convicting court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3030", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "663d9c78-0e56-4931-9f3a-5301a7e94147", + "label" : "Disqualification for non-endorsable offence (assault by driving a motor vehicle)", + "shortCode" : "DDRA", + "level" : "O", + "rank" : 17200, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "non-endorsable", "assault" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7a353b75-acd8-4a69-b779-d14c194fa3fd", + "label" : "Extension period section 147A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "975c0985-7ee4-4560-85fc-5eecf97f9b34", + "label" : "Extension period section 147B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3095", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "6ef33dcf-3fd3-46d6-bc41-f7bfb7f5ced6", + "label" : "Disqualification for non-endorsable offence (vehicle used for purposes of crime)", + "shortCode" : "DDRV", + "level" : "O", + "rank" : 17300, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "non-endorsable", "crime" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7a353b75-acd8-4a69-b779-d14c194fa3fd", + "label" : "Extension period section 147A (immediate custodial sentence)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "975c0985-7ee4-4560-85fc-5eecf97f9b34", + "label" : "Extension period section 147B (effect of custodial sentence noted)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3095", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : true, + "resultDefinitionRules" : [ ] + }, { + "id" : "238fc228-f948-430e-b0a1-7c9bdcafac46", + "label" : "Disqualification suspended pending appeal", + "shortCode" : "DSPA", + "level" : "O", + "rank" : 17400, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "suspended", "appeal" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label" : "Defendant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantDrivingLicenseNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3075", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d3ca848c-ab33-4650-a0e6-36f1b86998a2", + "label" : "Disqualification suspended pending appeal in a later session", + "shortCode" : "DSPAS", + "level" : "O", + "rank" : 17500, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "suspended", "appeal", "later" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", + "label" : "Convicting court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "00ff3bf4-a872-4c16-a671-f05b8aa147f3", + "label" : "Sentencing court if different from convicting court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e3764c59-4e25-4864-a3af-1c2e3390af99", + "label" : "Date of conviction", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9c1c1ba5-eb13-45be-a7d3-dcc83debe0ba", + "label" : "Date of offence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "71b1cc98-8b41-4d65-906a-3b4940c4ce1d", + "label" : "Date of sentence if different from conviction date", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9dc27662-6953-4acf-a7ac-9b9165e12e2d", + "label" : "DVLA code for offence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "72faf2d6-b362-4e7a-9f89-102c7e820868", + "label" : "Court contact (SPOC)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "84a42b46-f384-410d-a4d9-46fe0cb74678", + "label" : "Applicant driving licence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3076", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "39988e30-159a-442e-bb83-7f6df78fea34", + "label" : "Driving licence disposal", + "shortCode" : "DLDIS", + "level" : "D", + "rank" : 17600, + "wordGroups" : [ { + "wordGroup" : [ "driving", "license", "disposal" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ff701645-f700-48d0-a247-19f177b0e976", + "label" : "Driving licence type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5fe6673d-24ff-445b-b247-03c71e95fb2c", + "label" : "Driving licence destination", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0556c55a-439b-4020-8bff-ad0d5c0bb7fa", + "label" : "Reason driving licence sent to DVLA", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "dd3ef017-5020-4fec-832a-98028ebf3097", + "label" : "Driving licence suspended pending production", + "shortCode" : "DLSUS", + "level" : "C", + "rank" : 17700, + "wordGroups" : [ { + "wordGroup" : [ "driving", "license", "suspended", "production" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3510", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "3bfd5af4-b80a-405c-9089-1a533aec0ace", + "label" : "Licensed Premises - Exclusion Order", + "shortCode" : "LPEX", + "level" : "O", + "rank" : 17800, + "wordGroups" : [ { + "wordGroup" : [ "licensed", "premises", "exclusion" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "04446df0-88b9-4f3b-97cd-cf663346c6d0", + "label" : "Duration of exclusion", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "04446df0-88b9-4f3b-97cd-cf663346c6d0", + "label" : "Duration of exclusion", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "57d0b15c-746a-4376-a4d8-5917ecd5e8eb", + "label" : "Name of licensed premises excluded from", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c70d64d-9c95-48bc-b8d2-5c38643e7d65", + "label" : "Reason for exclusion", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3041", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0ced3039-579c-48a3-9274-cee8c68ba608", + "label" : "Contingent destruction order for dog (proper control)", + "shortCode" : "DCDO", + "level" : "O", + "rank" : 18000, + "wordGroups" : [ { + "wordGroup" : [ "dog", "destruction", "control" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e8a64fc3-081f-4461-84e8-65774cce7021", + "label" : "Details of dog", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "31abd0a3-c2e2-4e15-91de-f2917b4fbadd", + "label" : "To be securely held on a lead by a person who is not less than 16 years old", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2e674f8b-dc14-4731-8ff4-a13c85be7318", + "label" : "To be securely fitted with a muzzle sufficient to prevent it biting any person", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0879a258-7feb-4675-ba94-abc679b23aa9", + "label" : "Places excluded from", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a8548173-c4a4-43a6-adbc-364fbdfcef58", + "label" : "Other directions", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", + "label" : "Reason for order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3082", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "bbc3f8e9-b29c-40d2-8564-0e918693ed89", + "label" : "Order for dog to be neutered", + "shortCode" : "DN", + "level" : "O", + "rank" : 18100, + "wordGroups" : [ { + "wordGroup" : [ "dog", "neutered" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e8a64fc3-081f-4461-84e8-65774cce7021", + "label" : "Details of dog", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "75ae5570-cdc0-42c7-9024-68985fd3bf73", + "label" : "Date by which dog is to be neutered", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", + "label" : "Reason for order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3020", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b6eeca33-a188-4d00-a470-391b245c45a4", + "label" : "Order for deprivation of animal", + "shortCode" : "ADEP", + "level" : "O", + "rank" : 18200, + "wordGroups" : [ { + "wordGroup" : [ "deprivation", "animal" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "0f52987f-309d-4357-95e1-8f4da8effb60", + "label" : "This order also deprives the defendant of the animal's dependent offspring and provides for its disposal. The offspring are", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0949b347-3c72-4688-9ecb-deabb17ee175", + "label" : "Directions regarding the order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9a795188-50e5-4587-9097-610219269455", + "label" : "Reason for order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3055", + "adjournment" : false, + "convicted" : true, + "qualifier" : "YZ", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "cf10ee96-c82c-46c7-8a34-0c9d08aca134", + "label" : "Order for destruction in the interests of the animal made under Section 37 Animal Welfare Act 2006", + "shortCode" : "ADES", + "level" : "O", + "rank" : 18300, + "wordGroups" : [ { + "wordGroup" : [ "destruction", "interest", "animal" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "0949b347-3c72-4688-9ecb-deabb17ee175", + "label" : "Directions regarding the order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9a795188-50e5-4587-9097-610219269455", + "label" : "Reason for order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3116", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "852cf8c1-bb0f-444f-97f1-64ff8561413d", + "label" : "Destruction of animals involved in fighting made under Section 38 Animal Welfare Act 2006", + "shortCode" : "ADESF", + "level" : "O", + "rank" : 18400, + "wordGroups" : [ { + "wordGroup" : [ "destruction", "animal", "fighting" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "03934cce-feb2-43b5-aaf8-20aeccb3336d", + "label" : "Animal to be destroyed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0949b347-3c72-4688-9ecb-deabb17ee175", + "label" : "Directions regarding the order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9a795188-50e5-4587-9097-610219269455", + "label" : "Reason for order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3116", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "26eec36f-7bdc-4b1a-9b46-ba161f52a4e2", + "label" : "Disqualified from keeping animal stated for a defined period", + "shortCode" : "ANI", + "level" : "O", + "rank" : 18500, + "wordGroups" : [ { + "wordGroup" : [ "disqualified", "keeping", "animal", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e07c6156-730e-4b66-a913-edc7366b13c0", + "label" : "Specify the animal to which the order applies", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9a795188-50e5-4587-9097-610219269455", + "label" : "Reason for order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3025", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "577acd37-0473-4ad8-ac06-adbf7e9beb2c", + "label" : "Disqualified from keeping stated animal for life", + "shortCode" : "ANIL", + "level" : "O", + "rank" : 18600, + "wordGroups" : [ { + "wordGroup" : [ "disqualified", "keeping", "animal", "Life" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e07c6156-730e-4b66-a913-edc7366b13c0", + "label" : "Specify the animal to which the order applies", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9a795188-50e5-4587-9097-610219269455", + "label" : "Reason for order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3025", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : true, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", + "label" : "Foreign travel prohibition", + "shortCode" : "FTPN", + "level" : "O", + "rank" : 100, + "userGroups" : [ ], + "prompts" : [ { + "id" : "63ff5f8d-07ac-4b2d-ae61-fbb75613dfab", + "label" : "Not to travel to any country outside the United Kingdom", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "BOOLEAN", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "63173301-f05d-4bb3-8ca0-2fefd8f9e84d", + "label" : "Not to travel to the following countries outside the United Kingdom", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3333058f-1977-4fcb-a70a-98d1510898b5", + "label" : "Not to travel to any country outside the United Kingdom other than", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5d2dd546-d773-44d6-b030-0de2d049b245", + "label" : "Period of foreign travel prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "67de7451-2805-40ee-9d4c-6e75aa04069c", + "label" : "Foreign travel prohibition removed", + "shortCode" : "FTPR", + "level" : "O", + "rank" : 18700, + "wordGroups" : [ { + "wordGroup" : [ "foreign", "travel", "removed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e86b1bce-49f5-46db-8c2e-3df6321ecfdb", + "label" : "Date removed with effect from", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2a9ff8a6-c0cf-45eb-b9e5-252238a5140c", + "label" : "Foreign travel prohibition extended", + "shortCode" : "FTPE", + "level" : "O", + "rank" : 18800, + "wordGroups" : [ { + "wordGroup" : [ "foreign", "travel", "extended" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "32b624af-30b4-4ef9-8eae-cb178a64e2be", + "label" : "Date foreign travel prohibition made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3332ddb2-2c45-496a-8306-92ab4ddc726d", + "label" : "Foreign travel prohibition extended until", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "label" : "Community requirement: Prohibited activity for period", + "shortCode" : "PARP", + "level" : "O", + "rank" : 2600, + "wordGroups" : [ { + "wordGroup" : [ "prohibited", "Activity", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null, + "hidden": false + }, { + "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null, + "hidden": false + }, { + "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null, + "hidden": false + }, { + "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null, + "hidden": false + }, { + "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label" : "Prohibited activities", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null, + "hidden": false + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3104", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "dcdcd240-3ebe-4e80-b84c-a06a2a4a17ae", + "label" : "Sexual harm prevention order discharged", + "shortCode" : "SHPOD", + "level" : "O", + "rank" : 18900, + "wordGroups" : [ { + "wordGroup" : [ "shopo", "discharged" ] + }, { + "wordGroup" : [ "sexual", "harm", "prevention", "discharged" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "471d4d9d-b267-410a-be01-7c8c5e762992", + "label" : "Sexual harm prevention order type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label" : "Date order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "Date", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "94514093-d8de-4400-93de-9e3366f5af8c", + "label" : "Name of defendant on original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label" : "Name of court that made the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1029", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "bb09512f-3d01-4f3d-ab7e-fefa5a7ccba4", + "label" : "Sexual harm prevention order renewed", + "shortCode" : "SHPOR", + "level" : "O", + "rank" : 19000, + "wordGroups" : [ { + "wordGroup" : [ "shopo", "renewed" ] + }, { + "wordGroup" : [ "sexual", "harm", "prevention", "renewed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "050b4899-5383-4894-9970-ff227cdd5686", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "050b4899-5383-4894-9970-ff227cdd5686", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "050b4899-5383-4894-9970-ff227cdd5686", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "050b4899-5383-4894-9970-ff227cdd5686", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "471d4d9d-b267-410a-be01-7c8c5e762992", + "label" : "Sexual harm prevention order type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label" : "Date order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "Date", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "94514093-d8de-4400-93de-9e3366f5af8c", + "label" : "Name of defendant on original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label" : "Name of court that made the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "35dd25e2-0017-46fd-ae5f-0ed8eb67d545", + "label" : "Foreign travel prohibition varied", + "shortCode" : "FTPV", + "level" : "O", + "rank" : 19100, + "wordGroups" : [ { + "wordGroup" : [ "foreign", "travel", "varied" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "32b624af-30b4-4ef9-8eae-cb178a64e2be", + "label" : "Date foreign travel prohibition made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", + "label" : "Details of variation", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "cd612502-9cf9-4365-b6db-bf70022c40e5", + "label" : "Foreign travel prohibition added", + "shortCode" : "FTPA", + "level" : "O", + "rank" : 19200, + "wordGroups" : [ { + "wordGroup" : [ "foreign", "travel", "added" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label" : "Period of foreign travel prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label" : "Period of foreign travel prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label" : "Period of foreign travel prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label" : "Period of foreign travel prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "137b456b-1f56-42f6-9b5a-e45a3171724e", + "label" : "Not to travel to any country outside the United Kingdom", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a8b1ab81-4ef1-40bc-9aa8-ccdba9a6efca", + "label" : "Not to travel to the following countries outside the United Kingdom", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e9b15a52-c842-4e33-b779-537360158228", + "label" : "Not to travel to any country outside the United Kingdom other than", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "23fff13d-9741-4209-88ce-83e14c8c3388", + "label" : "Slavery and trafficking prevention order for period", + "shortCode" : "SATPO", + "level" : "O", + "rank" : 19300, + "wordGroups" : [ { + "wordGroup" : [ "slavery", "prevention", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "56190eb2-0035-44cc-b904-b131f299835c", + "label" : "Prohibitions contained in the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", + "label" : "Defendant to notify all names and home address within 3 days to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label" : "Method of notification", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3285", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "17bcc2c7-51f3-4449-aeed-3e7c65a0854d", + "label" : "Slavery and trafficking prevention order until further order", + "shortCode" : "SATPOFO", + "level" : "O", + "rank" : 19400, + "wordGroups" : [ { + "wordGroup" : [ "slavery", "prevention", "Further" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "56190eb2-0035-44cc-b904-b131f299835c", + "label" : "Prohibitions contained in the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", + "label" : "Defendant to notify all names and home address within 3 days to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label" : "Method of notification", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3285", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "dcdbe62e-ff8f-48d9-acf9-6b6b86b3487d", + "label" : "Slavery and trafficking prevention order until end date", + "shortCode" : "SATPOED", + "level" : "O", + "rank" : 19500, + "wordGroups" : [ { + "wordGroup" : [ "slavery", "prevention", "end" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "56190eb2-0035-44cc-b904-b131f299835c", + "label" : "Prohibitions contained in the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", + "label" : "Defendant to notify all names and home address within 3 days to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label" : "Method of notification", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3285", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ee94aaf8-5152-4a6e-b17e-63891e6209c4", + "label" : "Slavery and trafficking prevention order varied", + "shortCode" : "SATPOV", + "level" : "O", + "rank" : 19700, + "wordGroups" : [ { + "wordGroup" : [ "slavery", "prevention", "varied" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label" : "Date order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "Date", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "94514093-d8de-4400-93de-9e3366f5af8c", + "label" : "Name of defendant on original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label" : "Name of court that made the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2def6a67-bdb7-4596-8544-53ebb5811880", + "label" : "Variation of prohibitions (other than foreign)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", + "label" : "Defendant to notify all names and home address within 3 days to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label" : "Method of notification", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f0b5c085-202d-4b96-9409-959f950c6bf3", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label" : "Start date of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1030", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "381648c7-ca3e-4368-a75d-dbdebbf22bcd", + "label" : "Interim slavery and trafficking prevention order", + "shortCode" : "SATPOI", + "level" : "O", + "rank" : 19800, + "wordGroups" : [ { + "wordGroup" : [ "interim", "slavery", "prevention" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "050b4899-5383-4894-9970-ff227cdd5686", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "050b4899-5383-4894-9970-ff227cdd5686", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "050b4899-5383-4894-9970-ff227cdd5686", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "050b4899-5383-4894-9970-ff227cdd5686", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", + "label" : "Defendant to notify all names and home address within 3 days to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label" : "Method of notification", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "56190eb2-0035-44cc-b904-b131f299835c", + "label" : "Prohibitions contained in the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3284", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", + "ruleType" : "optional" + }, { + "childResultDefinitionId" : "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", + "ruleType" : "optional" + }, { + "childResultDefinitionId" : "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", + "ruleType" : "optional" + } ] + }, { + "id" : "0021c162-50ee-4769-b30c-c15be2202427", + "label" : "Travel restriction order", + "shortCode" : "TRO", + "level" : "O", + "rank" : 19900, + "wordGroups" : [ { + "wordGroup" : [ "travel", "restriction" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ef4db11b-fc46-44a3-b96d-07df138200bf", + "label" : "Direction to deliver up passport to Court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3078", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "1c40353b-a3b8-4437-8691-6b54d5842010", + "label" : "Community requirement: Prohibited activity for dates", + "shortCode" : "PARD", + "level" : "O", + "rank" : 2700, + "wordGroups" : [ { + "wordGroup" : [ "prohibited", "Activity", "dates" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label" : "Prohibited activities", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "96a36529-f9ff-4804-86d1-361bc9c12910", + "label" : "Dates", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3104", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e513f78d-6ba3-45b2-a3f9-668c9543f76c", + "label" : "No travel restriction order", + "shortCode" : "NOTRO", + "level" : "O", + "rank" : 20000, + "wordGroups" : [ { + "wordGroup" : [ "no", "travel", "restriction" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "88d784e0-e85f-47ac-9c04-a96a9862056e", + "label" : "Reasons for not making a travel restriction order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0f1dce52-dfe0-4ed9-ba4e-ca0f30cfb30f", + "label" : "Travel restriction order revoked", + "shortCode" : "TROR", + "level" : "O", + "rank" : 20100, + "wordGroups" : [ { + "wordGroup" : [ "travel", "restriction", "revoked" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc5bb638-52c0-4815-9816-a473f7503684", + "label" : "Date travel prohibition revoked with effect from", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1029", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d624b709-013b-4865-8de8-e91dc00957af", + "label" : "Travel restriction order suspended", + "shortCode" : "TROS", + "level" : "O", + "rank" : 20200, + "wordGroups" : [ { + "wordGroup" : [ "travel", "restriction", "suspended" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label" : "Duration of suspension", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label" : "Duration of suspension", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label" : "Duration of suspension", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label" : "Duration of suspension", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bc28ef15-b7ce-4be0-98ca-342e0b8df374", + "label" : "Original order contained a direction to surrender passport", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "af519666-bd10-423a-8f4b-9173a5daafca", + "label" : "Psychoactive Substances Prohibition Order", + "shortCode" : "PSPO", + "level" : "O", + "rank" : 20400, + "wordGroups" : [ { + "wordGroup" : [ "psychoactive", "subatance" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label" : "Duration", + "welshLabel" : "Hyd", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label" : "Duration", + "welshLabel" : "Hyd", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label" : "Duration", + "welshLabel" : "Hyd", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label" : "Duration", + "welshLabel" : "Hyd", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a2984926-eec3-4a76-8c47-ac6d708ca853", + "label" : "General prohibitions and restrictions", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4bc401db-3334-4b50-9e4b-df2068e9a675", + "label" : "Describe item to be disposed of", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "54d27556-06bb-411c-80e6-cb8cc82908f8", + "label" : "Specify who is to dispose of item", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3288", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "08f9b07e-ed90-4522-9d14-7d9162186758", + "label" : "Psychoactive Substances Prohibition Order with premises access prohibition", + "shortCode" : "PSPOA", + "level" : "O", + "rank" : 20500, + "wordGroups" : [ { + "wordGroup" : [ "psychoactive", "subatance", "premises", "prohibited" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label" : "Duration", + "welshLabel" : "Hyd", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label" : "Duration", + "welshLabel" : "Hyd", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label" : "Duration", + "welshLabel" : "Hyd", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label" : "Duration", + "welshLabel" : "Hyd", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b037d41d-d72c-4dcb-a3f0-37adc12aae52", + "label" : "Prohibition duration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b037d41d-d72c-4dcb-a3f0-37adc12aae52", + "label" : "Prohibition duration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b037d41d-d72c-4dcb-a3f0-37adc12aae52", + "label" : "Prohibition duration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a2984926-eec3-4a76-8c47-ac6d708ca853", + "label" : "General prohibitions and restrictions", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4bc401db-3334-4b50-9e4b-df2068e9a675", + "label" : "Describe item to be disposed of", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "54d27556-06bb-411c-80e6-cb8cc82908f8", + "label" : "Specify who is to dispose of item", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "01c2bbdc-5765-4952-8575-cca2077349e7", + "label" : "Prohibition applies to whole or part of premises", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0335a74d-2142-413f-9bbc-753581a43707", + "label" : "Prohibited premises", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f9704321-7770-467e-a94b-3e8544c857bc", + "label" : "Describe the part of premises", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bcaf62cd-7270-4e86-b41e-7fcfa3aae1eb", + "label" : "Persons times and circumstances of access prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3288", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f0395277-4d26-4785-acb5-5be597d97ae6", + "label" : "Criminal behaviour order until further order", + "shortCode" : "CRIMBOF", + "level" : "O", + "rank" : 20600, + "wordGroups" : [ { + "wordGroup" : [ "criminal", "behaviour", "Order", "Further" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label" : "Start date of order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4461f7f5-f984-4b6d-9f60-3084e5071382", + "label" : "Requirements", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label" : "Supervisor", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label" : "Supervisor's address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "56190eb2-0035-44cc-b904-b131f299835c", + "label" : "Prohibitions contained in the order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1177", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "187f05c9-8467-4741-8b9e-7a3a5b06f6f6", + "label" : "No evidence offered (summary offence in the Crown Court)", + "shortCode" : "NOEVS", + "level" : "O", + "rank" : 20700, + "wordGroups" : [ { + "wordGroup" : [ "no", "evidence", "offered" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "2050", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f8bd4d1f-1467-4903-b1e6-d2249ccc8c25", + "label" : "Dismissed (No evidence offered)", + "shortCode" : "DINE", + "level" : "O", + "rank" : 20800, + "wordGroups" : [ { + "wordGroup" : [ "Dismissed", "no", "evidence" ] + }, { + "wordGroup" : [ "no evidence", "offered", "Dismissed" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "welshLabel" : "Gwrthod (Dim tystiolaeth wedi’i chyflwyno)", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "2050", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5edd3a3a-8dc7-43e4-96c4-10fed16278ac", + "label" : "Vehicle Excise Back Duty", + "shortCode" : "FVEBD", + "level" : "O", + "rank" : 20900, + "wordGroups" : [ { + "wordGroup" : [ "vehicle", "back", "duty" ] + }, { + "wordGroup" : [ "FVEBD" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f7c7c088-f88e-4c28-917c-78571517aca1", + "label" : "Amount of back duty", + "welshLabel" : "Swm yr ôl-doll", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "AOBD", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Ôl-doll Treth Car", + "isAvailableForCourtExtract" : true, + "financial" : true, + "category" : "F", + "cjsCode" : "3014", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "label" : "Community requirement: Prohibited activity for days of week", + "shortCode" : "PARW", + "level" : "O", + "rank" : 2800, + "wordGroups" : [ { + "wordGroup" : [ "prohibited", "Activity", "days" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label" : "Prohibited activities", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "53f817cd-0070-455e-9826-a103bd4a4a26", + "label" : "Days", + "welshLabel" : "Diwrnod", + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "e652a90a-31cf-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3104", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b81ac80b-81a9-48b6-87b0-cc34610eec97", + "label" : "Restraining order for period", + "shortCode" : "RESTRAOP", + "level" : "O", + "rank" : 700, + "wordGroups" : [ { + "wordGroup" : [ "Restraining", "Order", "Period" ] + }, { + "wordGroup" : [ "RESTRAOP" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", + "label" : "Protected person", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "8df0ec7e-5985-4998-af1a-5da293d9cb3c", + "label" : "Order details", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "47337f1c-e343-4093-884f-035ba96c4db0", + "label" : "Conviction / acquittal", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "8dc70c95-fb09-4842-9138-bc579fceb605", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ea26f773-0a91-4526-b4ad-84d07b5bf940", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3047", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "920183ea-c82a-4110-a937-6a2e7071d908", + "label" : "Certificate of conviction under Section 113 of the Powers of Criminal Courts (Sentencing) Act 2000", + "shortCode" : "QCON", + "level" : "O", + "rank" : 21000, + "wordGroups" : [ { + "wordGroup" : [ "certificate", "conviction" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e3764c59-4e25-4864-a3af-1c2e3390af99", + "label" : "Date of conviction", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", + "label" : "Convicting court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "59828fc1-e8f2-46be-866c-4c8c1d165273", + "label" : "Type of offence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "bfb02d14-243f-4450-9c20-4c0ed9c5d64c", + "label" : "No further review of order required", + "shortCode" : "REVUE", + "level" : "O", + "rank" : 21100, + "wordGroups" : [ { + "wordGroup" : [ "no", "Further", "Review" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9bb5d310-0fef-450d-91d6-117f894001bb", + "label" : "Offences taken into consideration", + "shortCode" : "TIC", + "level" : "D", + "rank" : 21200, + "wordGroups" : [ { + "wordGroup" : [ "TIC" ] + }, { + "wordGroup" : [ "taken", "into", "consideration" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a292fb05-4b6b-43b3-8fdc-1ce5c1114a45", + "label" : "Number of offences admitted and taken into consideration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3118", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "87eed0b7-b141-4a3c-b7b0-ea8bb23ec3b2", + "label" : "Warrant not executed", + "shortCode" : "WNE", + "level" : "O", + "rank" : 21300, + "wordGroups" : [ { + "wordGroup" : [ "warrant", "not", "executed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "9565f244-bef4-43a0-b32c-0d12faceb5de", + "label" : "Reason for warrant not executed", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "381cb2bd-4993-476d-9c8f-3bd19f288120", + "label" : "Reason warrant not executed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "2509", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4d5f25a5-9102-472f-a2da-c58d1eeb9c93", + "label" : "Warrant withdrawn", + "shortCode" : "WWDN", + "level" : "O", + "rank" : 21400, + "wordGroups" : [ { + "wordGroup" : [ "warrant", "withdrawn" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "81aaac7d-84c3-45cb-a845-69b7f3fb20fe", + "label" : "Reason for withdrawing warrant", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "2509", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "8e7f7ffd-eceb-44ea-8efd-bc6c99913d85", + "label" : "Restraining order discharged", + "shortCode" : "RESTRAD", + "level" : "O", + "rank" : 21500, + "wordGroups" : [ { + "wordGroup" : [ "Restraining", "Order", "discharged" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8a11df41-cc91-4b67-80c4-6108c9b5e324", + "label" : "Third party's name (victim or police)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a06952c1-4bfe-4004-b6ac-6908afefdd6a", + "label" : "Third party's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2ade6e72-ee41-4718-87a0-1a396579ac56", + "label" : "Original order made by", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1029", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c2200b1d-a47d-4d02-9b88-58f8bbed7ea9", + "label" : "Restraining order varied", + "shortCode" : "RESTRAV", + "level" : "O", + "rank" : 21600, + "wordGroups" : [ { + "wordGroup" : [ "Restraining", "Order", "varied" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8a11df41-cc91-4b67-80c4-6108c9b5e324", + "label" : "Third party's name (victim or police)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a06952c1-4bfe-4004-b6ac-6908afefdd6a", + "label" : "Third party's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2ade6e72-ee41-4718-87a0-1a396579ac56", + "label" : "Original order made by", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2da599de-da03-492e-b66f-e7aad32fcfa5", + "label" : "Terms of variation", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "49a85507-8a96-4201-965d-a11879c73f8c", + "label" : "Order now expires", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1030", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c32b9ca1-78da-4c7c-bde6-8218aed2bb80", + "label" : "Adjournment refused", + "shortCode" : "ADR", + "level" : "O", + "rank" : 21700, + "wordGroups" : [ { + "wordGroup" : [ "adjournment", "refused" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "61d8be36-adac-4a47-aa65-a46962f2bd8b", + "label" : "Reason for refusal", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Bydd y gwrandawiad nesaf yn y llys ynadon", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "bc4bb54f-1fa8-43d8-8021-c1e07994d5f6", + "label" : "Racially aggravated offence", + "shortCode" : "RA", + "level" : "O", + "rank" : 21800, + "wordGroups" : [ { + "wordGroup" : [ "racially", "aggravated" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "07f5229c-cf4c-45f2-a49b-703d11bf5b41", + "label" : "Racially and religiously aggravated offence", + "shortCode" : "RARE", + "level" : "O", + "rank" : 21900, + "wordGroups" : [ { + "wordGroup" : [ "racially", "religious", "aggravated" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "label" : "Community requirement: Foreign travel prohibition any country for period", + "shortCode" : "FTPCP", + "level" : "O", + "rank" : 2900, + "wordGroups" : [ { + "wordGroup" : [ "foreign", "travel", "any", "country", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "periodOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "periodOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "periodOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label" : "Start date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3147", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "bcd4f58f-c53e-420f-8d54-c42f125522f9", + "label" : "Religiously aggravated offence", + "shortCode" : "RE", + "level" : "O", + "rank" : 22000, + "wordGroups" : [ { + "wordGroup" : [ "religious", "aggravated" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f25de68a-e719-42dd-9153-6687af843434", + "label" : "Aggravated due to transgender", + "shortCode" : "TGG", + "level" : "O", + "rank" : 22100, + "wordGroups" : [ { + "wordGroup" : [ "transgender", "aggravated" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "6fcb509f-1343-46df-a79b-7f650d84d3f2", + "label" : "Aggravated due to transgender of victim", + "shortCode" : "TGV", + "level" : "O", + "rank" : 22200, + "wordGroups" : [ { + "wordGroup" : [ "transgender", "aggravated", "victim" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "cfe8ea34-4461-42e1-836c-2319924b4ea6", + "label" : "General disqualification for a period", + "shortCode" : "DGEN", + "level" : "O", + "rank" : 22300, + "wordGroups" : [ { + "wordGroup" : [ "general", "disqualification", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label" : "Period of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label" : "Period of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label" : "Period of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label" : "Period of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1b7eacb5-af56-4f40-b808-40270fb900cd", + "label" : "Nature of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "db41c015-10b7-4947-9524-ce61344c8d6a", + "label" : "Reason for disqualification", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "95d8d079-3680-4819-9bf7-5e268aae8ff0", + "label" : "General disqualification for life", + "shortCode" : "DGENL", + "level" : "O", + "rank" : 22400, + "wordGroups" : [ { + "wordGroup" : [ "general", "disqualification", "Life" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1b7eacb5-af56-4f40-b808-40270fb900cd", + "label" : "Nature of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "db41c015-10b7-4947-9524-ce61344c8d6a", + "label" : "Reason for disqualification", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "49297a56-1d57-4f3a-862a-351a9c7372a7", + "label" : "Female genital mutilation protection order until further order", + "shortCode" : "FGMPO", + "level" : "O", + "rank" : 22500, + "wordGroups" : [ { + "wordGroup" : [ "female", "genital", "mutilation", "Further" ] + }, { + "wordGroup" : [ "fgm", "Further" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label" : "Name of girl protected", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0987a7f2-c628-43f4-b978-1a4db2e4c45b", + "label" : "Terms of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b3c338ee-3a15-4f46-bf51-4ed3dd9fa831", + "label" : "Female genital mutilation protection order for period", + "shortCode" : "FGMPOP", + "level" : "O", + "rank" : 22600, + "wordGroups" : [ { + "wordGroup" : [ "female", "genital", "mutilation", "Period" ] + }, { + "wordGroup" : [ "fgm", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label" : "Name of girl protected", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0987a7f2-c628-43f4-b978-1a4db2e4c45b", + "label" : "Terms of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "3f6ea21a-1e7a-4fbf-b6bd-a1d0d59d9636", + "label" : "Female genital mutilation protection order until end date", + "shortCode" : "FGMPOE", + "level" : "O", + "rank" : 22700, + "wordGroups" : [ { + "wordGroup" : [ "female", "genital", "mutilation", "end" ] + }, { + "wordGroup" : [ "fgm", "end" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", + "label" : "End date of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label" : "Name of girl protected", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0987a7f2-c628-43f4-b978-1a4db2e4c45b", + "label" : "Terms of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a9ec3d80-c37a-4f51-9706-e33b6feb6d2d", + "label" : "Female genital mutilation protection order varied (until further order)", + "shortCode" : "FGMPOV", + "level" : "O", + "rank" : 22800, + "wordGroups" : [ { + "wordGroup" : [ "female", "genital", "mutilation", "varied", "Further" ] + }, { + "wordGroup" : [ "fgm", "varied", "Further" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label" : "Name of girl protected", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f7d348da-6f8b-4170-9660-55ee16453865", + "label" : "Terms of variation", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9f707be3-97fb-4ea8-984b-41547adc189c", + "label" : "Female genital mutilation protection order varied (for period)", + "shortCode" : "FGMPOVP", + "level" : "O", + "rank" : 22900, + "wordGroups" : [ { + "wordGroup" : [ "female", "genital", "mutilation", "varied", "Period" ] + }, { + "wordGroup" : [ "fgm", "varied", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label" : "Period of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label" : "Name of girl protected", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f7d348da-6f8b-4170-9660-55ee16453865", + "label" : "Terms of variation", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "label" : "Community requirement: Foreign travel prohibition with list of countries for period", + "shortCode" : "FTPLP", + "level" : "O", + "rank" : 3000, + "wordGroups" : [ { + "wordGroup" : [ "foreign", "travel", "country", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "periodOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "periodOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "periodOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f77b3b14-91b2-41b7-966b-0f0bad2664e2", + "label" : "Countries", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label" : "Start date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3147", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "694af16b-9c84-42a4-a659-3f9ce4cf7d02", + "label" : "Female genital mutilation protection order varied (until end date)", + "shortCode" : "FGMPOVE", + "level" : "O", + "rank" : 23000, + "wordGroups" : [ { + "wordGroup" : [ "female", "genital", "mutilation", "varied", "end" ] + }, { + "wordGroup" : [ "fgm", "varied", "end" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label" : "Name of girl protected", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f7d348da-6f8b-4170-9660-55ee16453865", + "label" : "Terms of variation", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", + "label" : "End date of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f0d12a39-5c34-43c4-8816-968a9b9e3b60", + "label" : "Female genital mutilation protection order discharged", + "shortCode" : "FGMPOD", + "level" : "O", + "rank" : 23100, + "wordGroups" : [ { + "wordGroup" : [ "female", "genital", "mutilation", "discharged" ] + }, { + "wordGroup" : [ "fgm", "discharged" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", + "label" : "Passport surrender", + "shortCode" : "PASSS", + "level" : "O", + "rank" : 600, + "wordGroups" : [ { + "wordGroup" : [ "passport", "surrender" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "68077602-7fa8-4645-9bc6-bc59ed409f6f", + "label" : "Name of Police Station to surrender passport", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b87786ca-5112-4841-9c3e-a131186b1762", + "label" : "Passport to be surrendered on or before", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0cee6bf5-21e4-403f-ba45-73e029ab0c73", + "label" : "Specify how many days to surrender passport in", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e0294281-d95d-48e2-8bd0-d7af53740ac9", + "label" : "Passport surrender variation", + "shortCode" : "PASSSV", + "level" : "O", + "rank" : 23200, + "wordGroups" : [ { + "wordGroup" : [ "passport", "surrender", "varied" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "68077602-7fa8-4645-9bc6-bc59ed409f6f", + "label" : "Name of Police Station to surrender passport", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b87786ca-5112-4841-9c3e-a131186b1762", + "label" : "Passport to be surrendered on or before", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0cee6bf5-21e4-403f-ba45-73e029ab0c73", + "label" : "Specify how many days to surrender passport in", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "62eb1129-38b8-43aa-855c-bec3569bd17f", + "label" : "Specify date passport originally surrendered on date (now to be returned)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "63f54361-69dd-4d8e-aece-8d87a6064d20", + "label" : "Disqualified for having custody of a dog for period", + "shortCode" : "DCUST", + "level" : "O", + "rank" : 23300, + "wordGroups" : [ { + "wordGroup" : [ "disqualified", "dog", "custody", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3023", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a59be074-10ea-4552-bc83-51d069304402", + "label" : "Disqualified for having custody of a dog for life", + "shortCode" : "DCUSTL", + "level" : "O", + "rank" : 23400, + "wordGroups" : [ { + "wordGroup" : [ "disqualified", "dog", "custody", "Life" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3023", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : true, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "95d2a99a-d8ce-43ae-b5d0-d0dfd8d850f1", + "label" : "Order to keep dog under proper control", + "shortCode" : "DKPC", + "level" : "O", + "rank" : 23500, + "wordGroups" : [ { + "wordGroup" : [ "dog", "control" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bfbb887-7b2d-4423-b80f-f55b19224806", + "label" : "Dog to be fitted with a muzzle sufficient to prevent it biting any person", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e71dd017-100f-4fbc-aa8f-07cc33837375", + "label" : "Dog to be securely held on a lead by a person who is not less than 16 years old", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4c38a549-71e8-40d2-be69-9309653905c3", + "label" : "Dog excluded from", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cdca7321-e930-480a-80bb-60064432f8d1", + "label" : "Specify terms", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "690bddca-7264-4e3d-9d64-ac7a00fca7c7", + "label" : "Describe dog eg name, breed, colour", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3034", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "6bd5d409-d656-4829-9ebd-f795e4564c7c", + "label" : "Aggravated due to sexual orientation", + "shortCode" : "SEXO", + "level" : "O", + "rank" : 23600, + "wordGroups" : [ { + "wordGroup" : [ "aggravted", "sexual", "orientation" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AW", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0bfb5f42-062b-4473-9c10-bf98315f8117", + "label" : "Aggravated due to sexual orientation of victim", + "shortCode" : "SEXOV", + "level" : "O", + "rank" : 23700, + "wordGroups" : [ { + "wordGroup" : [ "aggravted", "sexual", "orientation", "victiim" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AV", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "98dc94c8-45f0-4961-bb34-cd979dcc2874", + "label" : "Order that dog be destroyed", + "shortCode" : "DDES", + "level" : "O", + "rank" : 23800, + "wordGroups" : [ { + "wordGroup" : [ "dog", "destroyed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a3ea06d8-b297-4ccc-ac1f-f37bd3054388", + "label" : "Details of dog", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "783e2975-f9aa-4c7e-90a8-2dd6b16144a4", + "label" : "Further information about destruction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3021", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c1b0dedf-1380-4889-9d31-1816b850e348", + "label" : "Community requirement: Foreign travel prohibition with list of countries for dates", + "shortCode" : "FTPLD", + "level" : "O", + "rank" : 3100, + "wordGroups" : [ { + "wordGroup" : [ "foreign", "travel", "country", "any", "dates" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f77b3b14-91b2-41b7-966b-0f0bad2664e2", + "label" : "Countries", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "464b2a25-dfe4-42b2-8cc7-29a66edf9743", + "label" : "Dates of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "datesOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3147", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0b4fee38-ee9b-4aef-9179-cda3e1dbc607", + "label" : "Disqualified from keeping a dog for period", + "shortCode" : "DDIS", + "level" : "O", + "rank" : 23900, + "wordGroups" : [ { + "wordGroup" : [ "disqualified", "dog", "keeping", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3022", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e715521c-a4ae-40b3-b127-7612a0b6f32e", + "label" : "Disqualified from keeping a dog for life", + "shortCode" : "DDISL", + "level" : "O", + "rank" : 24000, + "wordGroups" : [ { + "wordGroup" : [ "disqualified", "dog", "keeping", "Life" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3022", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : true, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "29c0a838-14ac-42c0-870c-ee1a133601e3", + "label" : "Aggravated due to hostility based on disability of victim", + "shortCode" : "DISV", + "level" : "O", + "rank" : 24100, + "wordGroups" : [ { + "wordGroup" : [ "aggravated", "disability", "victim" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AX", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a395f8db-9473-4172-8474-c0fb5e1bbefb", + "label" : "Motivated by hostility towards persons who have a disability or a particular disability", + "shortCode" : "DISG", + "level" : "O", + "rank" : 24200, + "wordGroups" : [ { + "wordGroup" : [ "motivated", "disability" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AY", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e7ef0248-fe71-4733-8749-ff0c23a04f95", + "label" : "Shotgun Certificate cancelled", + "shortCode" : "CSHOC", + "level" : "O", + "rank" : 24300, + "wordGroups" : [ { + "wordGroup" : [ "shotgun", "cancelled" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3035", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Forfeiture and deprivation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "19026543-7d59-467b-9649-35ddf89b30cc", + "label" : "Firearm Certificate Cancelled", + "shortCode" : "CFIRC", + "level" : "O", + "rank" : 24400, + "wordGroups" : [ { + "wordGroup" : [ "firearm", "cancelled" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3035", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Forfeiture and deprivation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0b472a9c-5bef-4de7-bbd9-20d22e6d07eb", + "label" : "Defendant's costs payable from central funds - sum assessed", + "shortCode" : "DCCFSA", + "level" : "O", + "rank" : 24500, + "wordGroups" : [ { + "wordGroup" : [ "defendant", "Costs", "central", "assessed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "672c8f19-2f64-4720-8638-1d7c7e66deda", + "label" : "Sum assessed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label" : "Creditor's name and address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b2fb2c0e-5c71-4a07-a870-506030f2d5ce", + "label" : "Defendant's costs payable from central funds - sum to be assessed", + "shortCode" : "DCCFSTA", + "level" : "O", + "rank" : 24600, + "wordGroups" : [ { + "wordGroup" : [ "defendant", "Costs", "central", "to", "be", "assessed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b17f9f16-20d4-4bb0-8872-5ab4878245c2", + "label" : "Legal / defendant's personal costs", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5609ef92-3d72-4106-915a-aa83401bcaa3", + "label" : "Percentage reduction ordered", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "feb9ebe0-b9bf-4b71-92e3-dcf5ceeeeada", + "label" : "Other party's costs from central funds - sum assessed", + "shortCode" : "CFCAOA", + "level" : "O", + "rank" : 24700, + "wordGroups" : [ { + "wordGroup" : [ "other", "Costs", "central", "assessed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", + "label" : "Payment type", + "welshLabel" : "Math o daliad", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label" : "Creditor's name and address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "672c8f19-2f64-4720-8638-1d7c7e66deda", + "label" : "Sum assessed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ed37c314-3700-4646-94f7-b2ec2cf8cef2", + "label" : "Other party's costs from central funds - sum to be assessed", + "shortCode" : "CFCAOTA", + "level" : "O", + "rank" : 24800, + "wordGroups" : [ { + "wordGroup" : [ "other", "Costs", "central", "to", "be", "assessed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", + "label" : "Payment type", + "welshLabel" : "Math o daliad", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label" : "Creditor's name and address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "label" : "Community requirement: Foreign travel prohibition any country for dates", + "shortCode" : "FTPCD", + "level" : "O", + "rank" : 3200, + "wordGroups" : [ { + "wordGroup" : [ "foreign", "travel", "any", "dates" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "464b2a25-dfe4-42b2-8cc7-29a66edf9743", + "label" : "Dates of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "datesOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3147", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5ab30f3f-ef9a-46d0-8ccc-ddd2be8f4eee", + "label" : "Prosecutor's costs from central funds - sum assessed", + "shortCode" : "CFCAPA", + "level" : "O", + "rank" : 24900, + "wordGroups" : [ { + "wordGroup" : [ "prosecution", "Costs", "central", "assessed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label" : "Creditor's name and address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "672c8f19-2f64-4720-8638-1d7c7e66deda", + "label" : "Sum assessed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ab3df821-8a0b-408e-802d-ea04e3a1a8c5", + "label" : "Prosecutor's costs from central funds - sum to be assessed", + "shortCode" : "CFCAPTA", + "level" : "O", + "rank" : 25000, + "wordGroups" : [ { + "wordGroup" : [ "prosecution", "Costs", "central", "to", "be", "assessed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label" : "Creditor's name and address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5609ef92-3d72-4106-915a-aa83401bcaa3", + "label" : "Percentage reduction ordered", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "6d2cd232-d38f-413f-bbec-5f83ef379b90", + "label" : "Debtor to be searched", + "shortCode" : "SRCH", + "level" : "D", + "rank" : 25100, + "wordGroups" : [ { + "wordGroup" : [ "debtor", "searched" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d1f3066a-2d42-432a-9531-4194c42c9759", + "label" : "Money found to be applied to debt", + "shortCode" : "APMONEY", + "level" : "D", + "rank" : 25200, + "wordGroups" : [ { + "wordGroup" : [ "money", "applied", "debt" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8d72d822-d3e2-4c30-b089-ab36f58ebefe", + "label" : "Amount to be applied", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "57bec156-6591-4449-8bc4-4981d71b4e8c", + "label" : "Money found not to be taken", + "shortCode" : "NTMONEY", + "level" : "D", + "rank" : 25300, + "wordGroups" : [ { + "wordGroup" : [ "money", "not", "taken" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "dc0a94ae-d212-44ab-b350-8a566533eeb4", + "label" : "Amount of money court directs should not be taken", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d1aa9b8b-2aca-49a0-9f04-99eba9fd8491", + "label" : "Reason for not taking money", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "261c0c09-d9ef-4422-b30e-248461d777ee", + "label" : "Imprisonment in default of payment - on same date as imposition", + "shortCode" : "IMPDP", + "level" : "O", + "rank" : 25400, + "wordGroups" : [ { + "wordGroup" : [ "imprisonment", "default", "payment" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c8849cbc-f083-465b-af48-528ba436b90f", + "label" : "Imprisonment reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f2cff709-d97f-4a59-b971-c9adba389319", + "label" : "Further reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label" : "Total amount enforced", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "TOTENF", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", + "label" : "Sentenced in absence", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "96cab958-f6f1-460b-875a-2b1e80a8b1e4", + "label" : "Detention in default of payment - on same date as imposition", + "shortCode" : "DETDP", + "level" : "O", + "rank" : 25500, + "wordGroups" : [ { + "wordGroup" : [ "detention", "default", "payment" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ab6cc1f6-011b-4744-accc-bba181614188", + "label" : "Detention Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab6cc1f6-011b-4744-accc-bba181614188", + "label" : "Detention Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab6cc1f6-011b-4744-accc-bba181614188", + "label" : "Detention Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab6cc1f6-011b-4744-accc-bba181614188", + "label" : "Detention Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c8849cbc-f083-465b-af48-528ba436b90f", + "label" : "Imprisonment reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f2cff709-d97f-4a59-b971-c9adba389319", + "label" : "Further reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "e36171b4-d3fb-4260-88f3-deca99288512", + "label" : "Total amount enforced", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", + "label" : "Sentenced in absence", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1510", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "85c75b3b-18c4-460b-8e06-6358ae410536", + "label" : "Notification of driver's disability to DVLA", + "shortCode" : "DRDIS", + "level" : "D", + "rank" : 25600, + "wordGroups" : [ { + "wordGroup" : [ "notification", "disability", "dvla" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "c00d52fa-2c76-4681-ae67-94d0a9cec02c", + "label" : "Defendant told DVLA would be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9c5e9397-6c28-4484-b075-fd0d08143dd4", + "label" : "Defendant not told DVLA would be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4f97544b-1c9b-4350-8dcb-62e2017e3f8c", + "label" : "Nature and source of disability information", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "58a92700-b229-4b6d-bf63-d9df9cbc59af", + "label" : "Court contact (SPOC)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a96c1135-3057-453e-80c8-602a7f79013a", + "label" : "Hospital order", + "shortCode" : "MHHO", + "level" : "O", + "rank" : 25700, + "wordGroups" : [ { + "wordGroup" : [ "hospital", "Order" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "701b27ad-c54a-4011-a605-8c438ff685c9", + "label" : "Name of hospital where defendant will be admitted or detained", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39001635-2dc8-4a58-9934-eeb60fa4d93b", + "label" : "Name of hospital unit", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", + "label" : "Hospital address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "611a9bc2-4a25-438c-90cc-bf86fdd30d86", + "label" : "Mental health conviction status", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label" : "Place of safety", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label" : "Conveyor/custodian", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "96949d0c-a59c-4a6f-a563-97456c985987", + "label" : "Further directions regarding conveyance to place of safety", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1008", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ef1f6633-3c0b-4adc-b5b8-8ef21e91417f", + "label" : "Guardianship Order", + "shortCode" : "MHGO", + "level" : "O", + "rank" : 25800, + "wordGroups" : [ { + "wordGroup" : [ "guardianship", "Order" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "440b778c-98c6-4764-b627-8851b5ef0834", + "label" : "Name of the guardian with whom defendant will be placed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "85e500c7-5cf4-4e23-8dcf-1e413c805031", + "label" : "Guardian's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "611a9bc2-4a25-438c-90cc-bf86fdd30d86", + "label" : "Mental health conviction status", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1014", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a19714a0-5d58-4666-bc15-3d9dd2692f77", + "label" : "Community requirement: Foreign travel with list of countries for dates", + "shortCode" : "FTCD", + "level" : "O", + "rank" : 3300, + "wordGroups" : [ { + "wordGroup" : [ "foreign", "travel", "country", "dates" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3147", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "37853bb7-8844-4cc1-8a34-fa7e4d89d87f", + "label" : "Restitution Order", + "shortCode" : "RESTIT", + "level" : "O", + "rank" : 25900, + "wordGroups" : [ { + "wordGroup" : [ "restitution", "Order" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1d71816c-6972-4a50-9493-719295a99ac8", + "label" : "Person to recover goods / money", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "eb3a82b0-b56b-4341-977d-9b76a377ce91", + "label" : "Specify stolen goods to be restored to victim", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "43627e85-4cc4-4e2c-8fb6-95a70cd378d1", + "label" : "Specify goods representing stolen goods (proceeds) to be transferred to victim", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8c26d561-9275-4406-b38e-26c1e6f22d6e", + "label" : "Specify sum to be paid out of money taken out of offender's possession on apprehension", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3013", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "62510cc8-7dd6-4c98-bc3a-fa24c730f91c", + "label" : "Proceedings stayed", + "shortCode" : "STAYP", + "level" : "O", + "rank" : 26000, + "wordGroups" : [ { + "wordGroup" : [ "proceedings", "stayed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8e36cc12-aabc-485d-bda7-76230bab0399", + "label" : "Circumstances leading to staying proceedings", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2fde3814-b542-4623-8bf6-8db5fcb86b11", + "label" : "Additional reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "2061", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ef2eb362-dae5-4ad7-87c6-d1262d55533e", + "label" : "Disqualification order relating to animals for period", + "shortCode" : "ADISQ", + "level" : "O", + "rank" : 26100, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "animal", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2bf54447-328c-4c1b-a123-341adbd52172", + "label" : "Disqualification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", + "label" : "Type of animal", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "db46c413-91e0-46d9-9b56-9eb54232761e", + "label" : "Type of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ce6cdc61-03af-4807-bc55-17e57e263434", + "label" : "All animals kept in contravention of this disqualifciation to be seized", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "269324e9-52a1-4b7c-a023-b41f57b4b811", + "label" : "Directions regarding seizure", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "01431fda-56cf-4447-89b4-64b0777d791d", + "label" : "Minimum period before defendant may apply to terminate order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label" : "Order suspended pending appeal", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", + "label" : "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3115", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "94f2989a-f4fd-4a39-a67f-71a4c0828f9d", + "label" : "Disqualification order relating to animals for life", + "shortCode" : "ADISQL", + "level" : "O", + "rank" : 26200, + "wordGroups" : [ { + "wordGroup" : [ "disqualification", "animal", "Life" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", + "label" : "Type of animal", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "db46c413-91e0-46d9-9b56-9eb54232761e", + "label" : "Type of disqualification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ce6cdc61-03af-4807-bc55-17e57e263434", + "label" : "All animals kept in contravention of this disqualifciation to be seized", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "269324e9-52a1-4b7c-a023-b41f57b4b811", + "label" : "Directions regarding seizure", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "01431fda-56cf-4447-89b4-64b0777d791d", + "label" : "Minimum period before defendant may apply to terminate order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label" : "Order suspended pending appeal", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", + "label" : "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3115", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : true, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a05f96e2-d36f-48aa-b6f4-1daefd10bca3", + "label" : "Surety discharged", + "shortCode" : "SURDIS", + "level" : "O", + "rank" : 26300, + "wordGroups" : [ { + "wordGroup" : [ "surety", "discharged" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a3cd0c91-9d16-446a-94a7-7d3db6216587", + "label" : "Surety's Name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a22f62fa-b9c5-45be-bd79-07d3ae7418f9", + "label" : "Payment terms - no payment term set - defendant serving custodial sentence", + "shortCode" : "PTNC", + "level" : "D", + "rank" : 26500, + "wordGroups" : [ { + "wordGroup" : [ "no", "payment", "terms" ] + }, { + "wordGroup" : [ "payment", "custody" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "851e2be3-1436-47a4-824d-ca3168647f0c", + "label" : "Collecting Magistrates' Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Payment terms", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e26940b7-2534-42f2-9c44-c70072bf6ad2", + "label" : "Remanded In custody with bail direction", + "shortCode" : "RIB", + "level" : "O", + "rank" : 26600, + "wordGroups" : [ { + "wordGroup" : [ "remand", "conditional", "bail", "direction" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label" : "Remand basis", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : "prison", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9ecac6aa-a205-481f-b67d-e2425ad074cf", + "label" : "Bail date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e200e964-628a-4284-bd4e-fab9c819f7f1", + "label" : "Bail time", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TIME", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", + "label" : "Bail condition reason", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual" : null, + "reference" : "bailConditionReason", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "680e4cfd-36e0-4b22-8a30-4142bd42bf16", + "label" : "BASS provider", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4046", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Remand conditional bail", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "16a25613-487d-4359-8fc6-9a3968ff669f", + "label" : "Remanded in custody for medical reports", + "shortCode" : "REMMED", + "level" : "O", + "rank" : 26700, + "wordGroups" : [ { + "wordGroup" : [ "remand", "medical" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3c16ae6f-a6cf-4adc-b483-67875213d4f2", + "label" : "Remanded under Section number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a74b54d3-a8f9-49bf-b2d7-edd991d1537a", + "label" : "Type of medical report required", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "febc23f3-db6f-41ae-8ed7-37920638f597", + "label" : "Reason for report", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8fa194e5-6d5f-41f1-9315-14a779586727", + "label" : "Medical History", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "34b5e96c-ae6c-4b38-91ee-2a04349b8871", + "label" : "Offence Details", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c3bcc21e-48e1-43f0-9546-4223f223e7a7", + "label" : "Criminal Record", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8061b2b3-ca56-4002-a76b-6d452bbfa61f", + "label" : "Home Circumstances", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "749a0db6-4186-4f82-935d-d8084f353d19", + "label" : "Officer in case", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7f5235bc-673b-47a7-97d3-616d9095f606", + "label" : "Probation/Probation Services Officer", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4ddda002-526e-4d70-9df7-eeaae75cfab7", + "label" : "Pre-release bail condition: Passport - give to the court any passport held", + "shortCode" : "PRBCP1", + "level" : "O", + "rank" : 26800, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "passport", "court" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JL", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d85486c4-06f1-4813-859b-5495ca578bde", + "label" : "Pre-release bail condition: Passport - give to HM Revenue and Customs any passport held", + "shortCode" : "PRBCP2", + "level" : "O", + "rank" : 27000, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "passport", "hmrc" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "rollUpPrompts": false, + "publishedForNows": false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "label" : "Community requirement: Foreign travel prohibition with excepted country for period", + "shortCode" : "FTPEP", + "level" : "O", + "rank" : 3400, + "wordGroups" : [ { + "wordGroup" : [ "foreign", "travel", "except", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "periodOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "periodOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label" : "Period of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "periodOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", + "label" : "Country allowed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "countryAllowed", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label" : "Start date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3147", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "rollUpPrompts": false, + "publishedForNows": false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "bb0a2862-a565-46aa-96ed-1e6f972949d0", + "label" : "Pre-release bail condition: Passport - give to Police Station", + "shortCode" : "PRBCP3", + "level" : "O", + "rank" : 27100, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "passport", "police" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label" : "Police Station Name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JM", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "1ebd5ca1-866d-43a0-ad9a-464e8a228235", + "label" : "Pre-release bail condition: Passport - surrender to Police Station during football control period", + "shortCode" : "PRBCP4", + "level" : "O", + "rank" : 27200, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "football", "police" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label" : "Police Station Name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JM", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "279fd36e-17c5-42b2-b56b-a6ab27b9b592", + "label" : "Pre-release bail condition: Passport - give to the court any identity card held which could be used as a travel document within the European Economic Area", + "shortCode" : "PRBCP5", + "level" : "O", + "rank" : 27300, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "travel", "document", "European", "court" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JL", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", + "label" : "Pre-release bail condition: Passport - give to HM Revenue and Customs any identity card held which could be used as a travel document within the European Economic Area", + "shortCode" : "PRBCP6", + "level" : "O", + "rank" : 27400, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "travel", "document", "European", "hmrc" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e5864697-640a-47be-9289-9e6205bbe579", + "label" : "Pre-release bail condition: Passport - give to police station any identity card held which could be used as a travel document within the European Economic Area", + "shortCode" : "PRBCP7", + "level" : "O", + "rank" : 27500, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "travel", "document", "European", "police" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label" : "Police Station Name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JM", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] }, { - "id": "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", - "label": "Adjournment reason: Insufficient court time to hear the case", - "shortCode": "INSUF", + "id": "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", + "label": "Pre-release bail condition: Passport - surrender identity card to police station during football control period", + "shortCode": "PRBCP8", "level": "O", - "rank": 11200, - "wordGroups": [ - { - "wordGroup": [ - "adjournment", - "insufficient", - "Time" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "welshLabel": "Rheswm dros ohirio: Nid oedd digon o amser i wrando'r achos", + "rank": 83800, + "isBooleanResult": false, "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "KQ", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Adjournment reasons", - "terminatesOffenceProceedings": false, - "lifeDuration": false, + "financial": "N", + "unscheduled": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, "publishedAsAPrompt": true, "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9fd6a4ef-1055-4e54-b035-f1130a524388", - "label": "Adjournment reason: Non-standard reason", - "shortCode": "NSR", - "level": "O", - "rank": 11300, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, "wordGroups": [ { "wordGroup": [ - "adjournment", - "reason", - "other" + "PRBCP8" ] }, { "wordGroup": [ - "adjournment", - "reason", - "non-standard" + "pre-release", + "travel", + "document", + "European", + "police", + "football" ] } ], - "userGroups": [], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Pre-release bail conditions", + "qualifier": "JM", + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "resultTextTemplate": "Passport - surrender identity card to {policeStationName} police station during football control period", + "terminatesOffenceProceedings": false, "prompts": [ { - "id": "28a271c5-aff0-4e60-b599-88e441960699", - "label": "Reason for adjournment", - "welshLabel": "Rheswm dros ohirio", + "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label": "Police Station Name", "resultPromptRule": "mandatory", "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "NSR", + "userGroups": [], "courtExtract": "Y", - "durationSequence": null + "financial": "N", + "jurisdiction": "B", + "min": "1", + "max": "70", + "reference": "policeStationName" } - ], - "welshLabel": "Rheswm dros ohirio: Rheswm ansafonol", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Adjournment reasons", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] + ] }, { - "id": "29e02fa1-42ce-4eec-914e-e62508397a16", - "label": "No compensation reason", - "shortCode": "NCR", + "id" : "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", + "label" : "Pre-release bail condition: Surety - find a surety", + "shortCode" : "PRBCS1", + "level" : "O", + "rank" : 27700, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "surety" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", + "label" : "In the sum of", + "welshLabel" : "Y swm o", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JU", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", + "label" : "Pre-release bail condition: Surety - find a continuous surety", + "shortCode" : "PRBCS2", + "level" : "O", + "rank" : 27800, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "surety", "conditional" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", + "label" : "In the sum of", + "welshLabel" : "Y swm o", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JV", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4558f9b2-47f8-4430-a0f8-684df5d55761", + "label" : "Pre-release bail condition: Surety - find sureties", + "shortCode" : "PRBCS3", + "level" : "O", + "rank" : 27900, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "sureties" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5139e711-b645-4b1c-af81-84f5887abdf6", + "label" : "Number of sureties", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", + "label" : "In the sum of", + "welshLabel" : "Y swm o", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JW", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b9581c12-81c9-434d-8851-03d9638547fa", + "label" : "Pre-release bail condition: Security - lodge with Court", + "shortCode" : "PRBCSE1", + "level" : "O", + "rank" : 28000, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "security", "lodge" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e18066ab-1dd0-4bee-a43d-30417de4c3c3", + "label" : "Specify what is to be lodged", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JT", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "364d3065-0699-4df1-a68f-a69c429d0867", + "label" : "Community requirement: Foreign travel prohibition with excepted country for dates", + "shortCode" : "FTPED", + "level" : "O", + "rank" : 3500, + "wordGroups" : [ { + "wordGroup" : [ "foreign", "travel", "except", "dates" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", + "label" : "Country allowed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "countryAllowed", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "464b2a25-dfe4-42b2-8cc7-29a66edf9743", + "label" : "Dates of prohibition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "datesOfProhibition", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3147", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "rollUpPrompts": false, + "publishedForNows": true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b922e6bd-70a4-4b28-b583-165179af6162", + "label" : "Pre-release bail condition: Security - pay a deposit to Court", + "shortCode" : "PRBCSE2", + "level" : "O", + "rank" : 28100, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "security", "deposit" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "04d4075d-b306-44f4-9200-db9ad9577ea2", + "label" : "Amount", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JT", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", + "label" : "Pre-release bail condition: Other - give the court a telephone number and tell the court immediately if the number changes or you can no longer be contacted on that number", + "shortCode" : "PRBCT", + "level" : "O", + "rank" : 28200, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "telephone", "number" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "68972040-55eb-42c8-aac6-975f88d64511", + "label" : "Date by which must give telephone number", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JG", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c51e3522-5363-4af0-b5af-97a5f9eb5462", + "label" : "Pre-release bail condition: Other", + "shortCode" : "PRBCO", + "level" : "O", + "rank" : 28300, + "wordGroups" : [ { + "wordGroup" : [ "pre-release", "other" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ad5ad2de-35e5-4395-b5e7-913d0fc09349", + "label" : "Specify", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "RA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Pre-release bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "525c4660-9a0b-4a86-80fc-0efce539d6a5", + "label" : "Bail condition: Assessments/Reports - undergo an assessment for dependency on Class A drugs and participate in any follow-up assessment, assistance or treatment considered appropriate", + "shortCode" : "PORAR1", + "level" : "O", + "rank" : 28400, + "wordGroups" : [ { + "wordGroup" : [ "bail", "assessment", "Drug" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2fc5fe29-28f8-47dc-86f9-7b3221a71975", + "label" : "Specify qualified person to conduct assessments/reports", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "specifyQualifiedPersonToConductAssessmentsreports", + "courtExtract" : "Y", + "durationSequence" : null, + "hidden": true + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "GT", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e073f3ba-2585-4c0d-8c31-e51a1662d143", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Bail condition: Assessments/Reports - participate in any assistance or treatment considered appropriate for misuse of class A drugs", + "shortCode" : "PORAR2", + "level" : "O", + "rank" : 28500, + "wordGroups" : [ { + "wordGroup" : [ "bail", "treatment", "Drug" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "7656ce22-8bee-497c-8e27-c7718a743652", + "label" : "Specify qualified person who will decide treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "specifyQualifiedPersonWhowillDecideTreatment", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "GT", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "1aa6a828-fedb-43bd-89e8-bc74586d5e85", + "label" : "Bail condition: Assessments/Reports - provide pre-sentence drug test samples", + "shortCode" : "PORAR3", + "level" : "O", + "rank" : 28600, + "wordGroups" : [ { + "wordGroup" : [ "bail", "Drug", "test" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2e4bf9d6-5184-45bf-bd33-b4e2d1430e2f", + "label" : "Date to provide samples by", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a124724e-2348-41fc-a4b6-6f22c8ef421e", + "label" : "Specify details", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "GT", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "136725da-5b0a-43d3-adac-54f916bcf2bb", + "label" : "Bail condition: Assessments/Reports - report to the local probation office for a report to be made", + "shortCode" : "PORAR4", + "level" : "O", + "rank" : 28700, + "wordGroups" : [ { + "wordGroup" : [ "bail", "probation", "office", "report" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f4da7a9c-a52e-4fbc-a21b-ce1a1d7c6b5d", + "label" : "Probation office", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d351e768-f0f8-4e14-a042-f8306981b1c8", + "label" : "Time", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "55be2d17-7b95-4cc9-b8f0-290f84e66d85", + "label" : "Date", + "welshLabel" : "Dyddiad", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "919ca489-f98d-4776-8b44-2e42958247d4", + "label" : "Provider of probation services", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JZ", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", + "label" : "Bail condition: Assessments/Reports - report to the local office of a provider of probation services for a report to be made", + "shortCode" : "PORAR5", + "level" : "O", + "rank" : 28800, + "wordGroups" : [ { + "wordGroup" : [ "bail", "probation", "provider", "report" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JZ", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Bail condition: Assessments/Reports - make available for reports to be prepared", + "shortCode" : "PORAR6", + "level" : "O", + "rank" : 28900, + "wordGroups" : [ { + "wordGroup" : [ "bail", "available", "report" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JZ", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", + "label" : "Bail condition: Assessments/Reports - report to a youth justice team for a report to be made", + "shortCode" : "PORAR7", + "level" : "O", + "rank" : 29000, + "wordGroups" : [ { + "wordGroup" : [ "bail", "report", "yjt" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ae2e98c1-1b4b-4b19-8f60-22bd56aaed72", + "label" : "Youth Justice Team Location", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label" : "Place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d351e768-f0f8-4e14-a042-f8306981b1c8", + "label" : "Time", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "55be2d17-7b95-4cc9-b8f0-290f84e66d85", + "label" : "Date", + "welshLabel" : "Dyddiad", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "RE", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "label" : "Community requirement: Alcohol treatment", + "shortCode" : "ATR", + "level" : "O", + "rank" : 3600, + "wordGroups" : [ { + "wordGroup" : [ "Alcohol", "treatment", "Requirement" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f092fe58-2297-4d10-818a-8b303692ac39", + "label" : "Under direction of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3110", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BT", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", + "label" : "Bail condition: Computer - not to use any device capable of accessing the internet unless it can retain and display a history of internet use and it is made available to police for inspection upon request", + "shortCode" : "PORCO1", + "level" : "O", + "rank" : 29100, + "wordGroups" : [ { + "wordGroup" : [ "bail", "device", "internet", "history" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "RF", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "rollUpPrompts": false, + "publishedForNows": true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "6889288e-5e4a-4523-be2c-cc993a00af29", + "label" : "Bail condition: Computer - not to delete any history of computer use", + "shortCode" : "PORCO2", + "level" : "O", + "rank" : 29200, + "wordGroups" : [ { + "wordGroup" : [ "bail", "delete", "history" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "RG", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0649851f-01f8-48fb-928d-6fe100042b2a", + "label" : "Bail condition: Computer - not to use", + "shortCode" : "PORCO3", + "level" : "O", + "rank" : 29300, + "wordGroups" : [ { + "wordGroup" : [ "bail", "computer", "not", "use" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b862676c-a945-4fa4-b0fc-551a2d043593", + "label" : "Specify device / service", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4f585f53-f68c-41f1-9734-e88aa1e91f14", + "label" : "Specify restriction", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", + "label" : "Bail condition: Computer - not to possess any device capable of storing digital images unless you make it available on request", + "shortCode" : "PORCO4", + "level" : "O", + "rank" : 29400, + "wordGroups" : [ { + "wordGroup" : [ "bail. device", "images" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", + "label" : "Bail condition: Curfew", + "shortCode" : "PORCU1", + "level" : "O", + "rank" : 29500, + "wordGroups" : [ { + "wordGroup" : [ "bail", "Curfew" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label" : "Time 1", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label" : "Time 2", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label" : "Frequency", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalInformation", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JD", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "03edddce-c188-4b38-9832-988d9d1ee802", + "label" : "Bail condition: Curfew with electronic monitoring - first notification", + "shortCode" : "PORCU2", + "level" : "O", + "rank" : 29600, + "wordGroups" : [ { + "wordGroup" : [ "bail", "Electronic", "Monitoring", "first" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label" : "Time 1", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label" : "Time 2", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label" : "Frequency", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalInformation", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label" : "Contractor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : "contractor", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "BA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5c02ff4c-6a33-4089-8c9e-f120a688b018", + "label" : "Bail condition: Curfew with electronic monitoring - variation notification", + "shortCode" : "PORCU2V", + "level" : "O", + "rank" : 29700, + "wordGroups" : [ { + "wordGroup" : [ "bail", "Electronic", "Monitoring", "variation" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b271650b-0203-4d68-bcef-307038acfdf0", + "label" : "Date of original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "afc73f23-3308-40a1-ae8e-c00a8f282699", + "label" : "Original case number if different", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label" : "Time 1", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label" : "Time 2", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label" : "Frequency", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalInformation", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label" : "Contractor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : "contractor", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "BA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d45c8150-3095-4cb3-a55e-b4fd094af560", + "label" : "Bail condition: Curfew with electronic monitoring - additional notification", + "shortCode" : "PORCU2A", + "level" : "O", + "rank" : 29800, + "wordGroups" : [ { + "wordGroup" : [ "bail electronic", "Monitoring", "Additional" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b271650b-0203-4d68-bcef-307038acfdf0", + "label" : "Date of original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "afc73f23-3308-40a1-ae8e-c00a8f282699", + "label" : "Original case number if different", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label" : "Time 1", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label" : "Time 2", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label" : "Frequency", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label" : "Contractor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : "contractor", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalInformation", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "BA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "922386e1-bdc2-403e-8902-af1da14e1fd8", + "label" : "Bail condition: Curfew with electronic monitoring - continuation notification", + "shortCode" : "PORCU2C", + "level" : "O", + "rank" : 29900, + "wordGroups" : [ { + "wordGroup" : [ "bail", "Electronic", "Monitoring", "continuation" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label" : "Time 1", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label" : "Time 2", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label" : "Frequency", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label" : "Contractor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : "contractor", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalInformation", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "BA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d34b643e-74d5-4288-a4b9-bce14d0069d5", + "label" : "Bail condition: Curfew - and present him/herself to a police officer who asks to see them between these times", + "shortCode" : "PORCU3", + "level" : "O", + "rank" : 30000, + "wordGroups" : [ { + "wordGroup" : [ "bail", "present", "police" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label" : "Time 1", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label" : "Time 2", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label" : "Frequency", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JE", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "label" : "Community requirement: Alcohol treatment non-residential", + "shortCode" : "ATRNR", + "level" : "O", + "rank" : 3700, + "wordGroups" : [ { + "wordGroup" : [ "Alcohol", "treatment", "Non-residential" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "62882318-42b3-4bf9-8bc5-e724aeaaa19a", + "label" : "Treatment institution / place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f092fe58-2297-4d10-818a-8b303692ac39", + "label" : "Under direction of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6aaf3645-0806-4917-ada5-b019c6a606c5", + "label" : "Treatment intervals", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3110", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BS", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "fb9b273e-06c3-4a4a-940c-3c053c559abe", + "label" : "Bail condition: Exclusion - not drive a motor vehicle on any road or in any other public place", + "shortCode" : "PORE1", + "level" : "O", + "rank" : 30100, + "wordGroups" : [ { + "wordGroup" : [ "bail", "not", "drive" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JF", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "481547e6-9099-475e-8028-2bce2c52ff5f", + "label" : "Bail condition: Exclusion - not to associate with", + "shortCode" : "PORE2", + "level" : "O", + "rank" : 30200, + "wordGroups" : [ { + "wordGroup" : [ "bail", "not", "associate" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", + "label" : "Names", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JK", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", + "label" : "Bail condition: Exclusion - not to contact directly or indirectly", + "shortCode" : "PORE3", + "level" : "O", + "rank" : 30300, + "wordGroups" : [ { + "wordGroup" : [ "bail", "not", "contact" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", + "label" : "Names", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JK", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "dfa19118-e944-43f4-93b2-2ed49df5553f", + "label" : "Bail condition: Exclusion - not to enter a place except to attend court or pre-arranged appointment with solicitor", + "shortCode" : "PORE4", + "level" : "O", + "rank" : 30400, + "wordGroups" : [ { + "wordGroup" : [ "bail", "not", "enter", "court", "solicitor" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1559b30a-b931-4e3d-86e9-88ab8b116a81", + "label" : "Place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JO", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c1d490ed-1754-43b8-a485-fdab1a25f8cb", + "label" : "Bail condition: Exclusion - not to enter a place", + "shortCode" : "PORE5", + "level" : "O", + "rank" : 30500, + "wordGroups" : [ { + "wordGroup" : [ "bail", "not", "enter" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1559b30a-b931-4e3d-86e9-88ab8b116a81", + "label" : "Place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JO", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "90146942-b1b9-4a2e-af2b-141f50d45e5c", + "label" : "Bail condition: Exclusion - not go to any public house, licensed club or off licence", + "shortCode" : "PORE6", + "level" : "O", + "rank" : 30600, + "wordGroups" : [ { + "wordGroup" : [ "bail", "public", "house" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JN", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9da5909e-d715-4f79-a1b8-34780c57acf1", + "label" : "Bail condition: Exclusion - not go within a radius", + "shortCode" : "PORE7", + "level" : "O", + "rank" : 30700, + "wordGroups" : [ { + "wordGroup" : [ "bail", "radius" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ef055240-4c06-45f3-961a-1344ebd56ea5", + "label" : "Radius", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label" : "Place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JO", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d709a455-02cc-40d9-b3d2-e4194dc46792", + "label" : "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer", + "shortCode" : "PORE8", + "level" : "O", + "rank" : 30800, + "wordGroups" : [ { + "wordGroup" : [ "bail", "radius", "police" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ce3ef725-44bf-480c-954a-a2f5cbf75daf", + "label" : "Radius", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label" : "Place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JP", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", + "label" : "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer. One visit only", + "shortCode" : "PORE9", + "level" : "O", + "rank" : 30900, + "wordGroups" : [ { + "wordGroup" : [ "bail", "radius", "police", "visit" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ce3ef725-44bf-480c-954a-a2f5cbf75daf", + "label" : "Radius", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label" : "Place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JP", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, + { + "id" : "99586f43-5b18-45da-87f7-1764ad149985", + "label" : "Community requirement: Alcohol treatment residential", + "shortCode" : "ATRR", + "level" : "O", + "rank" : 3800, + "wordGroups" : [ { + "wordGroup" : [ "Alcohol", "treatment", "Residential" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "62882318-42b3-4bf9-8bc5-e724aeaaa19a", + "label" : "Treatment institution / place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f092fe58-2297-4d10-818a-8b303692ac39", + "label" : "Under direction of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3110", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BM", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "74046e6e-ecb8-4f1f-b210-c5731f080913", + "label" : "Restraining order until further order", + "shortCode" : "RESTRAOF", + "level" : "O", + "rank" : 1000, + "wordGroups" : [ { + "wordGroup" : [ "Restraining", "Order", "Further" ] + }, { + "wordGroup" : [ "RESTRAOF" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", + "label" : "Protected person's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "ADDRESS", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", + "label" : "Protected person", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "8df0ec7e-5985-4998-af1a-5da293d9cb3c", + "label" : "Order details", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "47337f1c-e343-4093-884f-035ba96c4db0", + "label" : "Conviction / acquittal", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "8dc70c95-fb09-4842-9138-bc579fceb605", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ea26f773-0a91-4526-b4ad-84d07b5bf940", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3047", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", + "label" : "Bail condition: Exclusion - not to leave", + "shortCode" : "PORE11", + "level" : "O", + "rank" : 31100, + "wordGroups" : [ { + "wordGroup" : [ "bail", "not", "leave" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", + "label" : "Place or area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", + "label" : "Bail condition: Exclusion - not to go more than a specified radius from a specified place", + "shortCode" : "PORE12", + "level" : "O", + "rank" : 31200, + "wordGroups" : [ { + "wordGroup" : [ "bail", "radius", "place" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ce3ef725-44bf-480c-954a-a2f5cbf75daf", + "label" : "Radius", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", + "label" : "Place or area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4c79ea50-6e14-4c47-8836-c0d0f647e45a", + "label" : "Bail condition: Exclusion - the exclusion condition to be electronically monitored with a GPS tag", + "shortCode" : "PORE13", + "level" : "O", + "rank" : 31300, + "wordGroups" : [ { + "wordGroup" : [ "bail", "exclusion", "GPS" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "BA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "834ed20a-d7d8-419b-b72d-61b30db36560", + "label" : "Bail condition: Other", + "shortCode" : "PORO1", + "level" : "O", + "rank" : 31400, + "wordGroups" : [ { + "wordGroup" : [ "bail", "other" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "9be3658b-f425-4673-8c17-b2407badb8c2", + "label" : "Specify post-release bail condition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "RA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "46051d94-0e60-4010-b86d-cf65e1a464d8", + "label" : "Bail condition: Other - to keep mobile phone switched on, fully charged and on your person 24 hours a day", + "shortCode" : "PORO2", + "level" : "O", + "rank" : 31500, + "wordGroups" : [ { + "wordGroup" : [ "bail", "mobile", "phone" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "0163061b-ac29-4d49-9491-13168ac60f82", + "label" : "Mobile number", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "RH", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", + "label" : "Bail condition: Other - report to police station", + "shortCode" : "PORO3", + "level" : "O", + "rank" : 31600, + "wordGroups" : [ { + "wordGroup" : [ "bail", "report", "police" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b9bc8c23-dc0b-433d-b9e4-4b957fd1b7d4", + "label" : "Police Station Name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label" : "Time 1", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label" : "Time 2", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e834e96c-f300-4da9-b781-51d38204deb5", + "label" : "Reporting days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JQ", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", + "label" : "Bail condition: Other - see solicitor", + "shortCode" : "PORO4", + "level" : "O", + "rank" : 31700, + "wordGroups" : [ { + "wordGroup" : [ "bail", "see", "solicitor" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "RC", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", + "label" : "Bail condition: Other - see barrister", + "shortCode" : "PORO5", + "level" : "O", + "rank" : 31800, + "wordGroups" : [ { + "wordGroup" : [ "bail", "see", "barrister" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "RC", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", + "label" : "Bail condition: Residence - live, and sleep each night, at bail hostel", + "shortCode" : "PORR1", + "level" : "O", + "rank" : 31900, + "wordGroups" : [ { + "wordGroup" : [ "bail", "live", "sleep", "hostel" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "16816060-7454-460c-a177-c8da502e18ab", + "label" : "Hostel name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JR", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a50ad03e-d299-4da7-874c-0f233d7d503d", + "label" : "Bail condition: Residence - live, and sleep each night, at bail hostel or at any other place where you may be told to go by specified person", + "shortCode" : "PORR2", + "level" : "O", + "rank" : 32000, + "wordGroups" : [ { + "wordGroup" : [ "bail", "live", "sleep", "hostel", "other" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "16816060-7454-460c-a177-c8da502e18ab", + "label" : "Hostel name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "713e61b8-4899-408f-b6e4-77cc33abbb1a", + "label" : "Supervisor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JS", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "label" : "Community requirement: Attendance centre", + "shortCode" : "ACR", + "level" : "O", + "rank" : 3900, + "wordGroups" : [ { + "wordGroup" : [ "attendance", "centre", "Requirement" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "6724800d-3f2d-4503-a078-3a50497a3a20", + "label" : "Number of hours", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Hours", + "wordGroup" : [ "Hours" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "28e2f7e0-8886-4cf6-a828-776849f8d3d4", + "label" : "Additional / concurrent to what", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3111", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c18dd89d-e057-42aa-b071-0a91226da3bf", + "label" : "Bail condition: Residence - live and sleep each night at address", + "shortCode" : "PORR3", + "level" : "O", + "rank" : 32100, + "wordGroups" : [ { + "wordGroup" : [ "bail", "live", "sleep" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", + "label" : "Address", + "welshLabel" : "Cyfeiriad", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "RB", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "795079ed-4b5a-4750-b077-d653180d43ae", + "label" : "Bail condition: Residence - not to live in the same household", + "shortCode" : "PORR4", + "level" : "O", + "rank" : 32200, + "wordGroups" : [ { + "wordGroup" : [ "bail", "not", "live" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4f585f53-f68c-41f1-9734-e88aa1e91f14", + "label" : "Specify restriction", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "HC", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "71efa12c-a68e-4537-ac7d-27ebf91557a6", + "label" : "Bail condition: Residence BASS - live and sleep each night at specified address and comply with the conditions of BASS", + "shortCode" : "PORR5", + "level" : "O", + "rank" : 32300, + "wordGroups" : [ { + "wordGroup" : [ "bail", "live", "sleep", "bass" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "0dbf39c0-02e9-498f-87cd-c1221270c535", + "label" : "BASS address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "RB", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "36951b36-de01-45bc-91a7-1c68f5989ed5", + "label" : "Bail condition: Residence BASS - take part in additional mandatory support sessions (more than the minimum of one session per week)", + "shortCode" : "PORR6", + "level" : "O", + "rank" : 32400, + "wordGroups" : [ { + "wordGroup" : [ "bail", "support", "sessions" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "91141263-7f27-494f-95e9-04a113952974", + "label" : "Bail condition: Surety - find continuous surety / sureties", + "shortCode" : "PORS", + "level" : "O", + "rank" : 32500, + "wordGroups" : [ { + "wordGroup" : [ "bail", "continuous", "surety" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5139e711-b645-4b1c-af81-84f5887abdf6", + "label" : "Number of sureties", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "088ef869-d7f9-4184-b624-6c1e9fab8bee", + "label" : "In the sum of", + "welshLabel" : "Y swm o", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JX", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", + "label" : "Bail condition: Travel - not to apply for international travel documents or be in possession of any", + "shortCode" : "PORT1", + "level" : "O", + "rank" : 32600, + "wordGroups" : [ { + "wordGroup" : [ "bail", "travel", "documents" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JT", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", + "label" : "Bail condition: Travel - not to leave England and Wales", + "shortCode" : "PORT2", + "level" : "O", + "rank" : 32700, + "wordGroups" : [ { + "wordGroup" : [ "bail", "not", "leave", "England", "Wales" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "JY", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bail conditions", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "fbed768b-ee95-4434-87c8-e81cbc8d24c8", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Next hearing in Crown Court", + "shortCode" : "NHCCS", + "level" : "O", + "rank" : 500, + "wordGroups" : [ { + "wordGroup" : [ "NHCCS" ] + }, { + "wordGroup" : [ "adjournment", "Crown" ] + }, { + "wordGroup" : [ "next", "hearing", "Crown" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label" : "Estimated duration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 700, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HEST", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label" : "Estimated duration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 700, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HEST", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label" : "Estimated duration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 700, + "duration" : "Hours", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HEST", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label" : "Estimated duration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 700, + "duration" : "Minutes", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HEST", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "dfac671c-5b85-42a1-bb66-9aeee388a08d", + "label" : "Time of hearing", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TIME", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HTIME", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f507153-6dc9-4ec0-94db-c821eff333f1", + "label" : "Courtroom", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HCROOM", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7746831a-d5dd-4fa8-ac13-528573948c8a", + "label" : "Courthouse name", + "welshLabel" : "Enw’r adeilad llys", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HCHOUSE", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c1116d12-dd35-4171-807a-2cb845357d22", + "label" : "Hearing type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HTYPE", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9403f0d7-90b5-4377-84b4-f06a77811362", + "label" : "Remand Status", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "c82897b8-7e25-4b5d-9cd3-dbf3e1cb7c0c", + "qual" : null, + "reference" : "remandStatus", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "42962373-587c-4324-9ae6-7c99171d1c69", + "label" : "Week commencing", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HDATE", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7e72e671-295a-4e56-a419-2a59a14863b0", + "label" : "Fixed date", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : null, + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : "fixedDate", + "courtExtract" : "N", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Next hearing", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "3a529001-2f43-45ba-a0a8-d3ced7e9e7ad", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Remanded on conditional bail", + "shortCode" : "RC", + "reference" : "", + "level" : "O", + "rank" : 32800, + "wordGroups" : [ { + "wordGroup" : [ "remanded", "conditional", "bail" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label" : "Is the defendant excused attendance?", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantExcusedAttendance", + "courtExtract" : "Y", + "durationSequence" : null, + "hidden" : false + }, { + "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", + "label" : "Bail condition reason", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual" : null, + "reference" : "bailConditionReason", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "dec5104c-3342-4544-b287-31ea969e0f15", + "label" : "BASS provider", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bassProvider", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label" : "Additional reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalReasons", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4027", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Remand conditional bail", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType" : "mandatory" + }, { + "childResultDefinitionId" : "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "ruleType" : "mandatory" + }, { + "childResultDefinitionId" : "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "ruleType" : "optional" + } ] + }, { + "id" : "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", + "label" : "Remanded on unconditional bail", + "shortCode" : "RU", + "level" : "O", + "rank" : 33000, + "wordGroups" : [ { + "wordGroup" : [ "remand", "unconditional" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label" : "Is the defendant excused attendance?", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantExcusedAttendance", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4047", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Remand unconditional bail", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "label" : "Community requirement: Alcohol abstinence", + "shortCode" : "AAR", + "level" : "O", + "rank" : 4000, + "wordGroups" : [ { + "wordGroup" : [ "Alcohol", "abstinence", "Requirement" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3146", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d0a369c9-5a28-40ec-99cb-da7943550b18", + "label" : "Remanded in custody", + "shortCode" : "RI", + "level" : "O", + "rank" : 33300, + "wordGroups" : [ { + "wordGroup" : [ "remand", "custody" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "21ecdc07-7397-4eac-9c26-e66dfeb32d01", + "label" : "TV link at next hearing", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "tvLinkAtNextHearing", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "343de039-f33b-4770-b61c-4d6db4ae369c", + "label" : "TV link pre-hearing conference time", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "tVLinkPrehearingConferenceTime", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label" : "Remand basis", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual" : null, + "reference" : "remandBasis", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "riskFactors", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "7b2e6219-ddcb-4afa-8615-8de978e60af1", + "label" : "Bail exception", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "10a769e8-1b1c-430d-844b-8948942cf353", + "qual" : null, + "reference" : "bailException", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", + "label" : "Bail exception reason", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "c0fb2ca5-7702-4f01-b344-33029cfdcd47", + "qual" : null, + "reference" : "bailExceptionReason", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label" : "Additional reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalReasons", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4028", + "drivingTestStipulation":1, + "pointsDisqualificationCode":"TT99", + "dvlaCode": "C", + "secondaryCJSCodes": [ + { + "cjsCode":"1234", + "text":"SecondaryCjsCode text1" + }, + { + "cjsCode":"5678", + "text":"SecondaryCjsCode text2" + } + ], + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "C", + "resultDefinitionGroup" : "Remand in custody", + "policeSubjectLineTitle" : "Final Sentence", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "6af22d8d-6157-460e-b641-e6db90d15289", + "label" : "Remanded in custody pending receipt of Prosecutor's written notice of appeal", + "shortCode" : "RIBA2", + "level" : "O", + "rank" : 33500, + "wordGroups" : [ { + "wordGroup" : [ "remand", "appeal" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e1b8b750-af91-466a-acf8-c7f6685d3b26", + "label" : "Time when oral notice of appeal was given", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "timeOfOralNotice", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8b0bf6d4-e48a-425c-bc0d-fed8948010e5", + "label" : "Custodian name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "custodianName", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Remand appeal", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7a0932f5-8264-412e-a83c-2b6d1dce1506", + "label" : "Prosecutor's notice of appeal received. Remanded in custody", + "shortCode" : "RIBA48", + "level" : "O", + "rank" : 33600, + "wordGroups" : [ { + "wordGroup" : [ "remand", "custody", "appeal" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "66f338f2-6c3b-4511-b224-97cbc1eab1c0", + "label" : "Time when written notice of appeal was received", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "timeofWrtittenNotice", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "de91870f-f1e3-4dcd-a8ee-fa409ee34beb", + "label" : "Crown Court name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "crownCourtName", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6730aae5-9e6b-45e6-8a2e-0e06cc70c7ca", + "label" : "Date otherwise bailed to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "4049", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "C", + "resultDefinitionGroup" : "Remand appeal", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "074124d5-b07a-4b73-8b9a-792e8462138a", + "label" : "Prosecutor's bail appeal withdrawn. (D in local custody). Release in accordance with earlier decision", + "shortCode" : "RIBAWL", + "level" : "O", + "rank" : 33700, + "wordGroups" : [ { + "wordGroup" : [ "bail", "appeal", "wthdrawn" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "7af5471c-34c1-4176-b595-8f9a796ac455", + "label" : "Basis of appeal being withdrawn", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Remand appeal", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "6511006f-b40d-4fcb-8372-bc38fde69b64", + "label" : "Remitted to youth court for trial", + "shortCode" : "REMYCT", + "level" : "O", + "rank" : 33800, + "wordGroups" : [ { + "wordGroup" : [ "remit", "youth", "trial" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "44e3bc06-0c07-422a-84a1-bcca57f898f4", + "label" : "Youth Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7f2d58f4-ca3d-4059-9df5-19f7cb744676", + "label" : "Remitted to youth court for sentence", + "shortCode" : "REMYCS", + "level" : "O", + "rank" : 33900, + "wordGroups" : [ { + "wordGroup" : [ "remit", "youth", "sentence" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "44e3bc06-0c07-422a-84a1-bcca57f898f4", + "label" : "Youth Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "fcbf777d-1a73-47e7-ab9b-7c51091a022c", + "label" : "Direction made under Section 45 of the Youth Justice and Criminal Evidence Act 1999", + "shortCode" : "D45", + "level" : "O", + "rank" : 34000, + "wordGroups" : [ { + "wordGroup" : [ "direction", "45", "youth" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "03983f51-f937-4dd8-9656-276b1ca86785", + "label" : "Restricting publicity in respect of youth - Specify name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label" : "Further details", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "4510", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", + "label" : "Direction under Section 45A of the Youth Justice and Criminal Evidence Act 1999", + "shortCode" : "D45A", + "level" : "O", + "rank" : 34200, + "wordGroups" : [ { + "wordGroup" : [ "direction", "45a", "youth" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "03983f51-f937-4dd8-9656-276b1ca86785", + "label" : "Restricting publicity in respect of youth - Specify name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label" : "Further details", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "4510", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "89e3c24b-acbf-42fb-9eee-169b83423035", + "label" : "Direction made under Section 46 of the Youth Justice and Criminal Evidence Act 1999", + "shortCode" : "D46", + "level" : "O", + "rank" : 34300, + "wordGroups" : [ { + "wordGroup" : [ "direction", "46", "youth" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "27247b35-5013-41cb-9b24-26d38332e547", + "label" : "Restricting publicity in respect of adult witness - specify name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label" : "Further details", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "4510", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c265d589-fcc0-451b-be43-7856e32524ba", + "label" : "Direction made under Section 39 of the Children and Young Persons Act 1933", + "shortCode" : "D39", + "level" : "O", + "rank" : 34400, + "wordGroups" : [ { + "wordGroup" : [ "direction", "39", "children" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ff5f8083-5413-467f-b359-9abfb49ecbb2", + "label" : "State if youth is defendant, witness or victim or combination of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label" : "Further details", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "4510", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d683f73c-488e-4d8e-a685-d37049c2a3e5", + "label" : "Community requirement: Alcohol abstinence with alcohol limit", + "shortCode" : "AARAL", + "level" : "O", + "rank" : 4100, + "wordGroups" : [ { + "wordGroup" : [ "Alcohol", "abstinence", "limit" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2d340f59-2b74-437b-8d7d-6b316613021c", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fac82e4b-7c37-4a46-a689-3f1defe2474a", + "label" : "Alcohol limit", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3146", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "393c5be8-dadb-484b-ab39-0f1eb57aeae5", + "label" : "Order made under Section 11 of the Contempt of Court Act 1981 until date", + "shortCode" : "D11", + "level" : "O", + "rank" : 34500, + "wordGroups" : [ { + "wordGroup" : [ "11", "contempt", "until" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a73b3f21-1978-45fc-b413-0299c60e07ad", + "label" : "Details of the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3ea2cb5c-397e-4dd3-8328-d375135f3191", + "label" : "Date of expiry", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", + "label" : "Purpose of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9647428f-0946-4a09-aec1-7bdfcd324ac6", + "label" : "Order made under Section 11 of the Contempt of Court Act 1981 until further order", + "shortCode" : "D11FO", + "level" : "O", + "rank" : 34600, + "wordGroups" : [ { + "wordGroup" : [ "11", "contempt", "Further" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a73b3f21-1978-45fc-b413-0299c60e07ad", + "label" : "Details of the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", + "label" : "Purpose of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "21271525-76f4-4134-9c93-1be012a574c8", + "label" : "Order made under Section 4 of the Contempt of Court Act 1981", + "shortCode" : "D4", + "level" : "O", + "rank" : 34700, + "wordGroups" : [ { + "wordGroup" : [ "Order", "4", "contempt" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a73b3f21-1978-45fc-b413-0299c60e07ad", + "label" : "Details of the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "318c9eb2-cf3c-4592-a353-1b2166c15f81", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "4510", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d023e3a7-33ef-45b4-a19b-5137afecbf1f", + "label" : "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until date - derogatory assertions", + "shortCode" : "D58", + "level" : "O", + "rank" : 34800, + "wordGroups" : [ { + "wordGroup" : [ "Order", "58", "until" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", + "label" : "Assertions", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", + "label" : "Witness name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3ea2cb5c-397e-4dd3-8328-d375135f3191", + "label" : "Date of expiry", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2c18aff1-b535-47b6-8415-8841e85eac49", + "label" : "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until further order - derogatory assertions", + "shortCode" : "D58FO", + "level" : "O", + "rank" : 34900, + "wordGroups" : [ { + "wordGroup" : [ "Order", "58", "Further" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", + "label" : "Assertions", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", + "label" : "Witness name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2e725ba6-0e29-4ffb-a5c7-31b67344c211", + "label" : "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity in respect of youth", + "shortCode" : "D49Y", + "level" : "O", + "rank" : 35100, + "wordGroups" : [ { + "wordGroup" : [ "Order", "49", "publicity", "youth" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "788bb732-5467-4c0b-ba88-96a0ef8aaeb4", + "label" : "Name of youth", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "94084f13-fa2f-4d24-938b-0656292edd59", + "label" : "Details of reporting restriction lifted", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "98366b12-b70a-4e66-b71d-a5bbd39bd595", + "label" : "Order made allowing reporting", + "shortCode" : "DALLOW", + "level" : "O", + "rank" : 35200, + "wordGroups" : [ { + "wordGroup" : [ "allow", "reporting" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "42711aff-3d3a-4d85-8e68-f03065823422", + "label" : "Details of directions allowed to be reported", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", + "label" : "Direction restricting publicity revoked", + "shortCode" : "DPR", + "level" : "O", + "rank" : 35300, + "wordGroups" : [ { + "wordGroup" : [ "publicity", "revoked" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1a7da720-a95a-46e4-b2ee-6b8e9db430cc", + "label" : "Date direction allowing publicity made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", + "label" : "Excepting direction varied", + "shortCode" : "DV", + "level" : "O", + "rank" : 35400, + "wordGroups" : [ { + "wordGroup" : [ "exception", "direction", "varied" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "851f11ed-99d5-4d2a-96c0-227df6743250", + "label" : "Date excepting direction made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", + "label" : "Details of variation", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "label" : "Community requirement: Mental health treatment", + "shortCode" : "MHTR", + "level" : "O", + "rank" : 4200, + "wordGroups" : [ { + "wordGroup" : [ "Mental", "Health", "Requirement" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label" : "Medical practitioner / Psychologist", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3108", + "adjournment" : false, + "convicted" : true, + "qualifier" : "HG", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", + "label" : "Excepting direction revoked", + "shortCode" : "DR", + "level" : "O", + "rank" : 35500, + "wordGroups" : [ { + "wordGroup" : [ "exception", "direction", "revoked" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "851f11ed-99d5-4d2a-96c0-227df6743250", + "label" : "Date excepting direction made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b3035ace-15d4-44ca-9d79-c83a57dc0e30", + "label" : "Excepting direction made dispensing with publicity restrictions", + "shortCode" : "DP", + "level" : "O", + "rank" : 35600, + "wordGroups" : [ { + "wordGroup" : [ "dispense", "publicity" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5b4ddad9-db87-43b4-a127-cc8312a7d56c", + "label" : "Date publicity restriction made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7d61ec4e-f75a-489d-9950-5584e354659c", + "label" : "Extent of dispensation", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "84222bcb-05ac-4c67-82df-cc8742a850d1", + "label" : "The Court directs that information relating to the complainant may be published in connection with the summary trial of the case", + "shortCode" : "DST", + "level" : "O", + "rank" : 35700, + "wordGroups" : [ { + "wordGroup" : [ "complainant", "published", "trial" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1ffa4f8d-2e22-4226-8f29-fe09b0ef00f6", + "label" : "Complainant information", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "07d8fab1-366d-43c5-bdb4-223f8c1229f5", + "label" : "Complainant's anonymity protected by virtue of Section 1 of the Sexual Offences Amendment Act 1992", + "shortCode" : "DSOA", + "level" : "O", + "rank" : 35800, + "wordGroups" : [ { + "wordGroup" : [ "anonymity", "protrected", "sexual" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2e83102c-a262-4bb3-a48d-c2107a094a66", + "label" : "Order revoked", + "shortCode" : "OREV", + "level" : "O", + "rank" : 35900, + "wordGroups" : [ { + "wordGroup" : [ "Order", "revoked" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "7e8ec1d3-e8fb-4116-9e37-842120700c48", + "label" : "Court that made the original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "917a6802-ef7e-4449-8df9-6f9a49fcbe91", + "label" : "Order revoked", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "50f095ad-e289-433a-817a-6d79c567a5fa", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0eba630e-a486-439f-8d76-b49b1363067c", + "label" : "Court that made the original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "94fbf012-b9a6-4b3c-8743-0803aff0e25c", + "label" : "Date order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1029", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "14f22747-685e-4bd9-91e7-fb372d8c3b72", + "label" : "Order to continue", + "shortCode" : "OTC", + "level" : "O", + "rank" : 36000, + "wordGroups" : [ { + "wordGroup" : [ "Order", "continue" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1040", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c98cb51f-8639-49c1-91f0-a7e820c34355", + "label" : "Warrant for arrest without bail", + "shortCode" : "WOFN", + "level" : "O", + "rank" : 36100, + "wordGroups" : [ { + "wordGroup" : [ "warrant", "arrest", "without", "bail" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label" : "Grounds for warrant", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label" : "Process server name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4576", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Warrants of arrest", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b4f7c223-b9d1-4409-b6d3-039f66eb9645", + "label" : "Warrant for arrest with bail (dated)", + "shortCode" : "WOFD", + "level" : "O", + "rank" : 36300, + "wordGroups" : [ { + "wordGroup" : [ "warrant", "arrest", "with", "bail", "dated" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label" : "Grounds for warrant", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label" : "Process server name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "507c4249-d897-43bb-b64d-5c156ef6ba85", + "label" : "Bail to be allowed on these conditions", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4575", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Warrants of arrest", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType" : "optional" + } ] + }, { + "id" : "671df737-9901-4fa5-b245-aeff0c4c7495", + "label" : "Warrant for arrest with bail (undated)", + "shortCode" : "WOFU", + "level" : "O", + "rank" : 36400, + "wordGroups" : [ { + "wordGroup" : [ "warrant", "arrest", "with", "bail", "undated" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label" : "Grounds for warrant", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8ef9613e-f19c-11e8-904a-f2801f1b9fd1", + "label" : "Bail allowed on conditions", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label" : "Process server name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4577", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Warrants of arrest", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c8c962df-e28c-4ea8-8496-721badb77b7b", + "label" : "Warrant for arrest redated", + "shortCode" : "WOFR", + "level" : "O", + "rank" : 36500, + "wordGroups" : [ { + "wordGroup" : [ "warrant", "arrest", "redated" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4575", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Warrants of arrest", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType" : "optional" + } ] + }, { + "id" : "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "label" : "Community requirement: Mental health treatment residential patient", + "shortCode" : "MHTRR", + "level" : "O", + "rank" : 4300, + "wordGroups" : [ { + "wordGroup" : [ "Mental", "Health", "Non-residential" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label" : "Medical practitioner / Psychologist", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fb580537-9d36-4139-811b-77af09547b0d", + "label" : "Care home / Hospital", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3108", + "adjournment" : false, + "convicted" : true, + "qualifier" : "HE", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "73242763-44db-4d57-a855-44a6cf4f6226", + "label" : "Warrant for arrest without bail executed on day of issue", + "shortCode" : "WOFEX", + "level" : "O", + "rank" : 36600, + "wordGroups" : [ { + "wordGroup" : [ "warrant", "arrest", "issue" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label" : "Grounds for warrant", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Warrants of arrest", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b9d81454-a565-4a86-bcf9-e7c58bb89dba", + "label" : "Anti-social behaviour order varied", + "shortCode" : "ASBOV", + "level" : "O", + "rank" : 36700, + "wordGroups" : [ { + "wordGroup" : [ "asbo", "varied" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7e8ec1d3-e8fb-4116-9e37-842120700c48", + "label" : "Court that made the original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3f441b7c-e9ac-4f1c-b731-babfd2fa94d9", + "label" : "Anti-social order type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2da599de-da03-492e-b66f-e7aad32fcfa5", + "label" : "Terms of variation", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c491a47d-b167-467b-b2f4-f9e567bd4da0", + "label" : "Start of date of variation", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1030", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "90d8268d-cc6a-4a09-bdb3-ddf8ea8ef2f9", + "label" : "Variation of bail conditions", + "shortCode" : "RCBV", + "level" : "O", + "rank" : 36800, + "wordGroups" : [ { + "wordGroup" : [ "bail", "varied" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "77eb185c-03e7-4971-8dcc-77089d048731", + "label" : "Date bail previously granted", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "21541638-82dd-4a9f-a05c-67589dc8dce9", + "label" : "Court which previously granted bail", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label" : "Is the defendant excused attendance?", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", + "label" : "Bail condition reason", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual" : null, + "reference" : "bailConditionReason", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f7995d94-bf13-41df-a599-79ead4123aad", + "label" : "BASS provider", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label" : "Additional reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalReasons", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "4574", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Remand conditional bail", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "bb90e801-0066-4bdf-85e6-8d64bc683f0c", + "label" : "Reporting restriction continues", + "shortCode" : "REPC", + "level" : "O", + "rank" : 36900, + "wordGroups" : [ { + "wordGroup" : [ "reporting", "restrictions", "continue" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "18f255dd-103f-494f-81d0-82db5b5ee7bd", + "label" : "Date restriction imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Press", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "961962dd-70c3-463c-89d9-a2b2a393b165", + "label" : "Remitted from Crown Court to magistrates' court for trial", + "shortCode" : "REMITMC", + "level" : "O", + "rank" : 37000, + "wordGroups" : [ { + "wordGroup" : [ "remittal", "trial" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b09fdfef-bde4-4804-8731-f1c2632fbfcc", + "label" : "Local Justice Area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "8542b0d9-27f0-4df3-a4a3-0ac0a85c33ad", + "label" : "Notice to magistrates' court that summary offence dismissed", + "shortCode" : "SUMD", + "level" : "O", + "rank" : 37100, + "wordGroups" : [ { + "wordGroup" : [ "summary", "Dismissed", "magistrates" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b09fdfef-bde4-4804-8731-f1c2632fbfcc", + "label" : "Local Justice Area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "306c1775-ec96-4e1d-b35e-bcea099ce10a", + "label" : "Notice to magistrates' court that Crown Court powers regarding summary offence have ceased", + "shortCode" : "SUMC", + "level" : "O", + "rank" : 37200, + "wordGroups" : [ { + "wordGroup" : [ "magistrates", "powers", "ceased" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b09fdfef-bde4-4804-8731-f1c2632fbfcc", + "label" : "Local Justice Area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "3fdf077e-92b3-4b58-abd1-040a42c35a45", + "label" : "Remanded to hospital for treatment", + "shortCode" : "RHT", + "level" : "O", + "rank" : 37300, + "wordGroups" : [ { + "wordGroup" : [ "remanded", "hospital" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f8ff8214-14b0-4425-94eb-64e6ae320f80", + "label" : "Specify hospital", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label" : "Remand basis", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual" : null, + "reference" : "remandBasis", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "7b2e6219-ddcb-4afa-8615-8de978e60af1", + "label" : "Bail exception", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "10a769e8-1b1c-430d-844b-8948942cf353", + "qual" : null, + "reference" : "bailException", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", + "label" : "Bail exception reason", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "c0fb2ca5-7702-4f01-b344-33029cfdcd47", + "qual" : null, + "reference" : "bailExceptionReason", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label" : "Additional reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalReasons", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label" : "Place of safety", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "placeOfSafety", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label" : "Conveyor/custodian", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "96949d0c-a59c-4a6f-a563-97456c985987", + "label" : "Further directions regarding conveyance to place of safety", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4051", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "C", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "68c97f89-1672-417d-8513-74cded9d2322", + "label" : "Restriction order", + "shortCode" : "RISTO", + "level" : "O", + "rank" : 37400, + "wordGroups" : [ { + "wordGroup" : [ "restriction", "Order" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "1004", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "04437aef-8b44-424e-9cd0-75a10a00f256", + "label" : "Hospital direction and limitation direction", + "shortCode" : "DHA", + "level" : "O", + "rank" : 37500, + "wordGroups" : [ { + "wordGroup" : [ "hospital", "limitation" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 700, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label" : "Minimum term", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1000, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label" : "Early release provisions apply", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1100, + "duration" : null, + "wordGroup" : [ "Early", "release" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label" : "Early release provisions do not apply", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1200, + "duration" : null, + "wordGroup" : [ "Early", "not", "release" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2395831b-5044-451f-acaf-259d00e01bea", + "label" : "Sentenced in absence", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1500, + "duration" : null, + "wordGroup" : [ "Absence" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "FH", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f8ff8214-14b0-4425-94eb-64e6ae320f80", + "label" : "Specify hospital", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "specifyHospital", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6baa9e89-7d7d-47b4-bb99-3e3d22cbb011", + "label" : "Name of hospital unit", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label" : "Place of safety", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "placeOfSafety", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label" : "Conveyor/custodian", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "96949d0c-a59c-4a6f-a563-97456c985987", + "label" : "Further directions regarding conveyance to place of safety", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "d483e89c-4919-4248-a046-372a6a4532a6", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1088", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "label" : "Community requirement: Mental health treatment non-residential patient", + "shortCode" : "MHTRNR", + "level" : "O", + "rank" : 4400, + "wordGroups" : [ { + "wordGroup" : [ "Mental", "Health", "Residential" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label" : "Medical practitioner / Psychologist", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3108", + "adjournment" : false, + "convicted" : true, + "qualifier" : "HF", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "cb0842d5-9b42-4930-99b3-ae835b56aa56", + "label" : "Conditional discharge (no notice produced)", + "shortCode" : "CDN", + "level" : "O", + "rank" : 37600, + "wordGroups" : [ { + "wordGroup" : [ "conditional", "discharge", "notice" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label" : "Duration of conditional discharge", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label" : "Duration of conditional discharge", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label" : "Duration of conditional discharge", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label" : "Duration of conditional discharge", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1018", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7dcc9315-917f-408c-bb77-df8b978f503d", + "label" : "Deferred sentence", + "shortCode" : "DS", + "level" : "O", + "rank" : 37700, + "wordGroups" : [ { + "wordGroup" : [ "deferred", "sentence" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2e93862b-2412-41ca-be12-5321815294f2", + "label" : "Requirements that must be carried out", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "49806ee4-d2d8-40ce-b651-5fee1510aff4", + "label" : "The court has appointed a supervisor to supervise you", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1ab4b20a-9421-494f-8b17-843450050a6e", + "label" : "Name of victim involved in restorative justice", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e76ed20a-768a-41ad-8b95-921539ac3550", + "label" : "Address of victim involved in restorative justice", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4005", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType" : "mandatory" + } ] + }, { + "id" : "b91a9688-6542-4132-84f2-a3ffff60edfa", + "label" : "Deferred sentence with restorative justice activity involving victim", + "shortCode" : "DEFRJ", + "level" : "O", + "rank" : 37800, + "wordGroups" : [ { + "wordGroup" : [ "deferred", "sentence", "victim" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2e93862b-2412-41ca-be12-5321815294f2", + "label" : "Requirements that must be carried out", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1ab4b20a-9421-494f-8b17-843450050a6e", + "label" : "Name of victim involved in restorative justice", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e76ed20a-768a-41ad-8b95-921539ac3550", + "label" : "Address of victim involved in restorative justice", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "49806ee4-d2d8-40ce-b651-5fee1510aff4", + "label" : "The court has appointed a supervisor to supervise you", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4005", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2e3cdfca-8bce-4ad4-93c9-075bead61b0d", + "label" : "Notification of requirement to register with police until case dealt with", + "shortCode" : "NORRDW", + "level" : "O", + "rank" : 37900, + "wordGroups" : [ { + "wordGroup" : [ "register", "police" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "7780ed3c-ab05-4a53-acce-316b5486d3ec", + "label" : "Parent's name if parental direction required", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "859b99d5-de74-4a84-b160-c914467af86d", + "label" : "Name of police station to report to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", + "label" : "Conviction / finding / insanity", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3052", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c4c7db1f-673b-4633-8400-4739f483c68e", + "label" : "Notification of requirement to register with police for a period", + "shortCode" : "NORR", + "level" : "O", + "rank" : 38000, + "wordGroups" : [ { + "wordGroup" : [ "register", "police", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label" : "Notification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label" : "Notification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label" : "Notification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label" : "Notification period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7780ed3c-ab05-4a53-acce-316b5486d3ec", + "label" : "Parent's name if parental direction required", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "859b99d5-de74-4a84-b160-c914467af86d", + "label" : "Name of police station to report to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", + "label" : "Conviction / finding / insanity", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3052", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "55b91429-8dda-4a8f-8b84-d4cd1a398ab5", + "label" : "Notification of requirement to register with police indefinately", + "shortCode" : "NORRI", + "level" : "O", + "rank" : 38100, + "wordGroups" : [ { + "wordGroup" : [ "register", "police", "indefinately" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "7780ed3c-ab05-4a53-acce-316b5486d3ec", + "label" : "Parent's name if parental direction required", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "859b99d5-de74-4a84-b160-c914467af86d", + "label" : "Name of police station to report to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", + "label" : "Conviction / finding / insanity", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3052", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9ea0d845-5096-44f6-9ce0-8ae801141eac", + "rollUpPrompts": false, + "publishedForNows": false, + "label" : "Collection order", + "shortCode" : "COLO", + "level" : "C", + "rank" : 38200, + "wordGroups" : [ { + "wordGroup" : [ "COLO" ] + }, { + "wordGroup" : [ "collection", "Order" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "6b36e5ff-e116-4dc3-b438-8c02d493959e", + "label" : "Collection order type", + "welshLabel" : "Math o orchymyn casglu", + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "d7d75420-aace-11e8-98d0-529269fb1459", + "qual" : null, + "reference" : "collectionOrderType", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "369b6e22-4678-4b04-9fe9-5bb53bed5067", + "label" : "Reason for not making an attachment of earnings order or deduction from benefit application", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "reasonForNotMakingAnAttachment", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "dc44f589-6dd2-4a8d-9164-c1796c6b0e36", + "label" : "Reason for making an attachment of earnings order", + "welshLabel" : "Rheswm dros wneud gorchymyn atafaelu enillion", + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "1fa26fa6-da67-48f7-9bb4-9b55d825854e", + "qual" : null, + "reference" : "reasonForMakingAnAttachment", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "16ade3fb-9f0f-4ce4-a6c8-fa96277e1519", + "label" : "Reason for making an application for deductions from benefit", + "welshLabel" : "Rheswm dros wneud cais i ddidynnu o fudd-dal", + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "1fa26fa6-da67-48f7-9bb4-9b55d825854e", + "qual" : null, + "reference" : "reasonForMakingAnApplication", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Gorchymyn Casglu", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "76b02133-4927-4f21-9f79-1ce361a17b0f", + "label" : "Confiscation order where Court decides the available amount - makes a statement of findings", + "shortCode" : "CONFAA", + "level" : "O", + "rank" : 38400, + "wordGroups" : [ { + "wordGroup" : [ "confiscation", "Order", "decide" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label" : "Default prison term", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1700, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label" : "Default prison term", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1700, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label" : "Default prison term", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1700, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label" : "Default prison term", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1700, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b613add5-2657-4a13-ad6f-cf01079f1f1a", + "label" : "The benefit is a result of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e9e6e941-db50-4eed-b388-f6dafe09f9d5", + "label" : "Value of the benefit", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "97ba9a67-9cf9-4357-bed9-1c38b9a037c0", + "label" : "Available amount that may be realised", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5a954d49-da57-4952-893c-82f57d2dbed8", + "label" : "The defendant's assets are those described in the schedule (form 5050A) and were a matter relevant to the Court's decision", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6275de58-7ba0-4141-b872-19e49707a0e2", + "label" : "Total value of assets presented in the schedule (form 5050A)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "CURR", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b2281817-6d7f-48f2-a27c-a61ba506a007", + "label" : "Total value of assets decided by the Court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "CURR", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "52b9ac44-e6d5-4494-a94c-16b23b5a890b", + "label" : "The statement of the prosecutor was a matter relevant to the Court's decision", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a5d3e131-3031-4c92-ba48-a2d132767476", + "label" : "Matters in the defendant's response to the statement of the prosecutor were relevant to the Court's decision", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8fdf6804-ac49-42c4-9ffe-a1c35b76f8ca", + "label" : "Matters in the defendant's response to a court order requiring the defendant to give infomation specified in the order were relevant to the Court's decision", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "42d8c319-ddda-4af6-bc84-53450378b77f", + "label" : "Total value of assets presented to Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b2281817-6d7f-48f2-a27c-a61ba506a007", + "label" : "Total value of assets decided by the Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9e2ea5fd-b373-43e4-81ae-04f1b0b9ed2c", + "label" : "Amount ordered to pay", + "welshLabel" : "Swm a orchmynnwyd i’w dalu", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6ca8afa4-ec62-4ca1-a914-181418db8961", + "label" : "Description of amount to be paid", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cef4a3b2-b279-404c-a6ae-3552f2a9151d", + "label" : "Amount of confiscation sum to be paid as compensation", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "CURR", + "sequence" : 1400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "851e2be3-1436-47a4-824d-ca3168647f0c", + "label" : "Collecting Magistrates' Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 1500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", + "label" : "Confiscation unit to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 1600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5437f354-b075-4dd0-87cb-260c4fd8dd1f", + "label" : "Defendant's custody location", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "869beaee-71bd-4e33-8ea6-3e5554fcb6c8", + "label" : "Priority order directions", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3056", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Confiscation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "733545c5-5612-40b8-bd81-df1a6a154182", + "label" : "Confiscation order where Court does not decide the available amount", + "shortCode" : "CONF", + "level" : "O", + "rank" : 38500, + "wordGroups" : [ { + "wordGroup" : [ "confiscation", "Order", "not", "decide" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label" : "Default prison term", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label" : "Default prison term", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label" : "Default prison term", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label" : "Default prison term", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d1142456-f354-42ec-ba25-1556d99230c6", + "label" : "The benefit is a result of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "de6587cb-7892-48ef-bf6c-3b63471a0422", + "label" : "Value of the benefit", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "587ba904-51cc-4284-9883-6724acc55531", + "label" : "Available amount that may be realised", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7798fac0-1e5a-4e53-ae3f-e49d825ac560", + "label" : "Total value of assets presented to Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a7fc546f-ca75-4aed-98b4-4cdce26238ba", + "label" : "Total value of assets decided by the Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fdd30c91-11d4-4511-b1f8-dfd1b9fbcc5d", + "label" : "Amount ordered to pay", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b838babb-4b10-4534-ad6e-794da31d6976", + "label" : "Description of amount to be paid", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4ceb1e93-25ce-4f6e-aaf6-195083faadb6", + "label" : "Amount of confiscation sum to be paid as compensation", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "CURR", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "851e2be3-1436-47a4-824d-ca3168647f0c", + "label" : "Collecting Magistrates' Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", + "label" : "Confiscation unit to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5437f354-b075-4dd0-87cb-260c4fd8dd1f", + "label" : "Defendant's custody location", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c66d10aa-b197-49d8-87e5-28eb356fde1e", + "label" : "Priority order directions", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3056", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Confiscation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "label" : "Community requirement: Exclusion not to enter for a period", + "shortCode" : "ERP", + "level" : "O", + "rank" : 4500, + "wordGroups" : [ { + "wordGroup" : [ "exclusion", "Requirement", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label" : "Period of exclusion", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label" : "Period of exclusion", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label" : "Period of exclusion", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label" : "Period of exclusion", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", + "label" : "Place / area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6d322ff1-1d95-4053-ac79-19d1b7874f2d", + "label" : "End date of exclusion", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3106", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "adbdbb76-8ff7-4a22-881f-6b95adbf915b", + "label" : "Electronic Monitoring End - notify contractor", + "shortCode" : "EMONE", + "level" : "O", + "rank" : 38600, + "wordGroups" : [ { + "wordGroup" : [ "EM", "end" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label" : "Contractor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : "contractor", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6bc0a7e8-ecd6-4607-896c-e8e8e88bd616", + "label" : "Electronic monitoring type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7946cf86-d0f6-4611-815f-fc4d6fc05e34", + "label" : "Date last electronic monitoring order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fef836f8-cae7-410f-b006-989d884a8d14", + "label" : "Name of court that imposed electronic monitoring", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "83aef1c6-1246-4894-b44b-6a76d1e4d99b", + "label" : "Name of prison defendant remanded or committed to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a0b426c1-74b8-43cd-9885-f0f31625352e", + "label" : "Payment terms - on release", + "shortCode" : "PTFOR", + "level" : "D", + "rank" : 38700, + "wordGroups" : [ { + "wordGroup" : [ "payment", "on", "release" ] + }, { + "wordGroup" : [ "payment", "full" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Payment terms", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", + "label" : "Remanded in custody - to hospital", + "shortCode" : "RIH", + "level" : "O", + "rank" : 38800, + "wordGroups" : [ { + "wordGroup" : [ "remanded", "hospital", "custody" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label" : "Remand basis", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual" : null, + "reference" : "remandBasis", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f8ff8214-14b0-4425-94eb-64e6ae320f80", + "label" : "Specify hospital", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "specifyHospital", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "riskFactors", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "7b2e6219-ddcb-4afa-8615-8de978e60af1", + "label" : "Bail exception", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "10a769e8-1b1c-430d-844b-8948942cf353", + "qual" : null, + "reference" : "bailException", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", + "label" : "Bail exception reason", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "c0fb2ca5-7702-4f01-b344-33029cfdcd47", + "qual" : null, + "reference" : "bailExceptionReason", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label" : "Additional reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalReasons", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label" : "Place of safety", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "placeOfSafety", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4051", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "C", + "resultDefinitionGroup" : "Remand in custody", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9be66be8-58d2-430c-a0b7-7f759ab0e48a", + "label" : "Interim hospital order", + "shortCode" : "MHHI", + "level" : "O", + "rank" : 38900, + "wordGroups" : [ { + "wordGroup" : [ "hospital", "Order", "interim" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "701b27ad-c54a-4011-a605-8c438ff685c9", + "label" : "Name of hospital where defendant will be admitted or detained", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39001635-2dc8-4a58-9934-eeb60fa4d93b", + "label" : "Name of hospital unit", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", + "label" : "Hospital address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label" : "Place of safety", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "placeOfSafety", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label" : "Conveyor/custodian", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "96949d0c-a59c-4a6f-a563-97456c985987", + "label" : "Further directions regarding conveyance to place of safety", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "3132", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "C", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "cf50fa81-671e-4598-b42b-721e45288240", + "label" : "Interim hospital order extended", + "shortCode" : "MHHIC", + "level" : "O", + "rank" : 39000, + "wordGroups" : [ { + "wordGroup" : [ "hospital", "Order", "extended" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "701b27ad-c54a-4011-a605-8c438ff685c9", + "label" : "Name of hospital where defendant will be admitted or detained", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39001635-2dc8-4a58-9934-eeb60fa4d93b", + "label" : "Name of hospital unit", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", + "label" : "Hospital address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "48648c9f-4553-4d01-8eaa-91af63353a26", + "label" : "Date on which original interim order was made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "3132", + "adjournment" : false, + "convicted" : false, + "qualifier" : "E", + "postHearingCustodyStatus" : "C", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b993d756-e5a8-4204-9d58-b344b79998e1", + "label" : "Notice of Custodial Sentence to Border and Immigration Agency regarding Deportation", + "shortCode" : "DEPN", + "level" : "O", + "rank" : 39100, + "wordGroups" : [ { + "wordGroup" : [ "deportation", "borders" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "099bd432-cf4e-4274-861d-4a665e2f4314", + "label" : "Deportation power", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "16bb9f17-d3c3-42f1-a4dc-2d953114a214", + "label" : "Nationality", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7610d8a1-07fe-4e69-812d-22f821d3f334", + "label" : "Forfeiture order (cash)", + "shortCode" : "FORFC", + "level" : "O", + "rank" : 39200, + "wordGroups" : [ { + "wordGroup" : [ "forfeiture", "cash" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "9bc76b55-37b4-42eb-b16d-52e83f86b8a2", + "label" : "Amount of cash forfeited", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "48d71903-ce47-432a-8706-3619355f7738", + "label" : "Currency of cash forfeited", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "98a562ee-7583-405a-ab05-3f922ada4872", + "label" : "Type of forfeiture", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "26d4c112-a7ae-11e8-98d0-529269fb1459", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3134", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Forfeiture and deprivation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "6532b8f4-7794-420a-9f30-8aced3e41517", + "label" : "Forfeiture of personal licence to sell alcohol", + "shortCode" : "FLIC", + "level" : "O", + "rank" : 39300, + "wordGroups" : [ { + "wordGroup" : [ "forfeiture", "licence", "Alcohol" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label" : "Order suspended pending appeal", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3136", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Forfeiture and deprivation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "661bdce3-ce01-4cb6-a152-6424540bbbce", + "label" : "Suspension of personal licence to sell alcohol", + "shortCode" : "SLIC", + "level" : "O", + "rank" : 39400, + "wordGroups" : [ { + "wordGroup" : [ "suspension", "licence", "Alcohol" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "60a23936-2446-4813-945c-7b42548f526b", + "label" : "Period of suspension", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "60a23936-2446-4813-945c-7b42548f526b", + "label" : "Period of suspension", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "60a23936-2446-4813-945c-7b42548f526b", + "label" : "Period of suspension", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label" : "Order suspended pending appeal", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3119", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Forfeiture and deprivation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "cebb3aa8-fed4-4784-b8bd-57901452344b", + "label" : "Order to give date of birth", + "shortCode" : "DOB", + "level" : "D", + "rank" : 39500, + "wordGroups" : [ { + "wordGroup" : [ "Order", "dob" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4b055468-4534-4ded-b866-2895afae3f49", + "label" : "Date the information must be returned by", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3503", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "label" : "Community requirement: Exclusion not to enter with between dates", + "shortCode" : "ERBD", + "level" : "O", + "rank" : 4600, + "wordGroups" : [ { + "wordGroup" : [ "exclusion", "Requirement", "dates" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", + "label" : "Place / area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ac46c9c8-976d-40ef-a913-85c64a6859bc", + "label" : "From date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9e41b95c-c776-4d95-b057-05b7fcb155aa", + "label" : "Until date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3106", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a0a0f576-5f6c-4924-ac60-f4d289f15938", + "label" : "Order to give statement of person's sex", + "shortCode" : "SPS", + "level" : "D", + "rank" : 39600, + "wordGroups" : [ { + "wordGroup" : [ "Order", "sex" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4b055468-4534-4ded-b866-2895afae3f49", + "label" : "Date the information must be returned by", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3503", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "8fce92ff-22af-4d33-999f-e9c5b9b0f429", + "label" : "No further action taken in respect of conduct (contempt)", + "shortCode" : "NFAC", + "level" : "O", + "rank" : 39700, + "wordGroups" : [ { + "wordGroup" : [ "nfa", "contempt" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "8c858e3e-1ade-4e90-869a-160c2bb5da90", + "label" : "Postponement of enquiry into contempt", + "shortCode" : "POSTC", + "level" : "O", + "rank" : 39800, + "wordGroups" : [ { + "wordGroup" : [ "postpone", "enquiry", "contempt" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "30d79db7-37fa-4c89-9129-926aa633d186", + "label" : "Contempt of court findings", + "shortCode" : "CONTF", + "level" : "O", + "rank" : 39900, + "wordGroups" : [ { + "wordGroup" : [ "contempt", "findings" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "66388542-24fa-475b-8af0-18183ac282e9", + "label" : "Findings", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "3169a020-99f3-4ff8-a76b-c3be37a60b71", + "label" : "Committed to prison for refusal to produce items", + "shortCode" : "P", + "level" : "O", + "rank" : 40000, + "wordGroups" : [ { + "wordGroup" : [ "commit", "prison", "refuse" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "riskFactors", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "18084ac5-1158-49f5-94b6-9ca619f2374b", + "label" : "Document or item to be produced", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "8a4d068d-ca0f-4056-848e-b55b343f1090", + "label" : "Witness summons withdrawn", + "shortCode" : "WSW", + "level" : "C", + "rank" : 40100, + "wordGroups" : [ { + "wordGroup" : [ "witness", "summons", "withdrawn" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", + "label" : "Witness name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "18084ac5-1158-49f5-94b6-9ca619f2374b", + "label" : "Document or item to be produced", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4eb18e66-67e9-43df-8ed6-4b02c486dcc2", + "label" : "No parental bind over made", + "shortCode" : "NPARBOR", + "level" : "D", + "rank" : 40200, + "wordGroups" : [ { + "wordGroup" : [ "no", "parental", "bind" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3657fa70-aec5-4009-99c0-9e5bcab7319f", + "label" : "Reason why court did not make the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d89d0e29-1cc8-4bac-8ff2-80c052398ca6", + "label" : "No parenting order made", + "shortCode" : "NPAROR", + "level" : "D", + "rank" : 40300, + "wordGroups" : [ { + "wordGroup" : [ "no", "parenting", "Order" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3657fa70-aec5-4009-99c0-9e5bcab7319f", + "label" : "Reason why court did not make the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "1628d7d4-b9ec-4680-88dd-0483ee20ed48", + "label" : "No reparation order made", + "shortCode" : "NREPOR", + "level" : "D", + "rank" : 40400, + "wordGroups" : [ { + "wordGroup" : [ "no", "reparation", "Order" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3657fa70-aec5-4009-99c0-9e5bcab7319f", + "label" : "Reason why court did not make the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "66a52d4d-7ec6-430d-a2fe-5963fe9ba095", + "label" : "Detention and training order", + "shortCode" : "DTO", + "level" : "O", + "rank" : 40500, + "wordGroups" : [ { + "wordGroup" : [ "detention", "training", "Order" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", + "label" : "Period of detention and training", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", + "label" : "Period of detention and training", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2395831b-5044-451f-acaf-259d00e01bea", + "label" : "Sentenced in absence", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1000, + "duration" : null, + "wordGroup" : [ "Absence" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "FH", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "49f8c150-93ea-48e7-ae86-f1a467c72a3a", + "label" : "DTO reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7f1c407a-8d1b-40ce-9720-66467e723d5c", + "label" : "Why the reason for DTO applies", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c1003078-ca9c-43ba-a131-8fa755c3a9f4", + "label" : "Defendant is a persistent offender", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "81ed0c6f-7a58-4d4c-b8a0-6425de4f1d29", + "label" : "Detention centre", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "riskFactors", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "d483e89c-4919-4248-a046-372a6a4532a6", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1081", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "091cd45b-4312-476e-a122-18cc02fd1699", + "label" : "Community requirement: Exclusion not to enter for a period with electronic monitoring", + "shortCode" : "ERPEM", + "level" : "O", + "rank" : 4700, + "wordGroups" : [ { + "wordGroup" : [ "exclusion", "electronic monitoring", "Period", "first" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a597f480-868c-4552-a1b3-70b9906dde09", + "label" : "Exclusion and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a597f480-868c-4552-a1b3-70b9906dde09", + "label" : "Exclusion and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a597f480-868c-4552-a1b3-70b9906dde09", + "label" : "Exclusion and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a597f480-868c-4552-a1b3-70b9906dde09", + "label" : "Exclusion and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", + "label" : "Place / area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", + "label" : "Start date for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f02e3b28-83e7-4650-a8e1-810bbb464bb4", + "label" : "Start time for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", + "label" : "End date for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "487358be-eccc-46e4-aa8e-e41495638a2c", + "label" : "End time for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label" : "Contractor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : "contractor", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3106", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f9d43a8f-dd19-4c0f-9fad-a3d339fd09b4", + "label" : "Total detention and training order", + "shortCode" : "TDTO", + "level" : "D", + "rank" : 40600, + "wordGroups" : [ { + "wordGroup" : [ "Total", "detention", "training" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "0a1207ad-d35d-478f-a77d-c0277c463507", + "label" : "Total detention and training order period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "6ab74bbd-3b3b-4658-a6f7-b2be94bd3baa", + "label" : "Reparation order", + "shortCode" : "REPO", + "level" : "O", + "rank" : 40700, + "wordGroups" : [ { + "wordGroup" : [ "reparation", "Order" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8a044676-c316-4d4c-81bf-b52af663be85", + "label" : "Number of reparation hours", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30d0efcf-41df-48e8-891d-ebec2d0ef8fc", + "label" : "Responsible officer", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label" : "Youth offending team to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f8636315-3ef2-4b2e-ae42-92c249c19a49", + "label" : "Local authority", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "57227a07-3b72-4f96-907c-fe13b5d7847f", + "label" : "Order details", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "47f34fca-6355-4612-881a-07a2121b86ba", + "label" : "Supervising court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1083", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4feb6756-ffe5-4c38-8c90-e3c94f81b359", + "label" : "Certificate that the case is fit for appeal to the Court of Appeal Criminal Division", + "shortCode" : "CERTA", + "level" : "O", + "rank" : 40800, + "wordGroups" : [ { + "wordGroup" : [ "case", "fit", "appeal" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "fae932b8-99cd-45d5-856e-14226aaa67a1", + "label" : "Certificate granted Criminal Appeal Act 1968", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4067c886-1d7f-4079-874e-d798c11a8429", + "label" : "Conviction / sentence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e5a86c23-5e4f-49e7-8ab0-1827bb77a253", + "label" : "Bail granted unconditionally pending appeal to the Court of Appeal Criminal Division", + "shortCode" : "UCBCA", + "level" : "O", + "rank" : 40900, + "wordGroups" : [ { + "wordGroup" : [ "unconditional", "bail", "appeal" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "4047", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9b816cc1-7836-44b2-a706-b09ab110f790", + "label" : "Bail granted conditionally pending appeal to the Court of Appeal Criminal Division", + "shortCode" : "CBBCA", + "level" : "O", + "rank" : 41000, + "wordGroups" : [ { + "wordGroup" : [ "conditional", "bail", "appeal" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f7995d94-bf13-41df-a599-79ead4123aad", + "label" : "BASS provider", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "4027", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "75fc296e-d16a-44ec-a04c-c0affb549952", + "label" : "Bind over surety", + "shortCode" : "BOS", + "level" : "O", + "rank" : 41100, + "wordGroups" : [ { + "wordGroup" : [ "bind", "surety" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label" : "Duration of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc717d96-41ce-43bd-b0ac-33830c52eea6", + "label" : "Surety name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e449e677-80fd-4037-8e84-34e40bba95cd", + "label" : "Surety address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label" : "Amount of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "440ad312-35f7-42c5-bbae-899a60457abb", + "label" : "Defendant or respondent", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1a235ff2-a76f-414c-be31-58db18360810", + "label" : "Basis of bind over", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "33bdd72c-430b-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a8ca6ddf-6dbd-4cc8-9699-7902297157df", + "label" : "Conduct or activity to be refrained from", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "516dbb2c-d9e1-4186-b458-e3b6f798db58", + "label" : "To keep the peace especially towards - name of person", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8c144a05-5804-4478-a419-12bab06748cc", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9b35f4f5-531e-48b4-858d-d81e15e77c23", + "label" : "Warrant of arrest without bail on sentence of imprisonment in absence", + "shortCode" : "WABSN", + "level" : "O", + "rank" : 41200, + "wordGroups" : [ { + "wordGroup" : [ "warrant", "arrest", "without", "bail", "imprisonment" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label" : "Process server name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e498ec52-0adf-41cf-89e2-40955a418393", + "label" : "Courthouse name", + "welshLabel" : "Enw’r adeilad llys", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label" : "Courtroom", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "4576", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Warrants of arrest", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2360acdb-4667-4f64-ab40-c2383271ea18", + "label" : "Surety", + "shortCode" : "suret", + "level" : "C", + "rank" : 41300, + "wordGroups" : [ { + "wordGroup" : [ "suret" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b20eb2e5-a012-4805-9713-8868579a8ec2", + "label" : "Surety's name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9f4821b8-a160-40a0-b01e-0b0ba4f4c39e", + "label" : "Surety's address", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "921cd8cc-0af1-46a7-8bfe-403a3e831a85", + "label" : "Amount of recognisance", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e498ec52-0adf-41cf-89e2-40955a418393", + "label" : "Courthouse name", + "welshLabel" : "Enw’r adeilad llys", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "19d80e10-7792-4988-bfed-3bb09cd287b5", + "label" : "Date of next court hearing", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8f8965c6-fe32-445c-9752-65b36d6f7e08", + "label" : "Time of next court hearing", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TIME", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f6125c7b-0f0d-4cae-a98f-54b1e230c485", + "label" : "This applies at each time and place until the conclusion of the case", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "3e43af75-59bd-457e-a22a-1f61215a42df", + "label" : "Surety declared forfeit (to pay)", + "shortCode" : "SFOP", + "level" : "O", + "rank" : 41400, + "wordGroups" : [ { + "wordGroup" : [ "surety", "forfeit" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e88fae27-272b-4ab0-b10f-af26d5951c19", + "label" : "Date recognizance forfeited", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c1289c3f-b81b-4abb-93cc-546b340312b0", + "label" : "Amount to pay", + "welshLabel" : "Swm i’w dalu", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3016", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "673d90bc-e8d7-40fd-8ad1-39517526452d", + "label" : "Principal declared forfeit (to pay)", + "shortCode" : "PFOP", + "level" : "O", + "rank" : 41500, + "wordGroups" : [ { + "wordGroup" : [ "principal", "forfeit" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e88fae27-272b-4ab0-b10f-af26d5951c19", + "label" : "Date recognizance forfeited", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c1289c3f-b81b-4abb-93cc-546b340312b0", + "label" : "Amount to pay", + "welshLabel" : "Swm i’w dalu", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3016", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "label" : "Community requirement: Exclusion not to leave a place for a period with electronic monitoring", + "shortCode" : "ERLPEM", + "level" : "O", + "rank" : 4800, + "wordGroups" : [ { + "wordGroup" : [ "exclusion", "electronic monitoring", "residence", "Period", "first" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a597f480-868c-4552-a1b3-70b9906dde09", + "label" : "Exclusion and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a597f480-868c-4552-a1b3-70b9906dde09", + "label" : "Exclusion and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a597f480-868c-4552-a1b3-70b9906dde09", + "label" : "Exclusion and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a597f480-868c-4552-a1b3-70b9906dde09", + "label" : "Exclusion and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", + "label" : "Place / area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", + "label" : "Start date for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f02e3b28-83e7-4650-a8e1-810bbb464bb4", + "label" : "Start time for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", + "label" : "End date for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "487358be-eccc-46e4-aa8e-e41495638a2c", + "label" : "End time for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label" : "Contractor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : "contractor", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3106", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "version": "2021-11-04T13:58:39.210Z", + "startDate": "2021-11-05", + "label": "Community order England / Wales", + "shortCode": "co", "level": "O", - "rank": 11400, + "rank": 27300, "wordGroups": [ { "wordGroup": [ - "compensation", - "no" + "co", + "Community" ] } ], - "userGroups": [], "prompts": [ { - "id": "e263de82-47ca-433a-bb41-cad2e1c5bb72", - "label": "Reason for no compensation", - "welshLabel": "Rheswm dros beidio â rhoi iawndal", - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 100, - "duration": null, - "wordGroup": null, + "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", + "label": "Judge reserves breach proceedings", + "welshLabel": "Barnwr yn neilltuo achos torri amodau", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "financial": "N", + "reference": "judgeReservesBreachProceedings", + "wordGroup": [ + "reserved" + ], "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": "5f29ba24-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": "reasonForNoCompensation", "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Rheswm dros beidio â dyfarnu iawndal", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "baf94928-04ae-4609-8e96-efc9f081b2be", - "label": "No order for costs", - "shortCode": "NCOSTS", - "level": "O", - "rank": 11500, - "wordGroups": [ - { - "wordGroup": [ - "no", - "Costs" - ] - } - ], - "userGroups": [], - "prompts": [ + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, { - "id": "be2a46db-709d-4e0d-9b63-aeb831564c1d", - "label": "Reason for no costs", - "welshLabel": "", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedOrganisationName", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": "reasonForNoCosts", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "52770cf4-41a8-4c04-a41c-2b12a95cb8dd", - "label": "Defendant has died", - "shortCode": "dead", - "level": "O", - "rank": 11600, - "wordGroups": [ - { - "wordGroup": [ - "dead" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "2065", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "8f9539a0-bd05-4002-9146-d55920cbab9e", - "label": "Defendant committed suicide", - "shortCode": "deads", - "level": "O", - "rank": 11700, - "wordGroups": [ - { - "wordGroup": [ - "deads" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "2503", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4632d712-6cf7-4929-af0d-9bf4a4436ee3", - "label": "The Court did not proceed with the trial in the defendant's absence", - "shortCode": "NOTRIAL", - "level": "O", - "rank": 11800, - "wordGroups": [ - { - "wordGroup": [ - "trial", - "adjourned" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "reason", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "88fd00c6-d63c-4f4e-9a86-4628856a9557", - "label": "No evidence offered - verdict of not guilty by order of Judge", - "shortCode": "NGJ", - "level": "O", - "rank": 11900, - "wordGroups": [ - { - "wordGroup": [ - "judge", - "not", - "guilty" - ] - }, - { - "wordGroup": [ - "prosecution", - "no", - "evidence" - ] - }, - { - "wordGroup": [ - "prosecution", - "neo" - ] - }, - { - "wordGroup": [ - "no", - "evidence" - ] - }, - { - "wordGroup": [ - "not", - "guilty" - ] - }, - { - "wordGroup": [ - "NGJ" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "2050", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "14d66587-8fbe-424f-a369-b1144f1684e3", - "label": "Dismissed", - "shortCode": "DISM", - "level": "O", - "rank": 12000, - "wordGroups": [ - { - "wordGroup": [ - "DISM" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "2006", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "56e808c5-cd8f-4882-b8e2-c2f615e09c11", - "label": "Criminal behaviour order", - "shortCode": "CRIMBO", - "level": "O", - "rank": 12100, - "wordGroups": [ - { - "wordGroup": [ - "criminal", - "behaviour", - "Order" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "6c3f5d58-d206-46ca-a652-23ee198b371a", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c3f5d58-d206-46ca-a652-23ee198b371a", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c3f5d58-d206-46ca-a652-23ee198b371a", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label": "Start date of order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4461f7f5-f984-4b6d-9f60-3084e5071382", - "label": "Requirements", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label": "Supervisor", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label": "Supervisor's address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "56190eb2-0035-44cc-b904-b131f299835c", - "label": "Prohibitions contained in the order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1177", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c2fa19f6-dabf-43fc-9f12-2347fc9b8cc5", - "label": "Interim criminal behaviour order", - "shortCode": "CRIMBI", - "level": "O", - "rank": 12200, - "wordGroups": [ - { - "wordGroup": [ - "interim", - "criminal", - "behaviour", - "Order" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4461f7f5-f984-4b6d-9f60-3084e5071382", - "label": "Requirements", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label": "Supervisor", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label": "Supervisor's address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "56190eb2-0035-44cc-b904-b131f299835c", - "label": "Prohibitions contained in the order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "1178", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "3cf4b38f-004d-4eb4-8fdb-5d285c11ab47", - "label": "Criminal behaviour order variation", - "shortCode": "CRIMBV", - "level": "O", - "rank": 12300, - "wordGroups": [ - { - "wordGroup": [ - "criminal", - "behaviour", - "Order", - "varied" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "84f70920-235c-4747-a0d5-545a2f761b37", - "label": "Name of person on criminal behaviour order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3e9e09fd-f512-4cd1-95ad-f4ddd06a0d41", - "label": "Date original criminal behaviour order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d2b6a2eb-53e5-440b-991d-65ee4ef806a0", - "label": "Requirements (added, varied or removed)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label": "Supervisor", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label": "Supervisor's address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd92da3a-193a-4b87-98ae-b8622f4148ce", - "label": "Prohibitions (added, varied or removed)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d2ed5c6c-2ebc-421b-834b-6f66ecb90e4e", - "label": "Is the person on the original order a youth?", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6b509d44-fb0e-463f-8b7f-675cb6903265", - "label": "Parent's name", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", - "label": "Parent's address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1177", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "23d744a1-d71c-4849-b6a3-b736d71ea438", - "label": "No video link reason", - "shortCode": "NOVID", - "level": "O", - "rank": 12400, - "wordGroups": [ - { - "wordGroup": [ - "no", - "video", - "link" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "318c9eb2-cf3c-4592-a353-1b2166c15f81", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7959646e-ce77-4862-b6fe-5fb3a953c427", - "label": "Order discharged", - "shortCode": "ODIS", - "level": "O", - "rank": 12500, - "wordGroups": [ - { - "wordGroup": [ - "Order", - "discharged" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "27c32341-8aed-4ccc-8894-7adb6f5eaf55", - "label": "Type of order discharged", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "44554ccd-9975-4e36-b06d-8f58aebe788c", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "47f34fca-6355-4612-881a-07a2121b86ba", - "label": "Supervising court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1029", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "204fc6b8-d6c9-4fb8-acd0-47d23c087625", - "label": "No surcharge", - "shortCode": "NOVS", - "level": "D", - "rank": 13100, - "wordGroups": [ - { - "wordGroup": [ - "no", - "surcharge" - ] - }, - { - "wordGroup": [ - "no", - "vs" - ] - }, - { - "wordGroup": [ - "no", - "victim", - "surcharge" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "042742a1-8d47-4558-9b3e-9f34b358e034", - "label": "Reason for no surcharge", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9fdeff80-84c8-4dc0-8fcf-f8805d8e57ee", - "label": "Surcharge reduced", - "shortCode": "VSR", - "level": "D", - "rank": 13200, - "wordGroups": [ - { - "wordGroup": [ - "vs", - "reduced" - ] - }, - { - "wordGroup": [ - "surcharge", - "reduced" - ] - }, - { - "wordGroup": [ - "victim", - "surcharge", - "reduced" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "910d207e-29ac-4891-b0f8-4d0ade9ac224", - "label": "Reason for reducing surcharge", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c3179e14-8754-4496-9190-3a9e47da0af7", - "label": "Football banning order", - "shortCode": "FBO", - "level": "O", - "rank": 13300, - "wordGroups": [ - { - "wordGroup": [ - "FBO" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", - "label": "Police station name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "192c8ce6-57dd-463a-b588-bb7189f4c4c1", - "label": "Police station address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "243f72af-801e-409e-b807-8878719d832a", - "label": "Report within 5 days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", - "label": "Reasons for making the order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "164d3778-bb74-4bdb-b006-8df4cd05a905", - "label": "Additional requirements", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", - "label": "Prison address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3068", - "adjournment": false, - "convicted": true, - "qualifier": "FA", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "adf86eb7-2eb7-4575-bab5-63001eb23382", - "label": "Football banning order terminated", - "shortCode": "FBOT", - "level": "O", - "rank": 13400, - "wordGroups": [ - { - "wordGroup": [ - "FBO", - "terminated" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", - "label": "End date of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", - "label": "Prison address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1029", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "73265700-cb68-4a88-86a8-53fcc6f5d6ba", - "label": "Football banning order varied", - "shortCode": "FBOV", - "level": "O", - "rank": 13500, - "wordGroups": [ - { - "wordGroup": [ - "FBO", - "varied" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f4ffbd41-eea5-4465-b910-b1eaf033d30e", - "label": "Details of variation", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "297a984c-71fa-436e-b9bd-068255e6d530", - "label": "Original court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", - "label": "Prison address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1030", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "fefede3e-436b-4cd6-a967-7c63d1cb4bce", - "label": "Football banning order termination refused", - "shortCode": "FBOTR", - "level": "O", - "rank": 13600, - "wordGroups": [ - { - "wordGroup": [ - "fbo. terminated", - "refused" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d14c2611-0b4c-478c-a1ec-53bf44bcaa1f", - "label": "Football banning order arising from offence outside England and Wales", - "shortCode": "FBOI", - "level": "O", - "rank": 13700, - "wordGroups": [ - { - "wordGroup": [ - "FBO", - "England" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", - "label": "Police station name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "192c8ce6-57dd-463a-b588-bb7189f4c4c1", - "label": "Police station address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "243f72af-801e-409e-b807-8878719d832a", - "label": "Report within 5 days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", - "label": "Reasons for making the order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "164d3778-bb74-4bdb-b006-8df4cd05a905", - "label": "Additional requirements", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3068", - "adjournment": false, - "convicted": false, - "qualifier": "FB", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5e272729-a76b-485c-8784-bddef53f700e", - "label": "No football banning order", - "shortCode": "NFBO", - "level": "O", - "rank": 13800, - "wordGroups": [ - { - "wordGroup": [ - "no", - "FBO" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "46afed44-cb35-43bb-9f7e-78c4d9be298f", - "label": "Reasons for not making a football banning order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c4705a6b-7914-4fc8-bf1e-3553ff1cccf5", - "label": "Declaration of relevance relating to football matches", - "shortCode": "DRF", - "level": "O", - "rank": 13900, - "wordGroups": [ - { - "wordGroup": [ - "declaration", - "football", - "match" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e44817e6-cc08-464f-8c21-1f3ba0af562d", - "label": "Type of football match", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "5ba4aaa6-04d9-4495-bcad-6d1006209ea6", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3099", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e2f51977-ea53-4ac8-8951-75975da06bc5", - "label": "Bind over to keep the peace", - "shortCode": "BOCOND", - "level": "O", - "rank": 14000, - "wordGroups": [ - { - "wordGroup": [ - "bind", - "over" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label": "Amount of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a8ca6ddf-6dbd-4cc8-9699-7902297157df", - "label": "Conduct or activity to be refrained from", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "516dbb2c-d9e1-4186-b458-e3b6f798db58", - "label": "To keep the peace especially towards - name of person", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8c144a05-5804-4478-a419-12bab06748cc", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1016", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "label": "Community requirement: Drug rehabilitation non-residential", - "shortCode": "DRWR", - "level": "O", - "rank": 2100, - "wordGroups": [ - { - "wordGroup": [ - "Drug", - "Rehabilitation", - "Non-residential" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f092fe58-2297-4d10-818a-8b303692ac39", - "label": "Under direction of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "underDirectionOf", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "10028ef8-efc7-4a40-9703-1e121a6fbc84", - "label": "Period to provide samples", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "periodToProvideSamples", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0b74fb53-acb7-42db-b9b6-976ce74b59b5", - "label": "Treatment place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "treatmentPlace", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6aaf3645-0806-4917-ada5-b019c6a606c5", - "label": "Treatment intervals", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3109", - "adjournment": false, - "convicted": true, - "qualifier": "BS", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "76c0d994-decd-4a2a-93ca-958f4595181e", - "label": "Bind over to come up for judgment when called on", - "shortCode": "BOJ", - "level": "O", - "rank": 14100, - "wordGroups": [ - { - "wordGroup": [ - "bind", - "over", - "judgement" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label": "Amount of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8c144a05-5804-4478-a419-12bab06748cc", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "407bf65d-8be7-4996-b7e7-91d0ae7dfa75", - "label": "Conditions of bind over to be complied with", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1016", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2c2bc8f2-4dd5-4670-b391-bdaca5b3e4f0", - "label": "Bind over witness to keep the peace", - "shortCode": "BOW", - "level": "O", - "rank": 14200, - "wordGroups": [ - { - "wordGroup": [ - "bind", - "over", - "witness", - "peace" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", - "label": "Witness name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e23c9dab-1dc4-4522-86db-2bcd29121134", - "label": "Witness address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label": "Amount of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a8ca6ddf-6dbd-4cc8-9699-7902297157df", - "label": "Conduct or activity to be refrained from", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "516dbb2c-d9e1-4186-b458-e3b6f798db58", - "label": "To keep the peace especially towards - name of person", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8c144a05-5804-4478-a419-12bab06748cc", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1016", - "adjournment": false, - "convicted": false, - "qualifier": "W", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "92a97bb2-adfe-42bd-a705-6f538b3145f9", - "label": "Sexual harm prevention order for period", - "shortCode": "shopp", - "level": "O", - "rank": 14300, - "wordGroups": [ - { - "wordGroup": [ - "shopp" - ] - }, - { - "wordGroup": [ - "sexual", - "harm", - "prevention", - "Order", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4aee5e0c-959b-4ed9-b589-71c1fe28134d", - "label": "Type of order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "56190eb2-0035-44cc-b904-b131f299835c", - "label": "Prohibitions contained in the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1179", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7fd3992e-c1dd-4fd1-abbc-a816f1250bae", - "label": "Sexual harm prevention order until further order", - "shortCode": "SHOPF", - "level": "O", - "rank": 14400, - "wordGroups": [ - { - "wordGroup": [ - "sexual", - "harm", - "prevention", - "Order", - "Further" - ] - }, - { - "wordGroup": [ - "shopo", - "Further" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4aee5e0c-959b-4ed9-b589-71c1fe28134d", - "label": "Type of order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "56190eb2-0035-44cc-b904-b131f299835c", - "label": "Prohibitions contained in the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1179", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2b418a7d-a48d-4c75-a912-8112f1010ab9", - "label": "Sexual harm prevention order until end date", - "shortCode": "SHOPE", - "level": "O", - "rank": 14500, - "wordGroups": [ - { - "wordGroup": [ - "shopo", - "until" - ] - }, - { - "wordGroup": [ - "sexual", - "harm", - "prevention", - "Order", - "until" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4aee5e0c-959b-4ed9-b589-71c1fe28134d", - "label": "Type of order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "eea72b76-275c-4eef-9021-a99c59d088cc", - "label": "End date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "Date", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "56190eb2-0035-44cc-b904-b131f299835c", - "label": "Prohibitions contained in the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1179", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "69cf9e2e-f117-4311-952d-e286af84c3be", - "label": "Sexual harm prevention order varied", - "shortCode": "SHOPV", - "level": "O", - "rank": 14600, - "wordGroups": [ - { - "wordGroup": [ - "shopo", - "varied" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "671e3bd7-0c84-461c-aada-7c73d6fad03b", - "label": "Type of sexual harm prevention order varied", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label": "Date order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "Date", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "94514093-d8de-4400-93de-9e3366f5af8c", - "label": "Name of defendant on original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label": "Name of court that made the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2def6a67-bdb7-4596-8544-53ebb5811880", - "label": "Variation of prohibitions (other than foreign)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f0b5c085-202d-4b96-9409-959f950c6bf3", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label": "Start date of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "03501a9a-2668-4587-acc1-b8e880f7c3f4", - "label": "Parent's name (deft is a youth)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", - "label": "Parent's address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1030", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "dc954e27-f35a-46e2-98a2-9e0ca1fbabb4", - "label": "Total suspended detention", - "shortCode": "STDET", - "level": "D", - "rank": 14700, - "wordGroups": [ - { - "wordGroup": [ - "Total", - "SSO", - "detention" - ] - }, - { - "wordGroup": [ - "STDET" - ] - }, - { - "wordGroup": [ - "Total", - "suspended", - "detention" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "699055ee-d41c-4311-91bd-b8ca38aaca84", - "label": "Suspended period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 2 - }, - { - "id": "699055ee-d41c-4311-91bd-b8ca38aaca84", - "label": "Suspended period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 2 - }, - { - "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label": "Supervision period", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label": "Supervision period", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label": "Supervision period", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label": "Supervision period", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06a61bd3-ca3e-4871-b83e-000dfb6289e5", - "label": "Judge reserves review hearing", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1200, - "duration": null, - "wordGroup": [ - "Review" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label": "Judge reserves breach proceedings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1300, - "duration": null, - "wordGroup": [ - "Breach" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label": "Total sentence consecutive to what", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc01db7c-d110-4d3c-9efa-d05a72742ddb", - "label": "Review frequency", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", - "label": "First review date", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", - "label": "Time of hearing", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TIME", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "dab2947a-9b21-450e-8fd1-d82ea3e0f42f", - "label": "Courthouse", - "welshLabel": "Adeilad llys", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "335094b9-94ab-44de-b43e-8fcbc7600008", - "label": "Courthouse", - "welshLabel": "Adeilad llys", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d6ac217f-6864-416e-89cf-3f31e1885cfc", - "label": "Courtroom", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ccb76b76-b883-41c3-bd5c-7723531a8909", - "label": "Defendant to attend review", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "6d72674d-1ca6-490a-a1c4-0a6404169f66", - "label": "Disqualification from involvement as a director etc of a company", - "shortCode": "DCO", - "level": "O", - "rank": 14800, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "director" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label": "Duration of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label": "Duration of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e7e298e3-4182-4e0a-b7d4-75f223a36549", - "label": "Specify Section of Company Directors Disqualification Act 1986", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "350608f2-3deb-4c23-9643-1c7ad33a09f7", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "89cea994-e319-4a90-8899-8a4fd03e3afa", - "label": "Disqualification start date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "21aadaea-89ef-424c-8606-b5d74811aeaf", - "label": "Section 243 exemption applies", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0491c27e-7fdb-4e93-9358-620332372f25", - "label": "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3002", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5fed2cbd-0d51-4848-8f9b-f0e574e9b0e7", - "label": "Disqualification against a body corporate / firm", - "shortCode": "DCOB", - "level": "O", - "rank": 14900, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "firm" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label": "Duration of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label": "Duration of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e7e298e3-4182-4e0a-b7d4-75f223a36549", - "label": "Specify Section of Company Directors Disqualification Act 1986", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "350608f2-3deb-4c23-9643-1c7ad33a09f7", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "89cea994-e319-4a90-8899-8a4fd03e3afa", - "label": "Disqualification start date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "543324ec-da1d-456b-8d9f-32300f8fe371", - "label": "Company registration number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "64a61a50-ba04-46f8-b624-09494db4bb5a", - "label": "Country of registration", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0491c27e-7fdb-4e93-9358-620332372f25", - "label": "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "bcf1b451-af1e-4603-9605-586310d0e61e", - "label": "Community requirement: Drug rehabilitation residential", - "shortCode": "DRRWR", - "level": "O", - "rank": 2200, - "wordGroups": [ - { - "wordGroup": [ - "Drug", - "Rehabilitation", - "Residential" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "10028ef8-efc7-4a40-9703-1e121a6fbc84", - "label": "Period to provide samples", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "10028ef8-efc7-4a40-9703-1e121a6fbc84", - "label": "Period to provide samples", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f092fe58-2297-4d10-818a-8b303692ac39", - "label": "Under direction of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0b74fb53-acb7-42db-b9b6-976ce74b59b5", - "label": "Treatment place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3109", - "adjournment": false, - "convicted": true, - "qualifier": "BM", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ccfc452e-ebe4-4cd7-b8a0-4f90768447b4", - "label": "Discretionary with ordinary disqualification", - "shortCode": "DDD", - "level": "O", - "rank": 15000, - "wordGroups": [ - { - "wordGroup": [ - "DDD" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "03fe43ad-1857-4ba1-8481-6c660744b617", - "label": "Starting from date (date of interim disqualification)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3071", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "a67b959b-b2e6-4741-b758-d7ef27f973a7", - "label": "Discretionary with ordinary disqualification for life", - "shortCode": "DDDL", - "level": "O", - "rank": 15100, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "Life" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "03fe43ad-1857-4ba1-8481-6c660744b617", - "label": "Starting from date (date of interim disqualification)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3071", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "8c81d29b-5621-4f2c-9e05-297241822ba6", - "label": "Obligatory but reduced disqualification for special reasons", - "shortCode": "DDDR", - "level": "O", - "rank": 15200, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "special", - "reasons" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "03fe43ad-1857-4ba1-8481-6c660744b617", - "label": "Starting from date (date of interim disqualification)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "dcaf502b-44d2-4be0-acfc-2f7d29142da6", - "label": "Special reasons", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3070", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "20a7e0f4-abc5-4beb-8af0-a327de1d6e7e", - "label": "Discretionary with disqualification until ordinary test passed", - "shortCode": "DDDT", - "level": "O", - "rank": 15300, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "test", - "until" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "03fe43ad-1857-4ba1-8481-6c660744b617", - "label": "Starting from date (date of interim disqualification)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3071", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "cf8a3c59-63f5-4757-8783-88f1e31aa653", - "label": "Discretionary disqualification until test passed only", - "shortCode": "DDDTO", - "level": "O", - "rank": 15400, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "test", - "until", - "only" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3073", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "c2c346d1-dc13-48c8-b557-ef3dabcb1b9b", - "label": "Obligatory disqualification until extended test passed", - "shortCode": "DDOTE", - "level": "O", - "rank": 15500, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "until", - "extended" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "03fe43ad-1857-4ba1-8481-6c660744b617", - "label": "Starting from date (date of interim disqualification)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3070", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "73fe22ca-76bd-4aba-bdea-6dfef8ee03a2", - "label": "Points disqualification", - "shortCode": "DDP", - "level": "O", - "rank": 15600, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "points" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label": "Notional penalty points", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3072", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "651cbf5b-b7f0-4921-ba01-e18ad2ac763b", - "label": "Points disqualification for life", - "shortCode": "DDPL", - "level": "O", - "rank": 15700, - "wordGroups": [ - { - "wordGroup": [ - "disqualificatiom", - "ponts", - "Life" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label": "Notional penalty points", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3072", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "7b0933f8-405e-434a-9bfe-871f794260cb", - "label": "Points but reduced disqualification for mitigating circumstance", - "shortCode": "DDPR", - "level": "O", - "rank": 15800, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "points", - "mitigating" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label": "Notional penalty points", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a541edb8-fead-4a88-8665-79b5a59c183c", - "label": "Mitigating circumstances", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "mitigatingCircumStances", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3072", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "097dfa33-6c62-4ed1-af46-6c6786b66d65", - "label": "Points with disqualification until extended test passed", - "shortCode": "DDPTE", - "level": "O", - "rank": 15900, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "points", - "extended" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label": "Notional penalty points", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3072", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "a5aa694e-4729-40f5-814e-60a75d9429e0", - "label": "Community requirement: Programme", - "shortCode": "PR", - "level": "O", - "rank": 2300, - "wordGroups": [ - { - "wordGroup": [ - "PR" - ] - }, - { - "wordGroup": [ - "Programme", - "Requirement" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "60e386e4-51df-4c91-81f7-9a25751de426", - "label": "Number of days", - "welshLabel": "Nifer o ddyddiau", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3103", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "90ef1e35-b19a-4ad9-a4e1-e511e9d1d00e", - "label": "Driving Disq - Reduction for course (discretionary)", - "shortCode": "DDRCD", - "level": "O", - "rank": 16000, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "course", - "dicretionary" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7326f05d-54b3-450e-92dd-a5bc0710f8f7", - "label": "Name of course", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "286cc674-a4f8-408e-aa6d-8dbc175ab968", - "label": "Date by which course must be completed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label": "Defendant's mobile number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e2ae845f-12f4-498e-bddf-a90c8cb499ba", - "label": "Defendant's home telephone number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label": "Special needs", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3071", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "990e8cad-c8e0-4ad9-ba86-13180338986d", - "label": "Driving Disq - Reduction for course (obligatory)", - "shortCode": "DDRCO", - "level": "O", - "rank": 16100, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "course", - "obligatory" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7326f05d-54b3-450e-92dd-a5bc0710f8f7", - "label": "Name of course", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "286cc674-a4f8-408e-aa6d-8dbc175ab968", - "label": "Date by which course must be completed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label": "Defendant's mobile number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e2ae845f-12f4-498e-bddf-a90c8cb499ba", - "label": "Defendant's home telephone number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label": "Special needs", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3070", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "7ee02b35-88ca-4acc-ab8b-70f3e95a32d0", - "label": "Obligatory Disqualification until extended test passed - reduction for course", - "shortCode": "DDRCOT", - "level": "O", - "rank": 16200, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "course", - "obligatory", - "extended" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label": "Disqualification reduction period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7326f05d-54b3-450e-92dd-a5bc0710f8f7", - "label": "Name of course", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "286cc674-a4f8-408e-aa6d-8dbc175ab968", - "label": "Date by which course must be completed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label": "Defendant's mobile number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e2ae845f-12f4-498e-bddf-a90c8cb499ba", - "label": "Defendant's home telephone number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label": "Special needs", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3070", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "4414bffb-c62e-442c-841a-2ebed0e688b6", - "label": "Interim disqualification", - "shortCode": "DDRI", - "level": "O", - "rank": 16300, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "inerim" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3096", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "3ae7caf1-d5ff-4534-9fbb-17a3a04cb9ab", - "label": "Disqualification for non-endorsable offence", - "shortCode": "DDRN", - "level": "O", - "rank": 16400, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "non-endorsable" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3094", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "3fa139cc-efe0-422b-93d6-190a5be50953", - "label": "Driving record endorsed with additional points (points on more than one offence)", - "shortCode": "LEA", - "level": "O", - "rank": 16500, - "wordGroups": [ - { - "wordGroup": [ - "endorsed", - "Additional", - "points" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a8719de4-7783-448a-b792-e3f94e670ad0", - "label": "Penalty points for this offence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "PENPT", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bbbb47bb-3418-463c-bfc3-43c6f72bb7c9", - "label": "Reasons for imposing penalty points on more than one offence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3008", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "b0aeb4fc-df63-4e2f-af88-97e3f23e847f", - "label": "Driving record endorsed (no points)", - "shortCode": "LEN", - "level": "O", - "rank": 16600, - "wordGroups": [ - { - "wordGroup": [ - "endorsed", - "no", - "points" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3008", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "cee54856-4450-4f28-a8a9-72b688726201", - "label": "Driving record endorsed with penalty points", - "shortCode": "LEP", - "level": "O", - "rank": 16700, - "wordGroups": [ - { - "wordGroup": [ - "endorsed", - "points" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a8719de4-7783-448a-b792-e3f94e670ad0", - "label": "Penalty points for this offence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "PENPT", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3008", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "af322d0a-ba2a-47f1-8d46-7b3ea423d689", - "rollUpPrompts": true, - "publishedForNows": true, - "label": "No disqualification - Mitigating Circumstances", - "shortCode": "NDMC", - "level": "C", - "rank": 16800, - "wordGroups": [ - { - "wordGroup": [ - "no", - "disqualification", - "mitigating" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a541edb8-fead-4a88-8665-79b5a59c183c", - "label": "Mitigating circumstances", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "mitigatingCircumStances", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3509", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "808313d1-f450-4410-b2f1-97409d7b4074", - "label": "No disqualification - Special Reasons", - "shortCode": "NDSR", - "level": "O", - "rank": 16900, - "wordGroups": [ - { - "wordGroup": [ - "no", - "disqualification", - "special", - "reason" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "dcaf502b-44d2-4be0-acfc-2f7d29142da6", - "label": "Special reasons", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3509", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "label": "Community requirement: Rehabilitation activity", - "shortCode": "RAR", - "level": "O", - "rank": 2400, - "wordGroups": [ - { - "wordGroup": [ - "Rehabilitation", - "Activity" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1bc7246f-89f2-4b2f-b765-d01297d7b4aa", - "label": "Max number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3149", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f121db73-57fb-4f74-9ab1-0843aabe4605", - "label": "No endorsement - Special Reasons", - "shortCode": "NESR", - "level": "O", - "rank": 17000, - "wordGroups": [ - { - "wordGroup": [ - "no", - "endorsement", - "special", - "reason" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "dcaf502b-44d2-4be0-acfc-2f7d29142da6", - "label": "Special reasons", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3508", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b5ee3936-2cd5-47f4-9192-3737c7093a7f", - "label": "Removal of Driving Disqualification", - "shortCode": "RDD", - "level": "O", - "rank": 17100, - "wordGroups": [ - { - "wordGroup": [ - "remove", - "disqualification" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "fb28be9c-0f74-4c02-a70e-0fffa9b0614b", - "label": "Date disqualification imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7a6d9bb9-a042-4234-8b92-d871437fd15a", - "label": "Date disqualification ends", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "73f005c6-11e7-4d45-a378-85ea5919e553", - "label": "Original date of conviction", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "37ee2b08-1950-4b04-bea5-f6f66b768bb0", - "label": "Original offence date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5813ddb2-e987-44fd-bdcf-4148e6fb9cda", - "label": "DVLA offence code", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "84a42b46-f384-410d-a4d9-46fe0cb74678", - "label": "Applicant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c70597c0-a333-4828-959f-e6c8174a311c", - "label": "Original convicting court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3030", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "663d9c78-0e56-4931-9f3a-5301a7e94147", - "label": "Disqualification for non-endorsable offence (assault by driving a motor vehicle)", - "shortCode": "DDRA", - "level": "O", - "rank": 17200, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "non-endorsable", - "assault" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7a353b75-acd8-4a69-b779-d14c194fa3fd", - "label": "Extension period section 147A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "975c0985-7ee4-4560-85fc-5eecf97f9b34", - "label": "Extension period section 147B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3095", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "6ef33dcf-3fd3-46d6-bc41-f7bfb7f5ced6", - "label": "Disqualification for non-endorsable offence (vehicle used for purposes of crime)", - "shortCode": "DDRV", - "level": "O", - "rank": 17300, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "non-endorsable", - "crime" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7a353b75-acd8-4a69-b779-d14c194fa3fd", - "label": "Extension period section 147A (immediate custodial sentence)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "975c0985-7ee4-4560-85fc-5eecf97f9b34", - "label": "Extension period section 147B (effect of custodial sentence noted)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3095", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": true, - "resultDefinitionRules": [] - }, - { - "id": "238fc228-f948-430e-b0a1-7c9bdcafac46", - "label": "Disqualification suspended pending appeal", - "shortCode": "DSPA", - "level": "O", - "rank": 17400, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "suspended", - "appeal" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantDrivingLicenseNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3075", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d3ca848c-ab33-4650-a0e6-36f1b86998a2", - "label": "Disqualification suspended pending appeal in a later session", - "shortCode": "DSPAS", - "level": "O", - "rank": 17500, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "suspended", - "appeal", - "later" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", - "label": "Convicting court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "00ff3bf4-a872-4c16-a671-f05b8aa147f3", - "label": "Sentencing court if different from convicting court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e3764c59-4e25-4864-a3af-1c2e3390af99", - "label": "Date of conviction", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9c1c1ba5-eb13-45be-a7d3-dcc83debe0ba", - "label": "Date of offence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "71b1cc98-8b41-4d65-906a-3b4940c4ce1d", - "label": "Date of sentence if different from conviction date", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9dc27662-6953-4acf-a7ac-9b9165e12e2d", - "label": "DVLA code for offence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "72faf2d6-b362-4e7a-9f89-102c7e820868", - "label": "Court contact (SPOC)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "84a42b46-f384-410d-a4d9-46fe0cb74678", - "label": "Applicant driving licence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3076", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "39988e30-159a-442e-bb83-7f6df78fea34", - "label": "Driving licence disposal", - "shortCode": "DLDIS", - "level": "D", - "rank": 17600, - "wordGroups": [ - { - "wordGroup": [ - "driving", - "license", - "disposal" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ff701645-f700-48d0-a247-19f177b0e976", - "label": "Driving licence type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5fe6673d-24ff-445b-b247-03c71e95fb2c", - "label": "Driving licence destination", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0556c55a-439b-4020-8bff-ad0d5c0bb7fa", - "label": "Reason driving licence sent to DVLA", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "dd3ef017-5020-4fec-832a-98028ebf3097", - "label": "Driving licence suspended pending production", - "shortCode": "DLSUS", - "level": "C", - "rank": 17700, - "wordGroups": [ - { - "wordGroup": [ - "driving", - "license", - "suspended", - "production" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3510", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "3bfd5af4-b80a-405c-9089-1a533aec0ace", - "label": "Licensed Premises - Exclusion Order", - "shortCode": "LPEX", - "level": "O", - "rank": 17800, - "wordGroups": [ - { - "wordGroup": [ - "licensed", - "premises", - "exclusion" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "04446df0-88b9-4f3b-97cd-cf663346c6d0", - "label": "Duration of exclusion", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "04446df0-88b9-4f3b-97cd-cf663346c6d0", - "label": "Duration of exclusion", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "57d0b15c-746a-4376-a4d8-5917ecd5e8eb", - "label": "Name of licensed premises excluded from", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c70d64d-9c95-48bc-b8d2-5c38643e7d65", - "label": "Reason for exclusion", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3041", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0ced3039-579c-48a3-9274-cee8c68ba608", - "label": "Contingent destruction order for dog (proper control)", - "shortCode": "DCDO", - "level": "O", - "rank": 18000, - "wordGroups": [ - { - "wordGroup": [ - "dog", - "destruction", - "control" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e8a64fc3-081f-4461-84e8-65774cce7021", - "label": "Details of dog", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "31abd0a3-c2e2-4e15-91de-f2917b4fbadd", - "label": "To be securely held on a lead by a person who is not less than 16 years old", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2e674f8b-dc14-4731-8ff4-a13c85be7318", - "label": "To be securely fitted with a muzzle sufficient to prevent it biting any person", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0879a258-7feb-4675-ba94-abc679b23aa9", - "label": "Places excluded from", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a8548173-c4a4-43a6-adbc-364fbdfcef58", - "label": "Other directions", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", - "label": "Reason for order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3082", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "bbc3f8e9-b29c-40d2-8564-0e918693ed89", - "label": "Order for dog to be neutered", - "shortCode": "DN", - "level": "O", - "rank": 18100, - "wordGroups": [ - { - "wordGroup": [ - "dog", - "neutered" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e8a64fc3-081f-4461-84e8-65774cce7021", - "label": "Details of dog", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "75ae5570-cdc0-42c7-9024-68985fd3bf73", - "label": "Date by which dog is to be neutered", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", - "label": "Reason for order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3020", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b6eeca33-a188-4d00-a470-391b245c45a4", - "label": "Order for deprivation of animal", - "shortCode": "ADEP", - "level": "O", - "rank": 18200, - "wordGroups": [ - { - "wordGroup": [ - "deprivation", - "animal" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "0f52987f-309d-4357-95e1-8f4da8effb60", - "label": "This order also deprives the defendant of the animal's dependent offspring and provides for its disposal. The offspring are", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0949b347-3c72-4688-9ecb-deabb17ee175", - "label": "Directions regarding the order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9a795188-50e5-4587-9097-610219269455", - "label": "Reason for order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3055", - "adjournment": false, - "convicted": true, - "qualifier": "YZ", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "cf10ee96-c82c-46c7-8a34-0c9d08aca134", - "label": "Order for destruction in the interests of the animal made under Section 37 Animal Welfare Act 2006", - "shortCode": "ADES", - "level": "O", - "rank": 18300, - "wordGroups": [ - { - "wordGroup": [ - "destruction", - "interest", - "animal" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "0949b347-3c72-4688-9ecb-deabb17ee175", - "label": "Directions regarding the order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9a795188-50e5-4587-9097-610219269455", - "label": "Reason for order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3116", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "852cf8c1-bb0f-444f-97f1-64ff8561413d", - "label": "Destruction of animals involved in fighting made under Section 38 Animal Welfare Act 2006", - "shortCode": "ADESF", - "level": "O", - "rank": 18400, - "wordGroups": [ - { - "wordGroup": [ - "destruction", - "animal", - "fighting" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "03934cce-feb2-43b5-aaf8-20aeccb3336d", - "label": "Animal to be destroyed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0949b347-3c72-4688-9ecb-deabb17ee175", - "label": "Directions regarding the order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9a795188-50e5-4587-9097-610219269455", - "label": "Reason for order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3116", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "26eec36f-7bdc-4b1a-9b46-ba161f52a4e2", - "label": "Disqualified from keeping animal stated for a defined period", - "shortCode": "ANI", - "level": "O", - "rank": 18500, - "wordGroups": [ - { - "wordGroup": [ - "disqualified", - "keeping", - "animal", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e07c6156-730e-4b66-a913-edc7366b13c0", - "label": "Specify the animal to which the order applies", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9a795188-50e5-4587-9097-610219269455", - "label": "Reason for order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3025", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "577acd37-0473-4ad8-ac06-adbf7e9beb2c", - "label": "Disqualified from keeping stated animal for life", - "shortCode": "ANIL", - "level": "O", - "rank": 18600, - "wordGroups": [ - { - "wordGroup": [ - "disqualified", - "keeping", - "animal", - "Life" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e07c6156-730e-4b66-a913-edc7366b13c0", - "label": "Specify the animal to which the order applies", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9a795188-50e5-4587-9097-610219269455", - "label": "Reason for order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3025", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", - "label": "Foreign travel prohibition", - "shortCode": "FTPN", - "level": "O", - "rank": 100, - "userGroups": [], - "prompts": [ - { - "id": "63ff5f8d-07ac-4b2d-ae61-fbb75613dfab", - "label": "Not to travel to any country outside the United Kingdom", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "63173301-f05d-4bb3-8ca0-2fefd8f9e84d", - "label": "Not to travel to the following countries outside the United Kingdom", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3333058f-1977-4fcb-a70a-98d1510898b5", - "label": "Not to travel to any country outside the United Kingdom other than", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5d2dd546-d773-44d6-b030-0de2d049b245", - "label": "Period of foreign travel prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "67de7451-2805-40ee-9d4c-6e75aa04069c", - "label": "Foreign travel prohibition removed", - "shortCode": "FTPR", - "level": "O", - "rank": 18700, - "wordGroups": [ - { - "wordGroup": [ - "foreign", - "travel", - "removed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e86b1bce-49f5-46db-8c2e-3df6321ecfdb", - "label": "Date removed with effect from", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2a9ff8a6-c0cf-45eb-b9e5-252238a5140c", - "label": "Foreign travel prohibition extended", - "shortCode": "FTPE", - "level": "O", - "rank": 18800, - "wordGroups": [ - { - "wordGroup": [ - "foreign", - "travel", - "extended" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "32b624af-30b4-4ef9-8eae-cb178a64e2be", - "label": "Date foreign travel prohibition made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3332ddb2-2c45-496a-8306-92ab4ddc726d", - "label": "Foreign travel prohibition extended until", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "label": "Community requirement: Prohibited activity for period", - "shortCode": "PARP", - "level": "O", - "rank": 2600, - "wordGroups": [ - { - "wordGroup": [ - "prohibited", - "Activity", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null, - "hidden": false - }, - { - "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null, - "hidden": false - }, - { - "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null, - "hidden": false - }, - { - "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null, - "hidden": false - }, - { - "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label": "Prohibited activities", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null, - "hidden": false - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3104", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "dcdcd240-3ebe-4e80-b84c-a06a2a4a17ae", - "label": "Sexual harm prevention order discharged", - "shortCode": "SHPOD", - "level": "O", - "rank": 18900, - "wordGroups": [ - { - "wordGroup": [ - "shopo", - "discharged" - ] - }, - { - "wordGroup": [ - "sexual", - "harm", - "prevention", - "discharged" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "471d4d9d-b267-410a-be01-7c8c5e762992", - "label": "Sexual harm prevention order type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label": "Date order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "Date", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "94514093-d8de-4400-93de-9e3366f5af8c", - "label": "Name of defendant on original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label": "Name of court that made the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1029", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "bb09512f-3d01-4f3d-ab7e-fefa5a7ccba4", - "label": "Sexual harm prevention order renewed", - "shortCode": "SHPOR", - "level": "O", - "rank": 19000, - "wordGroups": [ - { - "wordGroup": [ - "shopo", - "renewed" - ] - }, - { - "wordGroup": [ - "sexual", - "harm", - "prevention", - "renewed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "050b4899-5383-4894-9970-ff227cdd5686", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "050b4899-5383-4894-9970-ff227cdd5686", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "050b4899-5383-4894-9970-ff227cdd5686", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "050b4899-5383-4894-9970-ff227cdd5686", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "471d4d9d-b267-410a-be01-7c8c5e762992", - "label": "Sexual harm prevention order type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label": "Date order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "Date", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "94514093-d8de-4400-93de-9e3366f5af8c", - "label": "Name of defendant on original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label": "Name of court that made the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "35dd25e2-0017-46fd-ae5f-0ed8eb67d545", - "label": "Foreign travel prohibition varied", - "shortCode": "FTPV", - "level": "O", - "rank": 19100, - "wordGroups": [ - { - "wordGroup": [ - "foreign", - "travel", - "varied" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "32b624af-30b4-4ef9-8eae-cb178a64e2be", - "label": "Date foreign travel prohibition made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", - "label": "Details of variation", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "cd612502-9cf9-4365-b6db-bf70022c40e5", - "label": "Foreign travel prohibition added", - "shortCode": "FTPA", - "level": "O", - "rank": 19200, - "wordGroups": [ - { - "wordGroup": [ - "foreign", - "travel", - "added" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label": "Period of foreign travel prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label": "Period of foreign travel prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label": "Period of foreign travel prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label": "Period of foreign travel prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "137b456b-1f56-42f6-9b5a-e45a3171724e", - "label": "Not to travel to any country outside the United Kingdom", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a8b1ab81-4ef1-40bc-9aa8-ccdba9a6efca", - "label": "Not to travel to the following countries outside the United Kingdom", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e9b15a52-c842-4e33-b779-537360158228", - "label": "Not to travel to any country outside the United Kingdom other than", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "23fff13d-9741-4209-88ce-83e14c8c3388", - "label": "Slavery and trafficking prevention order for period", - "shortCode": "SATPO", - "level": "O", - "rank": 19300, - "wordGroups": [ - { - "wordGroup": [ - "slavery", - "prevention", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "56190eb2-0035-44cc-b904-b131f299835c", - "label": "Prohibitions contained in the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab67bee4-c673-4575-8bf9-d61385a93991", - "label": "Defendant to notify all names and home address within 3 days to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label": "Method of notification", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3285", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "17bcc2c7-51f3-4449-aeed-3e7c65a0854d", - "label": "Slavery and trafficking prevention order until further order", - "shortCode": "SATPOFO", - "level": "O", - "rank": 19400, - "wordGroups": [ - { - "wordGroup": [ - "slavery", - "prevention", - "Further" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "56190eb2-0035-44cc-b904-b131f299835c", - "label": "Prohibitions contained in the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab67bee4-c673-4575-8bf9-d61385a93991", - "label": "Defendant to notify all names and home address within 3 days to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label": "Method of notification", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3285", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "dcdbe62e-ff8f-48d9-acf9-6b6b86b3487d", - "label": "Slavery and trafficking prevention order until end date", - "shortCode": "SATPOED", - "level": "O", - "rank": 19500, - "wordGroups": [ - { - "wordGroup": [ - "slavery", - "prevention", - "end" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label": "This order lasts until", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "56190eb2-0035-44cc-b904-b131f299835c", - "label": "Prohibitions contained in the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab67bee4-c673-4575-8bf9-d61385a93991", - "label": "Defendant to notify all names and home address within 3 days to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label": "Method of notification", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3285", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ee94aaf8-5152-4a6e-b17e-63891e6209c4", - "label": "Slavery and trafficking prevention order varied", - "shortCode": "SATPOV", - "level": "O", - "rank": 19700, - "wordGroups": [ - { - "wordGroup": [ - "slavery", - "prevention", - "varied" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label": "Date order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "Date", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "94514093-d8de-4400-93de-9e3366f5af8c", - "label": "Name of defendant on original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label": "Name of court that made the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2def6a67-bdb7-4596-8544-53ebb5811880", - "label": "Variation of prohibitions (other than foreign)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab67bee4-c673-4575-8bf9-d61385a93991", - "label": "Defendant to notify all names and home address within 3 days to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label": "Method of notification", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f0b5c085-202d-4b96-9409-959f950c6bf3", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label": "Start date of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1030", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "381648c7-ca3e-4368-a75d-dbdebbf22bcd", - "label": "Interim slavery and trafficking prevention order", - "shortCode": "SATPOI", - "level": "O", - "rank": 19800, - "wordGroups": [ - { - "wordGroup": [ - "interim", - "slavery", - "prevention" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "050b4899-5383-4894-9970-ff227cdd5686", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "050b4899-5383-4894-9970-ff227cdd5686", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "050b4899-5383-4894-9970-ff227cdd5686", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "050b4899-5383-4894-9970-ff227cdd5686", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab67bee4-c673-4575-8bf9-d61385a93991", - "label": "Defendant to notify all names and home address within 3 days to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label": "Method of notification", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "56190eb2-0035-44cc-b904-b131f299835c", - "label": "Prohibitions contained in the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3284", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", - "ruleType": "optional" - } - ] - }, - { - "id": "0021c162-50ee-4769-b30c-c15be2202427", - "label": "Travel restriction order", - "shortCode": "TRO", - "level": "O", - "rank": 19900, - "wordGroups": [ - { - "wordGroup": [ - "travel", - "restriction" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ef4db11b-fc46-44a3-b96d-07df138200bf", - "label": "Direction to deliver up passport to Court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3078", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "1c40353b-a3b8-4437-8691-6b54d5842010", - "label": "Community requirement: Prohibited activity for dates", - "shortCode": "PARD", - "level": "O", - "rank": 2700, - "wordGroups": [ - { - "wordGroup": [ - "prohibited", - "Activity", - "dates" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label": "Prohibited activities", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "96a36529-f9ff-4804-86d1-361bc9c12910", - "label": "Dates", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3104", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e513f78d-6ba3-45b2-a3f9-668c9543f76c", - "label": "No travel restriction order", - "shortCode": "NOTRO", - "level": "O", - "rank": 20000, - "wordGroups": [ - { - "wordGroup": [ - "no", - "travel", - "restriction" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "88d784e0-e85f-47ac-9c04-a96a9862056e", - "label": "Reasons for not making a travel restriction order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0f1dce52-dfe0-4ed9-ba4e-ca0f30cfb30f", - "label": "Travel restriction order revoked", - "shortCode": "TROR", - "level": "O", - "rank": 20100, - "wordGroups": [ - { - "wordGroup": [ - "travel", - "restriction", - "revoked" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc5bb638-52c0-4815-9816-a473f7503684", - "label": "Date travel prohibition revoked with effect from", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1029", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d624b709-013b-4865-8de8-e91dc00957af", - "label": "Travel restriction order suspended", - "shortCode": "TROS", - "level": "O", - "rank": 20200, - "wordGroups": [ - { - "wordGroup": [ - "travel", - "restriction", - "suspended" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label": "Duration of suspension", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label": "Duration of suspension", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label": "Duration of suspension", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label": "Duration of suspension", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bc28ef15-b7ce-4be0-98ca-342e0b8df374", - "label": "Original order contained a direction to surrender passport", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "af519666-bd10-423a-8f4b-9173a5daafca", - "label": "Psychoactive Substances Prohibition Order", - "shortCode": "PSPO", - "level": "O", - "rank": 20400, - "wordGroups": [ - { - "wordGroup": [ - "psychoactive", - "subatance" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label": "Duration", - "welshLabel": "Hyd", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label": "Duration", - "welshLabel": "Hyd", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label": "Duration", - "welshLabel": "Hyd", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label": "Duration", - "welshLabel": "Hyd", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a2984926-eec3-4a76-8c47-ac6d708ca853", - "label": "General prohibitions and restrictions", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4bc401db-3334-4b50-9e4b-df2068e9a675", - "label": "Describe item to be disposed of", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "54d27556-06bb-411c-80e6-cb8cc82908f8", - "label": "Specify who is to dispose of item", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3288", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "08f9b07e-ed90-4522-9d14-7d9162186758", - "label": "Psychoactive Substances Prohibition Order with premises access prohibition", - "shortCode": "PSPOA", - "level": "O", - "rank": 20500, - "wordGroups": [ - { - "wordGroup": [ - "psychoactive", - "subatance", - "premises", - "prohibited" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label": "Duration", - "welshLabel": "Hyd", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label": "Duration", - "welshLabel": "Hyd", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label": "Duration", - "welshLabel": "Hyd", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label": "Duration", - "welshLabel": "Hyd", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b037d41d-d72c-4dcb-a3f0-37adc12aae52", - "label": "Prohibition duration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b037d41d-d72c-4dcb-a3f0-37adc12aae52", - "label": "Prohibition duration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b037d41d-d72c-4dcb-a3f0-37adc12aae52", - "label": "Prohibition duration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a2984926-eec3-4a76-8c47-ac6d708ca853", - "label": "General prohibitions and restrictions", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4bc401db-3334-4b50-9e4b-df2068e9a675", - "label": "Describe item to be disposed of", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "54d27556-06bb-411c-80e6-cb8cc82908f8", - "label": "Specify who is to dispose of item", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "01c2bbdc-5765-4952-8575-cca2077349e7", - "label": "Prohibition applies to whole or part of premises", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0335a74d-2142-413f-9bbc-753581a43707", - "label": "Prohibited premises", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f9704321-7770-467e-a94b-3e8544c857bc", - "label": "Describe the part of premises", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bcaf62cd-7270-4e86-b41e-7fcfa3aae1eb", - "label": "Persons times and circumstances of access prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3288", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f0395277-4d26-4785-acb5-5be597d97ae6", - "label": "Criminal behaviour order until further order", - "shortCode": "CRIMBOF", - "level": "O", - "rank": 20600, - "wordGroups": [ - { - "wordGroup": [ - "criminal", - "behaviour", - "Order", - "Further" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label": "Start date of order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4461f7f5-f984-4b6d-9f60-3084e5071382", - "label": "Requirements", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label": "Supervisor", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label": "Supervisor's address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "56190eb2-0035-44cc-b904-b131f299835c", - "label": "Prohibitions contained in the order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1177", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "187f05c9-8467-4741-8b9e-7a3a5b06f6f6", - "label": "No evidence offered (summary offence in the Crown Court)", - "shortCode": "NOEVS", - "level": "O", - "rank": 20700, - "wordGroups": [ - { - "wordGroup": [ - "no", - "evidence", - "offered" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "2050", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f8bd4d1f-1467-4903-b1e6-d2249ccc8c25", - "label": "Dismissed (No evidence offered)", - "shortCode": "DINE", - "level": "O", - "rank": 20800, - "wordGroups": [ - { - "wordGroup": [ - "Dismissed", - "no", - "evidence" - ] - }, - { - "wordGroup": [ - "no evidence", - "offered", - "Dismissed" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "welshLabel": "Gwrthod (Dim tystiolaeth wedi’i chyflwyno)", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "2050", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5edd3a3a-8dc7-43e4-96c4-10fed16278ac", - "label": "Vehicle Excise Back Duty", - "shortCode": "FVEBD", - "level": "O", - "rank": 20900, - "wordGroups": [ - { - "wordGroup": [ - "vehicle", - "back", - "duty" - ] - }, - { - "wordGroup": [ - "FVEBD" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f7c7c088-f88e-4c28-917c-78571517aca1", - "label": "Amount of back duty", - "welshLabel": "Swm yr ôl-doll", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "AOBD", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Ôl-doll Treth Car", - "isAvailableForCourtExtract": true, - "financial": true, - "category": "F", - "cjsCode": "3014", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "label": "Community requirement: Prohibited activity for days of week", - "shortCode": "PARW", - "level": "O", - "rank": 2800, - "wordGroups": [ - { - "wordGroup": [ - "prohibited", - "Activity", - "days" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label": "Prohibited activities", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "53f817cd-0070-455e-9826-a103bd4a4a26", - "label": "Days", - "welshLabel": "Diwrnod", - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "e652a90a-31cf-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3104", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b81ac80b-81a9-48b6-87b0-cc34610eec97", - "label": "Restraining order for period", - "shortCode": "RESTRAOP", - "level": "O", - "rank": 700, - "wordGroups": [ - { - "wordGroup": [ - "Restraining", - "Order", - "Period" - ] - }, - { - "wordGroup": [ - "RESTRAOP" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", - "label": "Protected person", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "8df0ec7e-5985-4998-af1a-5da293d9cb3c", - "label": "Order details", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "47337f1c-e343-4093-884f-035ba96c4db0", - "label": "Conviction / acquittal", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "8dc70c95-fb09-4842-9138-bc579fceb605", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ea26f773-0a91-4526-b4ad-84d07b5bf940", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3047", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "920183ea-c82a-4110-a937-6a2e7071d908", - "label": "Certificate of conviction under Section 113 of the Powers of Criminal Courts (Sentencing) Act 2000", - "shortCode": "QCON", - "level": "O", - "rank": 21000, - "wordGroups": [ - { - "wordGroup": [ - "certificate", - "conviction" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e3764c59-4e25-4864-a3af-1c2e3390af99", - "label": "Date of conviction", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", - "label": "Convicting court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "59828fc1-e8f2-46be-866c-4c8c1d165273", - "label": "Type of offence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "bfb02d14-243f-4450-9c20-4c0ed9c5d64c", - "label": "No further review of order required", - "shortCode": "REVUE", - "level": "O", - "rank": 21100, - "wordGroups": [ - { - "wordGroup": [ - "no", - "Further", - "Review" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9bb5d310-0fef-450d-91d6-117f894001bb", - "label": "Offences taken into consideration", - "shortCode": "TIC", - "level": "D", - "rank": 21200, - "wordGroups": [ - { - "wordGroup": [ - "TIC" - ] - }, - { - "wordGroup": [ - "taken", - "into", - "consideration" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a292fb05-4b6b-43b3-8fdc-1ce5c1114a45", - "label": "Number of offences admitted and taken into consideration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3118", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "87eed0b7-b141-4a3c-b7b0-ea8bb23ec3b2", - "label": "Warrant not executed", - "shortCode": "WNE", - "level": "O", - "rank": 21300, - "wordGroups": [ - { - "wordGroup": [ - "warrant", - "not", - "executed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "9565f244-bef4-43a0-b32c-0d12faceb5de", - "label": "Reason for warrant not executed", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "381cb2bd-4993-476d-9c8f-3bd19f288120", - "label": "Reason warrant not executed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "2509", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4d5f25a5-9102-472f-a2da-c58d1eeb9c93", - "label": "Warrant withdrawn", - "shortCode": "WWDN", - "level": "O", - "rank": 21400, - "wordGroups": [ - { - "wordGroup": [ - "warrant", - "withdrawn" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "81aaac7d-84c3-45cb-a845-69b7f3fb20fe", - "label": "Reason for withdrawing warrant", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "2509", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "8e7f7ffd-eceb-44ea-8efd-bc6c99913d85", - "label": "Restraining order discharged", - "shortCode": "RESTRAD", - "level": "O", - "rank": 21500, - "wordGroups": [ - { - "wordGroup": [ - "Restraining", - "Order", - "discharged" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8a11df41-cc91-4b67-80c4-6108c9b5e324", - "label": "Third party's name (victim or police)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a06952c1-4bfe-4004-b6ac-6908afefdd6a", - "label": "Third party's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2ade6e72-ee41-4718-87a0-1a396579ac56", - "label": "Original order made by", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1029", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c2200b1d-a47d-4d02-9b88-58f8bbed7ea9", - "label": "Restraining order varied", - "shortCode": "RESTRAV", - "level": "O", - "rank": 21600, - "wordGroups": [ - { - "wordGroup": [ - "Restraining", - "Order", - "varied" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8a11df41-cc91-4b67-80c4-6108c9b5e324", - "label": "Third party's name (victim or police)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a06952c1-4bfe-4004-b6ac-6908afefdd6a", - "label": "Third party's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2ade6e72-ee41-4718-87a0-1a396579ac56", - "label": "Original order made by", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2da599de-da03-492e-b66f-e7aad32fcfa5", - "label": "Terms of variation", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "49a85507-8a96-4201-965d-a11879c73f8c", - "label": "Order now expires", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1030", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c32b9ca1-78da-4c7c-bde6-8218aed2bb80", - "label": "Adjournment refused", - "shortCode": "ADR", - "level": "O", - "rank": 21700, - "wordGroups": [ - { - "wordGroup": [ - "adjournment", - "refused" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "61d8be36-adac-4a47-aa65-a46962f2bd8b", - "label": "Reason for refusal", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Bydd y gwrandawiad nesaf yn y llys ynadon", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "bc4bb54f-1fa8-43d8-8021-c1e07994d5f6", - "label": "Racially aggravated offence", - "shortCode": "RA", - "level": "O", - "rank": 21800, - "wordGroups": [ - { - "wordGroup": [ - "racially", - "aggravated" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "07f5229c-cf4c-45f2-a49b-703d11bf5b41", - "label": "Racially and religiously aggravated offence", - "shortCode": "RARE", - "level": "O", - "rank": 21900, - "wordGroups": [ - { - "wordGroup": [ - "racially", - "religious", - "aggravated" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "label": "Community requirement: Foreign travel prohibition any country for period", - "shortCode": "FTPCP", - "level": "O", - "rank": 2900, - "wordGroups": [ - { - "wordGroup": [ - "foreign", - "travel", - "any", - "country", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "periodOfProhibition", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "periodOfProhibition", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "periodOfProhibition", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label": "This order lasts until", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endDate", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3147", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "bcd4f58f-c53e-420f-8d54-c42f125522f9", - "label": "Religiously aggravated offence", - "shortCode": "RE", - "level": "O", - "rank": 22000, - "wordGroups": [ - { - "wordGroup": [ - "religious", - "aggravated" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f25de68a-e719-42dd-9153-6687af843434", - "label": "Aggravated due to transgender", - "shortCode": "TGG", - "level": "O", - "rank": 22100, - "wordGroups": [ - { - "wordGroup": [ - "transgender", - "aggravated" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "6fcb509f-1343-46df-a79b-7f650d84d3f2", - "label": "Aggravated due to transgender of victim", - "shortCode": "TGV", - "level": "O", - "rank": 22200, - "wordGroups": [ - { - "wordGroup": [ - "transgender", - "aggravated", - "victim" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "cfe8ea34-4461-42e1-836c-2319924b4ea6", - "label": "General disqualification for a period", - "shortCode": "DGEN", - "level": "O", - "rank": 22300, - "wordGroups": [ - { - "wordGroup": [ - "general", - "disqualification", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label": "Period of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label": "Period of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label": "Period of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label": "Period of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1b7eacb5-af56-4f40-b808-40270fb900cd", - "label": "Nature of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "db41c015-10b7-4947-9524-ce61344c8d6a", - "label": "Reason for disqualification", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "95d8d079-3680-4819-9bf7-5e268aae8ff0", - "label": "General disqualification for life", - "shortCode": "DGENL", - "level": "O", - "rank": 22400, - "wordGroups": [ - { - "wordGroup": [ - "general", - "disqualification", - "Life" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1b7eacb5-af56-4f40-b808-40270fb900cd", - "label": "Nature of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "db41c015-10b7-4947-9524-ce61344c8d6a", - "label": "Reason for disqualification", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "49297a56-1d57-4f3a-862a-351a9c7372a7", - "label": "Female genital mutilation protection order until further order", - "shortCode": "FGMPO", - "level": "O", - "rank": 22500, - "wordGroups": [ - { - "wordGroup": [ - "female", - "genital", - "mutilation", - "Further" - ] - }, - { - "wordGroup": [ - "fgm", - "Further" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label": "Name of girl protected", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0987a7f2-c628-43f4-b978-1a4db2e4c45b", - "label": "Terms of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b3c338ee-3a15-4f46-bf51-4ed3dd9fa831", - "label": "Female genital mutilation protection order for period", - "shortCode": "FGMPOP", - "level": "O", - "rank": 22600, - "wordGroups": [ - { - "wordGroup": [ - "female", - "genital", - "mutilation", - "Period" - ] - }, - { - "wordGroup": [ - "fgm", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label": "Name of girl protected", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0987a7f2-c628-43f4-b978-1a4db2e4c45b", - "label": "Terms of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "3f6ea21a-1e7a-4fbf-b6bd-a1d0d59d9636", - "label": "Female genital mutilation protection order until end date", - "shortCode": "FGMPOE", - "level": "O", - "rank": 22700, - "wordGroups": [ - { - "wordGroup": [ - "female", - "genital", - "mutilation", - "end" - ] - }, - { - "wordGroup": [ - "fgm", - "end" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", - "label": "End date of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label": "Name of girl protected", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0987a7f2-c628-43f4-b978-1a4db2e4c45b", - "label": "Terms of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a9ec3d80-c37a-4f51-9706-e33b6feb6d2d", - "label": "Female genital mutilation protection order varied (until further order)", - "shortCode": "FGMPOV", - "level": "O", - "rank": 22800, - "wordGroups": [ - { - "wordGroup": [ - "female", - "genital", - "mutilation", - "varied", - "Further" - ] - }, - { - "wordGroup": [ - "fgm", - "varied", - "Further" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label": "Name of girl protected", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f7d348da-6f8b-4170-9660-55ee16453865", - "label": "Terms of variation", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9f707be3-97fb-4ea8-984b-41547adc189c", - "label": "Female genital mutilation protection order varied (for period)", - "shortCode": "FGMPOVP", - "level": "O", - "rank": 22900, - "wordGroups": [ - { - "wordGroup": [ - "female", - "genital", - "mutilation", - "varied", - "Period" - ] - }, - { - "wordGroup": [ - "fgm", - "varied", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label": "Period of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label": "Name of girl protected", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f7d348da-6f8b-4170-9660-55ee16453865", - "label": "Terms of variation", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "label": "Community requirement: Foreign travel prohibition with list of countries for period", - "shortCode": "FTPLP", - "level": "O", - "rank": 3000, - "wordGroups": [ - { - "wordGroup": [ - "foreign", - "travel", - "country", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "periodOfProhibition", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "periodOfProhibition", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "periodOfProhibition", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f77b3b14-91b2-41b7-966b-0f0bad2664e2", - "label": "Countries", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label": "This order lasts until", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endDate", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3147", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "694af16b-9c84-42a4-a659-3f9ce4cf7d02", - "label": "Female genital mutilation protection order varied (until end date)", - "shortCode": "FGMPOVE", - "level": "O", - "rank": 23000, - "wordGroups": [ - { - "wordGroup": [ - "female", - "genital", - "mutilation", - "varied", - "end" - ] - }, - { - "wordGroup": [ - "fgm", - "varied", - "end" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label": "Name of girl protected", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f7d348da-6f8b-4170-9660-55ee16453865", - "label": "Terms of variation", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", - "label": "End date of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f0d12a39-5c34-43c4-8816-968a9b9e3b60", - "label": "Female genital mutilation protection order discharged", - "shortCode": "FGMPOD", - "level": "O", - "rank": 23100, - "wordGroups": [ - { - "wordGroup": [ - "female", - "genital", - "mutilation", - "discharged" - ] - }, - { - "wordGroup": [ - "fgm", - "discharged" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", - "label": "Passport surrender", - "shortCode": "PASSS", - "level": "O", - "rank": 600, - "wordGroups": [ - { - "wordGroup": [ - "passport", - "surrender" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "68077602-7fa8-4645-9bc6-bc59ed409f6f", - "label": "Name of Police Station to surrender passport", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b87786ca-5112-4841-9c3e-a131186b1762", - "label": "Passport to be surrendered on or before", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0cee6bf5-21e4-403f-ba45-73e029ab0c73", - "label": "Specify how many days to surrender passport in", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e0294281-d95d-48e2-8bd0-d7af53740ac9", - "label": "Passport surrender variation", - "shortCode": "PASSSV", - "level": "O", - "rank": 23200, - "wordGroups": [ - { - "wordGroup": [ - "passport", - "surrender", - "varied" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "68077602-7fa8-4645-9bc6-bc59ed409f6f", - "label": "Name of Police Station to surrender passport", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b87786ca-5112-4841-9c3e-a131186b1762", - "label": "Passport to be surrendered on or before", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0cee6bf5-21e4-403f-ba45-73e029ab0c73", - "label": "Specify how many days to surrender passport in", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "62eb1129-38b8-43aa-855c-bec3569bd17f", - "label": "Specify date passport originally surrendered on date (now to be returned)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "63f54361-69dd-4d8e-aece-8d87a6064d20", - "label": "Disqualified for having custody of a dog for period", - "shortCode": "DCUST", - "level": "O", - "rank": 23300, - "wordGroups": [ - { - "wordGroup": [ - "disqualified", - "dog", - "custody", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3023", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a59be074-10ea-4552-bc83-51d069304402", - "label": "Disqualified for having custody of a dog for life", - "shortCode": "DCUSTL", - "level": "O", - "rank": 23400, - "wordGroups": [ - { - "wordGroup": [ - "disqualified", - "dog", - "custody", - "Life" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3023", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "95d2a99a-d8ce-43ae-b5d0-d0dfd8d850f1", - "label": "Order to keep dog under proper control", - "shortCode": "DKPC", - "level": "O", - "rank": 23500, - "wordGroups": [ - { - "wordGroup": [ - "dog", - "control" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bfbb887-7b2d-4423-b80f-f55b19224806", - "label": "Dog to be fitted with a muzzle sufficient to prevent it biting any person", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e71dd017-100f-4fbc-aa8f-07cc33837375", - "label": "Dog to be securely held on a lead by a person who is not less than 16 years old", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4c38a549-71e8-40d2-be69-9309653905c3", - "label": "Dog excluded from", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cdca7321-e930-480a-80bb-60064432f8d1", - "label": "Specify terms", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "690bddca-7264-4e3d-9d64-ac7a00fca7c7", - "label": "Describe dog eg name, breed, colour", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3034", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "6bd5d409-d656-4829-9ebd-f795e4564c7c", - "label": "Aggravated due to sexual orientation", - "shortCode": "SEXO", - "level": "O", - "rank": 23600, - "wordGroups": [ - { - "wordGroup": [ - "aggravted", - "sexual", - "orientation" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "qualifier": "AW", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0bfb5f42-062b-4473-9c10-bf98315f8117", - "label": "Aggravated due to sexual orientation of victim", - "shortCode": "SEXOV", - "level": "O", - "rank": 23700, - "wordGroups": [ - { - "wordGroup": [ - "aggravted", - "sexual", - "orientation", - "victiim" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "qualifier": "AV", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "98dc94c8-45f0-4961-bb34-cd979dcc2874", - "label": "Order that dog be destroyed", - "shortCode": "DDES", - "level": "O", - "rank": 23800, - "wordGroups": [ - { - "wordGroup": [ - "dog", - "destroyed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a3ea06d8-b297-4ccc-ac1f-f37bd3054388", - "label": "Details of dog", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "783e2975-f9aa-4c7e-90a8-2dd6b16144a4", - "label": "Further information about destruction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3021", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c1b0dedf-1380-4889-9d31-1816b850e348", - "label": "Community requirement: Foreign travel prohibition with list of countries for dates", - "shortCode": "FTPLD", - "level": "O", - "rank": 3100, - "wordGroups": [ - { - "wordGroup": [ - "foreign", - "travel", - "country", - "any", - "dates" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f77b3b14-91b2-41b7-966b-0f0bad2664e2", - "label": "Countries", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "464b2a25-dfe4-42b2-8cc7-29a66edf9743", - "label": "Dates of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "datesOfProhibition", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3147", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0b4fee38-ee9b-4aef-9179-cda3e1dbc607", - "label": "Disqualified from keeping a dog for period", - "shortCode": "DDIS", - "level": "O", - "rank": 23900, - "wordGroups": [ - { - "wordGroup": [ - "disqualified", - "dog", - "keeping", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3022", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e715521c-a4ae-40b3-b127-7612a0b6f32e", - "label": "Disqualified from keeping a dog for life", - "shortCode": "DDISL", - "level": "O", - "rank": 24000, - "wordGroups": [ - { - "wordGroup": [ - "disqualified", - "dog", - "keeping", - "Life" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3022", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "29c0a838-14ac-42c0-870c-ee1a133601e3", - "label": "Aggravated due to hostility based on disability of victim", - "shortCode": "DISV", - "level": "O", - "rank": 24100, - "wordGroups": [ - { - "wordGroup": [ - "aggravated", - "disability", - "victim" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "qualifier": "AX", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a395f8db-9473-4172-8474-c0fb5e1bbefb", - "label": "Motivated by hostility towards persons who have a disability or a particular disability", - "shortCode": "DISG", - "level": "O", - "rank": 24200, - "wordGroups": [ - { - "wordGroup": [ - "motivated", - "disability" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "qualifier": "AY", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e7ef0248-fe71-4733-8749-ff0c23a04f95", - "label": "Shotgun Certificate cancelled", - "shortCode": "CSHOC", - "level": "O", - "rank": 24300, - "wordGroups": [ - { - "wordGroup": [ - "shotgun", - "cancelled" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3035", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Forfeiture and deprivation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "19026543-7d59-467b-9649-35ddf89b30cc", - "label": "Firearm Certificate Cancelled", - "shortCode": "CFIRC", - "level": "O", - "rank": 24400, - "wordGroups": [ - { - "wordGroup": [ - "firearm", - "cancelled" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3035", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Forfeiture and deprivation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0b472a9c-5bef-4de7-bbd9-20d22e6d07eb", - "label": "Defendant's costs payable from central funds - sum assessed", - "shortCode": "DCCFSA", - "level": "O", - "rank": 24500, - "wordGroups": [ - { - "wordGroup": [ - "defendant", - "Costs", - "central", - "assessed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "672c8f19-2f64-4720-8638-1d7c7e66deda", - "label": "Sum assessed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label": "Creditor's name and address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b2fb2c0e-5c71-4a07-a870-506030f2d5ce", - "label": "Defendant's costs payable from central funds - sum to be assessed", - "shortCode": "DCCFSTA", - "level": "O", - "rank": 24600, - "wordGroups": [ - { - "wordGroup": [ - "defendant", - "Costs", - "central", - "to", - "be", - "assessed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b17f9f16-20d4-4bb0-8872-5ab4878245c2", - "label": "Legal / defendant's personal costs", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5609ef92-3d72-4106-915a-aa83401bcaa3", - "label": "Percentage reduction ordered", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "feb9ebe0-b9bf-4b71-92e3-dcf5ceeeeada", - "label": "Other party's costs from central funds - sum assessed", - "shortCode": "CFCAOA", - "level": "O", - "rank": 24700, - "wordGroups": [ - { - "wordGroup": [ - "other", - "Costs", - "central", - "assessed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", - "label": "Payment type", - "welshLabel": "Math o daliad", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label": "Creditor's name and address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "672c8f19-2f64-4720-8638-1d7c7e66deda", - "label": "Sum assessed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ed37c314-3700-4646-94f7-b2ec2cf8cef2", - "label": "Other party's costs from central funds - sum to be assessed", - "shortCode": "CFCAOTA", - "level": "O", - "rank": 24800, - "wordGroups": [ - { - "wordGroup": [ - "other", - "Costs", - "central", - "to", - "be", - "assessed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", - "label": "Payment type", - "welshLabel": "Math o daliad", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label": "Creditor's name and address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "label": "Community requirement: Foreign travel prohibition any country for dates", - "shortCode": "FTPCD", - "level": "O", - "rank": 3200, - "wordGroups": [ - { - "wordGroup": [ - "foreign", - "travel", - "any", - "dates" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "464b2a25-dfe4-42b2-8cc7-29a66edf9743", - "label": "Dates of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "datesOfProhibition", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3147", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5ab30f3f-ef9a-46d0-8ccc-ddd2be8f4eee", - "label": "Prosecutor's costs from central funds - sum assessed", - "shortCode": "CFCAPA", - "level": "O", - "rank": 24900, - "wordGroups": [ - { - "wordGroup": [ - "prosecution", - "Costs", - "central", - "assessed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label": "Creditor's name and address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "672c8f19-2f64-4720-8638-1d7c7e66deda", - "label": "Sum assessed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ab3df821-8a0b-408e-802d-ea04e3a1a8c5", - "label": "Prosecutor's costs from central funds - sum to be assessed", - "shortCode": "CFCAPTA", - "level": "O", - "rank": 25000, - "wordGroups": [ - { - "wordGroup": [ - "prosecution", - "Costs", - "central", - "to", - "be", - "assessed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label": "Creditor's name and address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5609ef92-3d72-4106-915a-aa83401bcaa3", - "label": "Percentage reduction ordered", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "6d2cd232-d38f-413f-bbec-5f83ef379b90", - "label": "Debtor to be searched", - "shortCode": "SRCH", - "level": "D", - "rank": 25100, - "wordGroups": [ - { - "wordGroup": [ - "debtor", - "searched" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d1f3066a-2d42-432a-9531-4194c42c9759", - "label": "Money found to be applied to debt", - "shortCode": "APMONEY", - "level": "D", - "rank": 25200, - "wordGroups": [ - { - "wordGroup": [ - "money", - "applied", - "debt" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8d72d822-d3e2-4c30-b089-ab36f58ebefe", - "label": "Amount to be applied", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "57bec156-6591-4449-8bc4-4981d71b4e8c", - "label": "Money found not to be taken", - "shortCode": "NTMONEY", - "level": "D", - "rank": 25300, - "wordGroups": [ - { - "wordGroup": [ - "money", - "not", - "taken" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "dc0a94ae-d212-44ab-b350-8a566533eeb4", - "label": "Amount of money court directs should not be taken", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d1aa9b8b-2aca-49a0-9f04-99eba9fd8491", - "label": "Reason for not taking money", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "261c0c09-d9ef-4422-b30e-248461d777ee", - "label": "Imprisonment in default of payment - on same date as imposition", - "shortCode": "IMPDP", - "level": "O", - "rank": 25400, - "wordGroups": [ - { - "wordGroup": [ - "imprisonment", - "default", - "payment" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c8849cbc-f083-465b-af48-528ba436b90f", - "label": "Imprisonment reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f2cff709-d97f-4a59-b971-c9adba389319", - "label": "Further reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label": "Total amount enforced", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "TOTENF", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", - "label": "Sentenced in absence", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "96cab958-f6f1-460b-875a-2b1e80a8b1e4", - "label": "Detention in default of payment - on same date as imposition", - "shortCode": "DETDP", - "level": "O", - "rank": 25500, - "wordGroups": [ - { - "wordGroup": [ - "detention", - "default", - "payment" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ab6cc1f6-011b-4744-accc-bba181614188", - "label": "Detention Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab6cc1f6-011b-4744-accc-bba181614188", - "label": "Detention Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab6cc1f6-011b-4744-accc-bba181614188", - "label": "Detention Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab6cc1f6-011b-4744-accc-bba181614188", - "label": "Detention Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c8849cbc-f083-465b-af48-528ba436b90f", - "label": "Imprisonment reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f2cff709-d97f-4a59-b971-c9adba389319", - "label": "Further reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "e36171b4-d3fb-4260-88f3-deca99288512", - "label": "Total amount enforced", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", - "label": "Sentenced in absence", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1510", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "85c75b3b-18c4-460b-8e06-6358ae410536", - "label": "Notification of driver's disability to DVLA", - "shortCode": "DRDIS", - "level": "D", - "rank": 25600, - "wordGroups": [ - { - "wordGroup": [ - "notification", - "disability", - "dvla" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "c00d52fa-2c76-4681-ae67-94d0a9cec02c", - "label": "Defendant told DVLA would be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9c5e9397-6c28-4484-b075-fd0d08143dd4", - "label": "Defendant not told DVLA would be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4f97544b-1c9b-4350-8dcb-62e2017e3f8c", - "label": "Nature and source of disability information", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "58a92700-b229-4b6d-bf63-d9df9cbc59af", - "label": "Court contact (SPOC)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a96c1135-3057-453e-80c8-602a7f79013a", - "label": "Hospital order", - "shortCode": "MHHO", - "level": "O", - "rank": 25700, - "wordGroups": [ - { - "wordGroup": [ - "hospital", - "Order" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "701b27ad-c54a-4011-a605-8c438ff685c9", - "label": "Name of hospital where defendant will be admitted or detained", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39001635-2dc8-4a58-9934-eeb60fa4d93b", - "label": "Name of hospital unit", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", - "label": "Hospital address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "611a9bc2-4a25-438c-90cc-bf86fdd30d86", - "label": "Mental health conviction status", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label": "Place of safety", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label": "Conveyor/custodian", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "96949d0c-a59c-4a6f-a563-97456c985987", - "label": "Further directions regarding conveyance to place of safety", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1008", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ef1f6633-3c0b-4adc-b5b8-8ef21e91417f", - "label": "Guardianship Order", - "shortCode": "MHGO", - "level": "O", - "rank": 25800, - "wordGroups": [ - { - "wordGroup": [ - "guardianship", - "Order" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "440b778c-98c6-4764-b627-8851b5ef0834", - "label": "Name of the guardian with whom defendant will be placed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "85e500c7-5cf4-4e23-8dcf-1e413c805031", - "label": "Guardian's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "611a9bc2-4a25-438c-90cc-bf86fdd30d86", - "label": "Mental health conviction status", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1014", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a19714a0-5d58-4666-bc15-3d9dd2692f77", - "label": "Community requirement: Foreign travel with list of countries for dates", - "shortCode": "FTCD", - "level": "O", - "rank": 3300, - "wordGroups": [ - { - "wordGroup": [ - "foreign", - "travel", - "country", - "dates" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3147", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "37853bb7-8844-4cc1-8a34-fa7e4d89d87f", - "label": "Restitution Order", - "shortCode": "RESTIT", - "level": "O", - "rank": 25900, - "wordGroups": [ - { - "wordGroup": [ - "restitution", - "Order" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1d71816c-6972-4a50-9493-719295a99ac8", - "label": "Person to recover goods / money", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "eb3a82b0-b56b-4341-977d-9b76a377ce91", - "label": "Specify stolen goods to be restored to victim", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "43627e85-4cc4-4e2c-8fb6-95a70cd378d1", - "label": "Specify goods representing stolen goods (proceeds) to be transferred to victim", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8c26d561-9275-4406-b38e-26c1e6f22d6e", - "label": "Specify sum to be paid out of money taken out of offender's possession on apprehension", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3013", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "62510cc8-7dd6-4c98-bc3a-fa24c730f91c", - "label": "Proceedings stayed", - "shortCode": "STAYP", - "level": "O", - "rank": 26000, - "wordGroups": [ - { - "wordGroup": [ - "proceedings", - "stayed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8e36cc12-aabc-485d-bda7-76230bab0399", - "label": "Circumstances leading to staying proceedings", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2fde3814-b542-4623-8bf6-8db5fcb86b11", - "label": "Additional reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "2061", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ef2eb362-dae5-4ad7-87c6-d1262d55533e", - "label": "Disqualification order relating to animals for period", - "shortCode": "ADISQ", - "level": "O", - "rank": 26100, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "animal", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", - "label": "Type of animal", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "db46c413-91e0-46d9-9b56-9eb54232761e", - "label": "Type of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ce6cdc61-03af-4807-bc55-17e57e263434", - "label": "All animals kept in contravention of this disqualifciation to be seized", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "269324e9-52a1-4b7c-a023-b41f57b4b811", - "label": "Directions regarding seizure", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "01431fda-56cf-4447-89b4-64b0777d791d", - "label": "Minimum period before defendant may apply to terminate order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label": "Order suspended pending appeal", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", - "label": "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3115", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "94f2989a-f4fd-4a39-a67f-71a4c0828f9d", - "label": "Disqualification order relating to animals for life", - "shortCode": "ADISQL", - "level": "O", - "rank": 26200, - "wordGroups": [ - { - "wordGroup": [ - "disqualification", - "animal", - "Life" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", - "label": "Type of animal", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "db46c413-91e0-46d9-9b56-9eb54232761e", - "label": "Type of disqualification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ce6cdc61-03af-4807-bc55-17e57e263434", - "label": "All animals kept in contravention of this disqualifciation to be seized", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "269324e9-52a1-4b7c-a023-b41f57b4b811", - "label": "Directions regarding seizure", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "01431fda-56cf-4447-89b4-64b0777d791d", - "label": "Minimum period before defendant may apply to terminate order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label": "Order suspended pending appeal", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", - "label": "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3115", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a05f96e2-d36f-48aa-b6f4-1daefd10bca3", - "label": "Surety discharged", - "shortCode": "SURDIS", - "level": "O", - "rank": 26300, - "wordGroups": [ - { - "wordGroup": [ - "surety", - "discharged" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a3cd0c91-9d16-446a-94a7-7d3db6216587", - "label": "Surety's Name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a22f62fa-b9c5-45be-bd79-07d3ae7418f9", - "label": "Payment terms - no payment term set - defendant serving custodial sentence", - "shortCode": "PTNC", - "level": "D", - "rank": 26500, - "wordGroups": [ - { - "wordGroup": [ - "no", - "payment", - "terms" - ] - }, - { - "wordGroup": [ - "payment", - "custody" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "851e2be3-1436-47a4-824d-ca3168647f0c", - "label": "Collecting Magistrates' Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Payment terms", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e26940b7-2534-42f2-9c44-c70072bf6ad2", - "label": "Remanded In custody with bail direction", - "shortCode": "RIB", - "level": "O", - "rank": 26600, - "wordGroups": [ - { - "wordGroup": [ - "remand", - "conditional", - "bail", - "direction" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label": "Remand basis", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": "prison", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9ecac6aa-a205-481f-b67d-e2425ad074cf", - "label": "Bail date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e200e964-628a-4284-bd4e-fab9c819f7f1", - "label": "Bail time", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TIME", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "80be59c8-ffaa-4570-b40a-f3a085058208", - "label": "Bail condition reason", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual": null, - "reference": "bailConditionReason", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "680e4cfd-36e0-4b22-8a30-4142bd42bf16", - "label": "BASS provider", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4046", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Remand conditional bail", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "16a25613-487d-4359-8fc6-9a3968ff669f", - "label": "Remanded in custody for medical reports", - "shortCode": "REMMED", - "level": "O", - "rank": 26700, - "wordGroups": [ - { - "wordGroup": [ - "remand", - "medical" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3c16ae6f-a6cf-4adc-b483-67875213d4f2", - "label": "Remanded under Section number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a74b54d3-a8f9-49bf-b2d7-edd991d1537a", - "label": "Type of medical report required", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "febc23f3-db6f-41ae-8ed7-37920638f597", - "label": "Reason for report", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8fa194e5-6d5f-41f1-9315-14a779586727", - "label": "Medical History", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "34b5e96c-ae6c-4b38-91ee-2a04349b8871", - "label": "Offence Details", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c3bcc21e-48e1-43f0-9546-4223f223e7a7", - "label": "Criminal Record", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8061b2b3-ca56-4002-a76b-6d452bbfa61f", - "label": "Home Circumstances", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "749a0db6-4186-4f82-935d-d8084f353d19", - "label": "Officer in case", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7f5235bc-673b-47a7-97d3-616d9095f606", - "label": "Probation/Probation Services Officer", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4ddda002-526e-4d70-9df7-eeaae75cfab7", - "label": "Pre-release bail condition: Passport - give to the court any passport held", - "shortCode": "PRBCP1", - "level": "O", - "rank": 26800, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "passport", - "court" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JL", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d85486c4-06f1-4813-859b-5495ca578bde", - "label": "Pre-release bail condition: Passport - give to HM Revenue and Customs any passport held", - "shortCode": "PRBCP2", - "level": "O", - "rank": 27000, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "passport", - "hmrc" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "label": "Community requirement: Foreign travel prohibition with excepted country for period", - "shortCode": "FTPEP", - "level": "O", - "rank": 3400, - "wordGroups": [ - { - "wordGroup": [ - "foreign", - "travel", - "except", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "periodOfProhibition", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "periodOfProhibition", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label": "Period of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "periodOfProhibition", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", - "label": "Country allowed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "countryAllowed", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label": "This order lasts until", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endDate", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3147", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "rollUpPrompts": false, - "publishedForNows": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "bb0a2862-a565-46aa-96ed-1e6f972949d0", - "label": "Pre-release bail condition: Passport - give to Police Station", - "shortCode": "PRBCP3", - "level": "O", - "rank": 27100, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "passport", - "police" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label": "Police Station Name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JM", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "1ebd5ca1-866d-43a0-ad9a-464e8a228235", - "label": "Pre-release bail condition: Passport - surrender to Police Station during football control period", - "shortCode": "PRBCP4", - "level": "O", - "rank": 27200, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "football", - "police" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label": "Police Station Name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JM", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "279fd36e-17c5-42b2-b56b-a6ab27b9b592", - "label": "Pre-release bail condition: Passport - give to the court any identity card held which could be used as a travel document within the European Economic Area", - "shortCode": "PRBCP5", - "level": "O", - "rank": 27300, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "travel", - "document", - "European", - "court" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JL", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", - "label": "Pre-release bail condition: Passport - give to HM Revenue and Customs any identity card held which could be used as a travel document within the European Economic Area", - "shortCode": "PRBCP6", - "level": "O", - "rank": 27400, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "travel", - "document", - "European", - "hmrc" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e5864697-640a-47be-9289-9e6205bbe579", - "label": "Pre-release bail condition: Passport - give to police station any identity card held which could be used as a travel document within the European Economic Area", - "shortCode": "PRBCP7", - "level": "O", - "rank": 27500, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "travel", - "document", - "European", - "police" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label": "Police Station Name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JM", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", - "label": "Pre-release bail condition: Passport - surrender identity card to police station during football control period", - "shortCode": "PRBCP8", - "level": "O", - "rank": 83800, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, - "financial": "N", - "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, - "wordGroups": [ - { - "wordGroup": [ - "PRBCP8" - ] - }, - { - "wordGroup": [ - "pre-release", - "travel", - "document", - "European", - "police", - "football" - ] - } - ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Pre-release bail conditions", - "qualifier": "JM", - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "resultTextTemplate": "Passport - surrender identity card to {policeStationName} police station during football control period", - "terminatesOffenceProceedings": false, - "prompts": [ - { - "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label": "Police Station Name", - "resultPromptRule": "mandatory", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "userGroups": [], - "courtExtract": "Y", - "financial": "N", - "jurisdiction": "B", - "min": "1", - "max": "70", - "reference": "policeStationName" - } - ] - }, - { - "id": "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", - "label": "Pre-release bail condition: Surety - find a surety", - "shortCode": "PRBCS1", - "level": "O", - "rank": 27700, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "surety" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", - "label": "In the sum of", - "welshLabel": "Y swm o", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JU", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", - "label": "Pre-release bail condition: Surety - find a continuous surety", - "shortCode": "PRBCS2", - "level": "O", - "rank": 27800, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "surety", - "conditional" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", - "label": "In the sum of", - "welshLabel": "Y swm o", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JV", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4558f9b2-47f8-4430-a0f8-684df5d55761", - "label": "Pre-release bail condition: Surety - find sureties", - "shortCode": "PRBCS3", - "level": "O", - "rank": 27900, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "sureties" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5139e711-b645-4b1c-af81-84f5887abdf6", - "label": "Number of sureties", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", - "label": "In the sum of", - "welshLabel": "Y swm o", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JW", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b9581c12-81c9-434d-8851-03d9638547fa", - "label": "Pre-release bail condition: Security - lodge with Court", - "shortCode": "PRBCSE1", - "level": "O", - "rank": 28000, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "security", - "lodge" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e18066ab-1dd0-4bee-a43d-30417de4c3c3", - "label": "Specify what is to be lodged", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JT", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "364d3065-0699-4df1-a68f-a69c429d0867", - "label": "Community requirement: Foreign travel prohibition with excepted country for dates", - "shortCode": "FTPED", - "level": "O", - "rank": 3500, - "wordGroups": [ - { - "wordGroup": [ - "foreign", - "travel", - "except", - "dates" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", - "label": "Country allowed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "countryAllowed", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "464b2a25-dfe4-42b2-8cc7-29a66edf9743", - "label": "Dates of prohibition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "datesOfProhibition", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3147", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "rollUpPrompts": false, - "publishedForNows": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b922e6bd-70a4-4b28-b583-165179af6162", - "label": "Pre-release bail condition: Security - pay a deposit to Court", - "shortCode": "PRBCSE2", - "level": "O", - "rank": 28100, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "security", - "deposit" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "04d4075d-b306-44f4-9200-db9ad9577ea2", - "label": "Amount", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JT", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", - "label": "Pre-release bail condition: Other - give the court a telephone number and tell the court immediately if the number changes or you can no longer be contacted on that number", - "shortCode": "PRBCT", - "level": "O", - "rank": 28200, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "telephone", - "number" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "68972040-55eb-42c8-aac6-975f88d64511", - "label": "Date by which must give telephone number", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JG", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c51e3522-5363-4af0-b5af-97a5f9eb5462", - "label": "Pre-release bail condition: Other", - "shortCode": "PRBCO", - "level": "O", - "rank": 28300, - "wordGroups": [ - { - "wordGroup": [ - "pre-release", - "other" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ad5ad2de-35e5-4395-b5e7-913d0fc09349", - "label": "Specify", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "RA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Pre-release bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "525c4660-9a0b-4a86-80fc-0efce539d6a5", - "label": "Bail condition: Assessments/Reports - undergo an assessment for dependency on Class A drugs and participate in any follow-up assessment, assistance or treatment considered appropriate", - "shortCode": "PORAR1", - "level": "O", - "rank": 28400, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "assessment", - "Drug" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2fc5fe29-28f8-47dc-86f9-7b3221a71975", - "label": "Specify qualified person to conduct assessments/reports", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "specifyQualifiedPersonToConductAssessmentsreports", - "courtExtract": "Y", - "durationSequence": null, - "hidden": true - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "GT", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e073f3ba-2585-4c0d-8c31-e51a1662d143", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Bail condition: Assessments/Reports - participate in any assistance or treatment considered appropriate for misuse of class A drugs", - "shortCode": "PORAR2", - "level": "O", - "rank": 28500, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "treatment", - "Drug" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "7656ce22-8bee-497c-8e27-c7718a743652", - "label": "Specify qualified person who will decide treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "specifyQualifiedPersonWhowillDecideTreatment", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "GT", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "1aa6a828-fedb-43bd-89e8-bc74586d5e85", - "label": "Bail condition: Assessments/Reports - provide pre-sentence drug test samples", - "shortCode": "PORAR3", - "level": "O", - "rank": 28600, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "Drug", - "test" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2e4bf9d6-5184-45bf-bd33-b4e2d1430e2f", - "label": "Date to provide samples by", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a124724e-2348-41fc-a4b6-6f22c8ef421e", - "label": "Specify details", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "GT", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "136725da-5b0a-43d3-adac-54f916bcf2bb", - "label": "Bail condition: Assessments/Reports - report to the local probation office for a report to be made", - "shortCode": "PORAR4", - "level": "O", - "rank": 28700, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "probation", - "office", - "report" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f4da7a9c-a52e-4fbc-a21b-ce1a1d7c6b5d", - "label": "Probation office", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d351e768-f0f8-4e14-a042-f8306981b1c8", - "label": "Time", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "55be2d17-7b95-4cc9-b8f0-290f84e66d85", - "label": "Date", - "welshLabel": "Dyddiad", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "919ca489-f98d-4776-8b44-2e42958247d4", - "label": "Provider of probation services", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JZ", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", - "label": "Bail condition: Assessments/Reports - report to the local office of a provider of probation services for a report to be made", - "shortCode": "PORAR5", - "level": "O", - "rank": 28800, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "probation", - "provider", - "report" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JZ", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Bail condition: Assessments/Reports - make available for reports to be prepared", - "shortCode": "PORAR6", - "level": "O", - "rank": 28900, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "available", - "report" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JZ", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", - "label": "Bail condition: Assessments/Reports - report to a youth justice team for a report to be made", - "shortCode": "PORAR7", - "level": "O", - "rank": 29000, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "report", - "yjt" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ae2e98c1-1b4b-4b19-8f60-22bd56aaed72", - "label": "Youth Justice Team Location", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label": "Place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d351e768-f0f8-4e14-a042-f8306981b1c8", - "label": "Time", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "55be2d17-7b95-4cc9-b8f0-290f84e66d85", - "label": "Date", - "welshLabel": "Dyddiad", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "RE", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "label": "Community requirement: Alcohol treatment", - "shortCode": "ATR", - "level": "O", - "rank": 3600, - "wordGroups": [ - { - "wordGroup": [ - "Alcohol", - "treatment", - "Requirement" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f092fe58-2297-4d10-818a-8b303692ac39", - "label": "Under direction of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3110", - "adjournment": false, - "convicted": true, - "qualifier": "BT", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", - "label": "Bail condition: Computer - not to use any device capable of accessing the internet unless it can retain and display a history of internet use and it is made available to police for inspection upon request", - "shortCode": "PORCO1", - "level": "O", - "rank": 29100, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "device", - "internet", - "history" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "RF", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "6889288e-5e4a-4523-be2c-cc993a00af29", - "label": "Bail condition: Computer - not to delete any history of computer use", - "shortCode": "PORCO2", - "level": "O", - "rank": 29200, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "delete", - "history" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "RG", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0649851f-01f8-48fb-928d-6fe100042b2a", - "label": "Bail condition: Computer - not to use", - "shortCode": "PORCO3", - "level": "O", - "rank": 29300, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "computer", - "not", - "use" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b862676c-a945-4fa4-b0fc-551a2d043593", - "label": "Specify device / service", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4f585f53-f68c-41f1-9734-e88aa1e91f14", - "label": "Specify restriction", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", - "label": "Bail condition: Computer - not to possess any device capable of storing digital images unless you make it available on request", - "shortCode": "PORCO4", - "level": "O", - "rank": 29400, - "wordGroups": [ - { - "wordGroup": [ - "bail. device", - "images" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", - "label": "Bail condition: Curfew", - "shortCode": "PORCU1", - "level": "O", - "rank": 29500, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "Curfew" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label": "Time 1", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label": "Time 2", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label": "Frequency", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalInformation", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JD", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "03edddce-c188-4b38-9832-988d9d1ee802", - "label": "Bail condition: Curfew with electronic monitoring - first notification", - "shortCode": "PORCU2", - "level": "O", - "rank": 29600, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "Electronic", - "Monitoring", - "first" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label": "Time 1", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label": "Time 2", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label": "Frequency", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalInformation", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Contractor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": "contractor", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "BA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5c02ff4c-6a33-4089-8c9e-f120a688b018", - "label": "Bail condition: Curfew with electronic monitoring - variation notification", - "shortCode": "PORCU2V", - "level": "O", - "rank": 29700, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "Electronic", - "Monitoring", - "variation" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b271650b-0203-4d68-bcef-307038acfdf0", - "label": "Date of original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "afc73f23-3308-40a1-ae8e-c00a8f282699", - "label": "Original case number if different", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label": "Time 1", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label": "Time 2", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label": "Frequency", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalInformation", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Contractor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": "contractor", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "BA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d45c8150-3095-4cb3-a55e-b4fd094af560", - "label": "Bail condition: Curfew with electronic monitoring - additional notification", - "shortCode": "PORCU2A", - "level": "O", - "rank": 29800, - "wordGroups": [ - { - "wordGroup": [ - "bail electronic", - "Monitoring", - "Additional" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b271650b-0203-4d68-bcef-307038acfdf0", - "label": "Date of original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "afc73f23-3308-40a1-ae8e-c00a8f282699", - "label": "Original case number if different", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label": "Time 1", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label": "Time 2", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label": "Frequency", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Contractor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": "contractor", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalInformation", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "BA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "922386e1-bdc2-403e-8902-af1da14e1fd8", - "label": "Bail condition: Curfew with electronic monitoring - continuation notification", - "shortCode": "PORCU2C", - "level": "O", - "rank": 29900, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "Electronic", - "Monitoring", - "continuation" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label": "Time 1", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label": "Time 2", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label": "Frequency", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Contractor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": "contractor", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalInformation", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "BA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d34b643e-74d5-4288-a4b9-bce14d0069d5", - "label": "Bail condition: Curfew - and present him/herself to a police officer who asks to see them between these times", - "shortCode": "PORCU3", - "level": "O", - "rank": 30000, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "present", - "police" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label": "Time 1", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label": "Time 2", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label": "Frequency", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JE", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "label": "Community requirement: Alcohol treatment non-residential", - "shortCode": "ATRNR", - "level": "O", - "rank": 3700, - "wordGroups": [ - { - "wordGroup": [ - "Alcohol", - "treatment", - "Non-residential" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "62882318-42b3-4bf9-8bc5-e724aeaaa19a", - "label": "Treatment institution / place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f092fe58-2297-4d10-818a-8b303692ac39", - "label": "Under direction of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6aaf3645-0806-4917-ada5-b019c6a606c5", - "label": "Treatment intervals", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3110", - "adjournment": false, - "convicted": true, - "qualifier": "BS", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "fb9b273e-06c3-4a4a-940c-3c053c559abe", - "label": "Bail condition: Exclusion - not drive a motor vehicle on any road or in any other public place", - "shortCode": "PORE1", - "level": "O", - "rank": 30100, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "not", - "drive" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JF", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "481547e6-9099-475e-8028-2bce2c52ff5f", - "label": "Bail condition: Exclusion - not to associate with", - "shortCode": "PORE2", - "level": "O", - "rank": 30200, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "not", - "associate" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", - "label": "Names", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JK", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", - "label": "Bail condition: Exclusion - not to contact directly or indirectly", - "shortCode": "PORE3", - "level": "O", - "rank": 30300, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "not", - "contact" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", - "label": "Names", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JK", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "dfa19118-e944-43f4-93b2-2ed49df5553f", - "label": "Bail condition: Exclusion - not to enter a place except to attend court or pre-arranged appointment with solicitor", - "shortCode": "PORE4", - "level": "O", - "rank": 30400, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "not", - "enter", - "court", - "solicitor" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1559b30a-b931-4e3d-86e9-88ab8b116a81", - "label": "Place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JO", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c1d490ed-1754-43b8-a485-fdab1a25f8cb", - "label": "Bail condition: Exclusion - not to enter a place", - "shortCode": "PORE5", - "level": "O", - "rank": 30500, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "not", - "enter" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1559b30a-b931-4e3d-86e9-88ab8b116a81", - "label": "Place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JO", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "90146942-b1b9-4a2e-af2b-141f50d45e5c", - "label": "Bail condition: Exclusion - not go to any public house, licensed club or off licence", - "shortCode": "PORE6", - "level": "O", - "rank": 30600, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "public", - "house" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JN", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9da5909e-d715-4f79-a1b8-34780c57acf1", - "label": "Bail condition: Exclusion - not go within a radius", - "shortCode": "PORE7", - "level": "O", - "rank": 30700, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "radius" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ef055240-4c06-45f3-961a-1344ebd56ea5", - "label": "Radius", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label": "Place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JO", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d709a455-02cc-40d9-b3d2-e4194dc46792", - "label": "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer", - "shortCode": "PORE8", - "level": "O", - "rank": 30800, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "radius", - "police" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ce3ef725-44bf-480c-954a-a2f5cbf75daf", - "label": "Radius", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label": "Place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JP", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", - "label": "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer. One visit only", - "shortCode": "PORE9", - "level": "O", - "rank": 30900, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "radius", - "police", - "visit" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ce3ef725-44bf-480c-954a-a2f5cbf75daf", - "label": "Radius", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label": "Place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JP", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "99586f43-5b18-45da-87f7-1764ad149985", - "label": "Community requirement: Alcohol treatment residential", - "shortCode": "ATRR", - "level": "O", - "rank": 3800, - "wordGroups": [ - { - "wordGroup": [ - "Alcohol", - "treatment", - "Residential" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "62882318-42b3-4bf9-8bc5-e724aeaaa19a", - "label": "Treatment institution / place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f092fe58-2297-4d10-818a-8b303692ac39", - "label": "Under direction of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3110", - "adjournment": false, - "convicted": true, - "qualifier": "BM", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "74046e6e-ecb8-4f1f-b210-c5731f080913", - "label": "Restraining order until further order", - "shortCode": "RESTRAOF", - "level": "O", - "rank": 1000, - "wordGroups": [ - { - "wordGroup": [ - "Restraining", - "Order", - "Further" - ] - }, - { - "wordGroup": [ - "RESTRAOF" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "3054909b-15b6-499f-b44f-67b2b1215c76", - "label": "Protected person's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "ADDRESS", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", - "label": "Protected person", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "8df0ec7e-5985-4998-af1a-5da293d9cb3c", - "label": "Order details", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "47337f1c-e343-4093-884f-035ba96c4db0", - "label": "Conviction / acquittal", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "8dc70c95-fb09-4842-9138-bc579fceb605", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ea26f773-0a91-4526-b4ad-84d07b5bf940", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3047", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", - "label": "Bail condition: Exclusion - not to leave", - "shortCode": "PORE11", - "level": "O", - "rank": 31100, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "not", - "leave" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", - "label": "Place or area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", - "label": "Bail condition: Exclusion - not to go more than a specified radius from a specified place", - "shortCode": "PORE12", - "level": "O", - "rank": 31200, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "radius", - "place" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ce3ef725-44bf-480c-954a-a2f5cbf75daf", - "label": "Radius", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", - "label": "Place or area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4c79ea50-6e14-4c47-8836-c0d0f647e45a", - "label": "Bail condition: Exclusion - the exclusion condition to be electronically monitored with a GPS tag", - "shortCode": "PORE13", - "level": "O", - "rank": 31300, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "exclusion", - "GPS" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "BA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "834ed20a-d7d8-419b-b72d-61b30db36560", - "label": "Bail condition: Other", - "shortCode": "PORO1", - "level": "O", - "rank": 31400, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "other" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "9be3658b-f425-4673-8c17-b2407badb8c2", - "label": "Specify post-release bail condition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "RA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "46051d94-0e60-4010-b86d-cf65e1a464d8", - "label": "Bail condition: Other - to keep mobile phone switched on, fully charged and on your person 24 hours a day", - "shortCode": "PORO2", - "level": "O", - "rank": 31500, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "mobile", - "phone" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "0163061b-ac29-4d49-9491-13168ac60f82", - "label": "Mobile number", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "RH", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", - "label": "Bail condition: Other - report to police station", - "shortCode": "PORO3", - "level": "O", - "rank": 31600, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "report", - "police" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b9bc8c23-dc0b-433d-b9e4-4b957fd1b7d4", - "label": "Police Station Name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label": "Time 1", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label": "Time 2", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e834e96c-f300-4da9-b781-51d38204deb5", - "label": "Reporting days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JQ", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", - "label": "Bail condition: Other - see solicitor", - "shortCode": "PORO4", - "level": "O", - "rank": 31700, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "see", - "solicitor" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "RC", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", - "label": "Bail condition: Other - see barrister", - "shortCode": "PORO5", - "level": "O", - "rank": 31800, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "see", - "barrister" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "RC", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", - "label": "Bail condition: Residence - live, and sleep each night, at bail hostel", - "shortCode": "PORR1", - "level": "O", - "rank": 31900, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "live", - "sleep", - "hostel" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "16816060-7454-460c-a177-c8da502e18ab", - "label": "Hostel name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JR", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a50ad03e-d299-4da7-874c-0f233d7d503d", - "label": "Bail condition: Residence - live, and sleep each night, at bail hostel or at any other place where you may be told to go by specified person", - "shortCode": "PORR2", - "level": "O", - "rank": 32000, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "live", - "sleep", - "hostel", - "other" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "16816060-7454-460c-a177-c8da502e18ab", - "label": "Hostel name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "713e61b8-4899-408f-b6e4-77cc33abbb1a", - "label": "Supervisor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JS", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "label": "Community requirement: Attendance centre", - "shortCode": "ACR", - "level": "O", - "rank": 3900, - "wordGroups": [ - { - "wordGroup": [ - "attendance", - "centre", - "Requirement" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "6724800d-3f2d-4503-a078-3a50497a3a20", - "label": "Number of hours", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Hours", - "wordGroup": [ - "Hours" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "28e2f7e0-8886-4cf6-a828-776849f8d3d4", - "label": "Additional / concurrent to what", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3111", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c18dd89d-e057-42aa-b071-0a91226da3bf", - "label": "Bail condition: Residence - live and sleep each night at address", - "shortCode": "PORR3", - "level": "O", - "rank": 32100, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "live", - "sleep" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", - "label": "Address", - "welshLabel": "Cyfeiriad", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "RB", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "795079ed-4b5a-4750-b077-d653180d43ae", - "label": "Bail condition: Residence - not to live in the same household", - "shortCode": "PORR4", - "level": "O", - "rank": 32200, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "not", - "live" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4f585f53-f68c-41f1-9734-e88aa1e91f14", - "label": "Specify restriction", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "HC", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "71efa12c-a68e-4537-ac7d-27ebf91557a6", - "label": "Bail condition: Residence BASS - live and sleep each night at specified address and comply with the conditions of BASS", - "shortCode": "PORR5", - "level": "O", - "rank": 32300, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "live", - "sleep", - "bass" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "0dbf39c0-02e9-498f-87cd-c1221270c535", - "label": "BASS address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "RB", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "36951b36-de01-45bc-91a7-1c68f5989ed5", - "label": "Bail condition: Residence BASS - take part in additional mandatory support sessions (more than the minimum of one session per week)", - "shortCode": "PORR6", - "level": "O", - "rank": 32400, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "support", - "sessions" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "91141263-7f27-494f-95e9-04a113952974", - "label": "Bail condition: Surety - find continuous surety / sureties", - "shortCode": "PORS", - "level": "O", - "rank": 32500, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "continuous", - "surety" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5139e711-b645-4b1c-af81-84f5887abdf6", - "label": "Number of sureties", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "088ef869-d7f9-4184-b624-6c1e9fab8bee", - "label": "In the sum of", - "welshLabel": "Y swm o", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JX", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", - "label": "Bail condition: Travel - not to apply for international travel documents or be in possession of any", - "shortCode": "PORT1", - "level": "O", - "rank": 32600, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "travel", - "documents" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JT", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", - "label": "Bail condition: Travel - not to leave England and Wales", - "shortCode": "PORT2", - "level": "O", - "rank": 32700, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "not", - "leave", - "England", - "Wales" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "JY", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bail conditions", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "fbed768b-ee95-4434-87c8-e81cbc8d24c8", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Next hearing in Crown Court", - "shortCode": "NHCCS", - "level": "O", - "rank": 500, - "wordGroups": [ - { - "wordGroup": [ - "NHCCS" - ] - }, - { - "wordGroup": [ - "adjournment", - "Crown" - ] - }, - { - "wordGroup": [ - "next", - "hearing", - "Crown" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 700, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HEST", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 700, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HEST", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 700, - "duration": "Hours", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HEST", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 700, - "duration": "Minutes", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HEST", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "dfac671c-5b85-42a1-bb66-9aeee388a08d", - "label": "Time of hearing", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TIME", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HTIME", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f507153-6dc9-4ec0-94db-c821eff333f1", - "label": "Courtroom", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HCROOM", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7746831a-d5dd-4fa8-ac13-528573948c8a", - "label": "Courthouse name", - "welshLabel": "Enw’r adeilad llys", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HCHOUSE", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HTYPE", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9403f0d7-90b5-4377-84b4-f06a77811362", - "label": "Remand Status", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "c82897b8-7e25-4b5d-9cd3-dbf3e1cb7c0c", - "qual": null, - "reference": "remandStatus", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "42962373-587c-4324-9ae6-7c99171d1c69", - "label": "Week commencing", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HDATE", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7e72e671-295a-4e56-a419-2a59a14863b0", - "label": "Fixed date", - "welshLabel": null, - "resultPromptRule": "optional", - "type": null, - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": "fixedDate", - "courtExtract": "N", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Next hearing", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "3a529001-2f43-45ba-a0a8-d3ced7e9e7ad", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Remanded on conditional bail", - "shortCode": "RC", - "reference": "", - "level": "O", - "rank": 32800, - "wordGroups": [ - { - "wordGroup": [ - "remanded", - "conditional", - "bail" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label": "Is the defendant excused attendance?", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantExcusedAttendance", - "courtExtract": "Y", - "durationSequence": null, - "hidden": false - }, - { - "id": "80be59c8-ffaa-4570-b40a-f3a085058208", - "label": "Bail condition reason", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual": null, - "reference": "bailConditionReason", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "dec5104c-3342-4544-b287-31ea969e0f15", - "label": "BASS provider", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bassProvider", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label": "Additional reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalReasons", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4027", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Remand conditional bail", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "ruleType": "optional" - } - ] - }, - { - "id": "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", - "label": "Remanded on unconditional bail", - "shortCode": "RU", - "level": "O", - "rank": 33000, - "wordGroups": [ - { - "wordGroup": [ - "remand", - "unconditional" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label": "Is the defendant excused attendance?", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantExcusedAttendance", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4047", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Remand unconditional bail", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "label": "Community requirement: Alcohol abstinence", - "shortCode": "AAR", - "level": "O", - "rank": 4000, - "wordGroups": [ - { - "wordGroup": [ - "Alcohol", - "abstinence", - "Requirement" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3146", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d0a369c9-5a28-40ec-99cb-da7943550b18", - "label": "Remanded in custody", - "shortCode": "RI", - "level": "O", - "rank": 33300, - "wordGroups": [ - { - "wordGroup": [ - "remand", - "custody" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "21ecdc07-7397-4eac-9c26-e66dfeb32d01", - "label": "TV link at next hearing", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "tvLinkAtNextHearing", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "343de039-f33b-4770-b61c-4d6db4ae369c", - "label": "TV link pre-hearing conference time", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "tVLinkPrehearingConferenceTime", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label": "Remand basis", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual": null, - "reference": "remandBasis", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "riskFactors", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "7b2e6219-ddcb-4afa-8615-8de978e60af1", - "label": "Bail exception", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "10a769e8-1b1c-430d-844b-8948942cf353", - "qual": null, - "reference": "bailException", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", - "label": "Bail exception reason", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "c0fb2ca5-7702-4f01-b344-33029cfdcd47", - "qual": null, - "reference": "bailExceptionReason", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label": "Additional reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalReasons", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4028", - "drivingTestStipulation": 1, - "pointsDisqualificationCode": "TT99", - "dvlaCode": "C", - "secondaryCJSCodes": [ - { - "cjsCode": "1234", - "text": "SecondaryCjsCode text1" - }, - { - "cjsCode": "5678", - "text": "SecondaryCjsCode text2" - } - ], - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "C", - "resultDefinitionGroup": "Remand in custody", - "policeSubjectLineTitle": "Final Sentence", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "6af22d8d-6157-460e-b641-e6db90d15289", - "label": "Remanded in custody pending receipt of Prosecutor's written notice of appeal", - "shortCode": "RIBA2", - "level": "O", - "rank": 33500, - "wordGroups": [ - { - "wordGroup": [ - "remand", - "appeal" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e1b8b750-af91-466a-acf8-c7f6685d3b26", - "label": "Time when oral notice of appeal was given", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "timeOfOralNotice", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8b0bf6d4-e48a-425c-bc0d-fed8948010e5", - "label": "Custodian name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "custodianName", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Remand appeal", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7a0932f5-8264-412e-a83c-2b6d1dce1506", - "label": "Prosecutor's notice of appeal received. Remanded in custody", - "shortCode": "RIBA48", - "level": "O", - "rank": 33600, - "wordGroups": [ - { - "wordGroup": [ - "remand", - "custody", - "appeal" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "66f338f2-6c3b-4511-b224-97cbc1eab1c0", - "label": "Time when written notice of appeal was received", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "timeofWrtittenNotice", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "de91870f-f1e3-4dcd-a8ee-fa409ee34beb", - "label": "Crown Court name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "crownCourtName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6730aae5-9e6b-45e6-8a2e-0e06cc70c7ca", - "label": "Date otherwise bailed to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "4049", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "C", - "resultDefinitionGroup": "Remand appeal", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "074124d5-b07a-4b73-8b9a-792e8462138a", - "label": "Prosecutor's bail appeal withdrawn. (D in local custody). Release in accordance with earlier decision", - "shortCode": "RIBAWL", - "level": "O", - "rank": 33700, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "appeal", - "wthdrawn" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "7af5471c-34c1-4176-b595-8f9a796ac455", - "label": "Basis of appeal being withdrawn", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Remand appeal", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "6511006f-b40d-4fcb-8372-bc38fde69b64", - "label": "Remitted to youth court for trial", - "shortCode": "REMYCT", - "level": "O", - "rank": 33800, - "wordGroups": [ - { - "wordGroup": [ - "remit", - "youth", - "trial" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "44e3bc06-0c07-422a-84a1-bcca57f898f4", - "label": "Youth Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7f2d58f4-ca3d-4059-9df5-19f7cb744676", - "label": "Remitted to youth court for sentence", - "shortCode": "REMYCS", - "level": "O", - "rank": 33900, - "wordGroups": [ - { - "wordGroup": [ - "remit", - "youth", - "sentence" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "44e3bc06-0c07-422a-84a1-bcca57f898f4", - "label": "Youth Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "fcbf777d-1a73-47e7-ab9b-7c51091a022c", - "label": "Direction made under Section 45 of the Youth Justice and Criminal Evidence Act 1999", - "shortCode": "D45", - "level": "O", - "rank": 34000, - "wordGroups": [ - { - "wordGroup": [ - "direction", - "45", - "youth" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "03983f51-f937-4dd8-9656-276b1ca86785", - "label": "Restricting publicity in respect of youth - Specify name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label": "Further details", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "4510", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", - "label": "Direction under Section 45A of the Youth Justice and Criminal Evidence Act 1999", - "shortCode": "D45A", - "level": "O", - "rank": 34200, - "wordGroups": [ - { - "wordGroup": [ - "direction", - "45a", - "youth" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "03983f51-f937-4dd8-9656-276b1ca86785", - "label": "Restricting publicity in respect of youth - Specify name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label": "Further details", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "4510", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "89e3c24b-acbf-42fb-9eee-169b83423035", - "label": "Direction made under Section 46 of the Youth Justice and Criminal Evidence Act 1999", - "shortCode": "D46", - "level": "O", - "rank": 34300, - "wordGroups": [ - { - "wordGroup": [ - "direction", - "46", - "youth" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "27247b35-5013-41cb-9b24-26d38332e547", - "label": "Restricting publicity in respect of adult witness - specify name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label": "Further details", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "4510", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c265d589-fcc0-451b-be43-7856e32524ba", - "label": "Direction made under Section 39 of the Children and Young Persons Act 1933", - "shortCode": "D39", - "level": "O", - "rank": 34400, - "wordGroups": [ - { - "wordGroup": [ - "direction", - "39", - "children" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ff5f8083-5413-467f-b359-9abfb49ecbb2", - "label": "State if youth is defendant, witness or victim or combination of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label": "Further details", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "4510", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d683f73c-488e-4d8e-a685-d37049c2a3e5", - "label": "Community requirement: Alcohol abstinence with alcohol limit", - "shortCode": "AARAL", - "level": "O", - "rank": 4100, - "wordGroups": [ - { - "wordGroup": [ - "Alcohol", - "abstinence", - "limit" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2d340f59-2b74-437b-8d7d-6b316613021c", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fac82e4b-7c37-4a46-a689-3f1defe2474a", - "label": "Alcohol limit", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3146", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "393c5be8-dadb-484b-ab39-0f1eb57aeae5", - "label": "Order made under Section 11 of the Contempt of Court Act 1981 until date", - "shortCode": "D11", - "level": "O", - "rank": 34500, - "wordGroups": [ - { - "wordGroup": [ - "11", - "contempt", - "until" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a73b3f21-1978-45fc-b413-0299c60e07ad", - "label": "Details of the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3ea2cb5c-397e-4dd3-8328-d375135f3191", - "label": "Date of expiry", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", - "label": "Purpose of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9647428f-0946-4a09-aec1-7bdfcd324ac6", - "label": "Order made under Section 11 of the Contempt of Court Act 1981 until further order", - "shortCode": "D11FO", - "level": "O", - "rank": 34600, - "wordGroups": [ - { - "wordGroup": [ - "11", - "contempt", - "Further" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a73b3f21-1978-45fc-b413-0299c60e07ad", - "label": "Details of the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", - "label": "Purpose of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "21271525-76f4-4134-9c93-1be012a574c8", - "label": "Order made under Section 4 of the Contempt of Court Act 1981", - "shortCode": "D4", - "level": "O", - "rank": 34700, - "wordGroups": [ - { - "wordGroup": [ - "Order", - "4", - "contempt" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a73b3f21-1978-45fc-b413-0299c60e07ad", - "label": "Details of the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "318c9eb2-cf3c-4592-a353-1b2166c15f81", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "4510", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d023e3a7-33ef-45b4-a19b-5137afecbf1f", - "label": "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until date - derogatory assertions", - "shortCode": "D58", - "level": "O", - "rank": 34800, - "wordGroups": [ - { - "wordGroup": [ - "Order", - "58", - "until" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", - "label": "Assertions", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", - "label": "Witness name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3ea2cb5c-397e-4dd3-8328-d375135f3191", - "label": "Date of expiry", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2c18aff1-b535-47b6-8415-8841e85eac49", - "label": "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until further order - derogatory assertions", - "shortCode": "D58FO", - "level": "O", - "rank": 34900, - "wordGroups": [ - { - "wordGroup": [ - "Order", - "58", - "Further" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", - "label": "Assertions", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", - "label": "Witness name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2e725ba6-0e29-4ffb-a5c7-31b67344c211", - "label": "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity in respect of youth", - "shortCode": "D49Y", - "level": "O", - "rank": 35100, - "wordGroups": [ - { - "wordGroup": [ - "Order", - "49", - "publicity", - "youth" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "788bb732-5467-4c0b-ba88-96a0ef8aaeb4", - "label": "Name of youth", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "94084f13-fa2f-4d24-938b-0656292edd59", - "label": "Details of reporting restriction lifted", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "98366b12-b70a-4e66-b71d-a5bbd39bd595", - "label": "Order made allowing reporting", - "shortCode": "DALLOW", - "level": "O", - "rank": 35200, - "wordGroups": [ - { - "wordGroup": [ - "allow", - "reporting" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "42711aff-3d3a-4d85-8e68-f03065823422", - "label": "Details of directions allowed to be reported", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", - "label": "Direction restricting publicity revoked", - "shortCode": "DPR", - "level": "O", - "rank": 35300, - "wordGroups": [ - { - "wordGroup": [ - "publicity", - "revoked" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1a7da720-a95a-46e4-b2ee-6b8e9db430cc", - "label": "Date direction allowing publicity made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", - "label": "Excepting direction varied", - "shortCode": "DV", - "level": "O", - "rank": 35400, - "wordGroups": [ - { - "wordGroup": [ - "exception", - "direction", - "varied" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "851f11ed-99d5-4d2a-96c0-227df6743250", - "label": "Date excepting direction made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", - "label": "Details of variation", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "label": "Community requirement: Mental health treatment", - "shortCode": "MHTR", - "level": "O", - "rank": 4200, - "wordGroups": [ - { - "wordGroup": [ - "Mental", - "Health", - "Requirement" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label": "Medical practitioner / Psychologist", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3108", - "adjournment": false, - "convicted": true, - "qualifier": "HG", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", - "label": "Excepting direction revoked", - "shortCode": "DR", - "level": "O", - "rank": 35500, - "wordGroups": [ - { - "wordGroup": [ - "exception", - "direction", - "revoked" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "851f11ed-99d5-4d2a-96c0-227df6743250", - "label": "Date excepting direction made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b3035ace-15d4-44ca-9d79-c83a57dc0e30", - "label": "Excepting direction made dispensing with publicity restrictions", - "shortCode": "DP", - "level": "O", - "rank": 35600, - "wordGroups": [ - { - "wordGroup": [ - "dispense", - "publicity" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5b4ddad9-db87-43b4-a127-cc8312a7d56c", - "label": "Date publicity restriction made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7d61ec4e-f75a-489d-9950-5584e354659c", - "label": "Extent of dispensation", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "84222bcb-05ac-4c67-82df-cc8742a850d1", - "label": "The Court directs that information relating to the complainant may be published in connection with the summary trial of the case", - "shortCode": "DST", - "level": "O", - "rank": 35700, - "wordGroups": [ - { - "wordGroup": [ - "complainant", - "published", - "trial" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1ffa4f8d-2e22-4226-8f29-fe09b0ef00f6", - "label": "Complainant information", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "07d8fab1-366d-43c5-bdb4-223f8c1229f5", - "label": "Complainant's anonymity protected by virtue of Section 1 of the Sexual Offences Amendment Act 1992", - "shortCode": "DSOA", - "level": "O", - "rank": 35800, - "wordGroups": [ - { - "wordGroup": [ - "anonymity", - "protrected", - "sexual" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2e83102c-a262-4bb3-a48d-c2107a094a66", - "label": "Order revoked", - "shortCode": "OREV", - "level": "O", - "rank": 35900, - "wordGroups": [ - { - "wordGroup": [ - "Order", - "revoked" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "7e8ec1d3-e8fb-4116-9e37-842120700c48", - "label": "Court that made the original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "917a6802-ef7e-4449-8df9-6f9a49fcbe91", - "label": "Order revoked", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "50f095ad-e289-433a-817a-6d79c567a5fa", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0eba630e-a486-439f-8d76-b49b1363067c", - "label": "Court that made the original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "94fbf012-b9a6-4b3c-8743-0803aff0e25c", - "label": "Date order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1029", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "14f22747-685e-4bd9-91e7-fb372d8c3b72", - "label": "Order to continue", - "shortCode": "OTC", - "level": "O", - "rank": 36000, - "wordGroups": [ - { - "wordGroup": [ - "Order", - "continue" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1040", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c98cb51f-8639-49c1-91f0-a7e820c34355", - "label": "Warrant for arrest without bail", - "shortCode": "WOFN", - "level": "O", - "rank": 36100, - "wordGroups": [ - { - "wordGroup": [ - "warrant", - "arrest", - "without", - "bail" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label": "Grounds for warrant", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label": "Process server name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4576", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Warrants of arrest", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b4f7c223-b9d1-4409-b6d3-039f66eb9645", - "label": "Warrant for arrest with bail (dated)", - "shortCode": "WOFD", - "level": "O", - "rank": 36300, - "wordGroups": [ - { - "wordGroup": [ - "warrant", - "arrest", - "with", - "bail", - "dated" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label": "Grounds for warrant", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label": "Process server name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "507c4249-d897-43bb-b64d-5c156ef6ba85", - "label": "Bail to be allowed on these conditions", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4575", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Warrants of arrest", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType": "optional" - } - ] - }, - { - "id": "671df737-9901-4fa5-b245-aeff0c4c7495", - "label": "Warrant for arrest with bail (undated)", - "shortCode": "WOFU", - "level": "O", - "rank": 36400, - "wordGroups": [ - { - "wordGroup": [ - "warrant", - "arrest", - "with", - "bail", - "undated" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label": "Grounds for warrant", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8ef9613e-f19c-11e8-904a-f2801f1b9fd1", - "label": "Bail allowed on conditions", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label": "Process server name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4577", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Warrants of arrest", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c8c962df-e28c-4ea8-8496-721badb77b7b", - "label": "Warrant for arrest redated", - "shortCode": "WOFR", - "level": "O", - "rank": 36500, - "wordGroups": [ - { - "wordGroup": [ - "warrant", - "arrest", - "redated" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4575", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Warrants of arrest", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType": "optional" - } - ] - }, - { - "id": "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "label": "Community requirement: Mental health treatment residential patient", - "shortCode": "MHTRR", - "level": "O", - "rank": 4300, - "wordGroups": [ - { - "wordGroup": [ - "Mental", - "Health", - "Non-residential" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label": "Medical practitioner / Psychologist", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fb580537-9d36-4139-811b-77af09547b0d", - "label": "Care home / Hospital", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3108", - "adjournment": false, - "convicted": true, - "qualifier": "HE", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "73242763-44db-4d57-a855-44a6cf4f6226", - "label": "Warrant for arrest without bail executed on day of issue", - "shortCode": "WOFEX", - "level": "O", - "rank": 36600, - "wordGroups": [ - { - "wordGroup": [ - "warrant", - "arrest", - "issue" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label": "Grounds for warrant", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Warrants of arrest", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b9d81454-a565-4a86-bcf9-e7c58bb89dba", - "label": "Anti-social behaviour order varied", - "shortCode": "ASBOV", - "level": "O", - "rank": 36700, - "wordGroups": [ - { - "wordGroup": [ - "asbo", - "varied" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7e8ec1d3-e8fb-4116-9e37-842120700c48", - "label": "Court that made the original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3f441b7c-e9ac-4f1c-b731-babfd2fa94d9", - "label": "Anti-social order type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2da599de-da03-492e-b66f-e7aad32fcfa5", - "label": "Terms of variation", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c491a47d-b167-467b-b2f4-f9e567bd4da0", - "label": "Start of date of variation", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1030", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "90d8268d-cc6a-4a09-bdb3-ddf8ea8ef2f9", - "label": "Variation of bail conditions", - "shortCode": "RCBV", - "level": "O", - "rank": 36800, - "wordGroups": [ - { - "wordGroup": [ - "bail", - "varied" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "77eb185c-03e7-4971-8dcc-77089d048731", - "label": "Date bail previously granted", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "21541638-82dd-4a9f-a05c-67589dc8dce9", - "label": "Court which previously granted bail", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label": "Is the defendant excused attendance?", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "80be59c8-ffaa-4570-b40a-f3a085058208", - "label": "Bail condition reason", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual": null, - "reference": "bailConditionReason", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f7995d94-bf13-41df-a599-79ead4123aad", - "label": "BASS provider", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label": "Additional reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalReasons", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "4574", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Remand conditional bail", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "bb90e801-0066-4bdf-85e6-8d64bc683f0c", - "label": "Reporting restriction continues", - "shortCode": "REPC", - "level": "O", - "rank": 36900, - "wordGroups": [ - { - "wordGroup": [ - "reporting", - "restrictions", - "continue" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "18f255dd-103f-494f-81d0-82db5b5ee7bd", - "label": "Date restriction imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Press", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "961962dd-70c3-463c-89d9-a2b2a393b165", - "label": "Remitted from Crown Court to magistrates' court for trial", - "shortCode": "REMITMC", - "level": "O", - "rank": 37000, - "wordGroups": [ - { - "wordGroup": [ - "remittal", - "trial" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b09fdfef-bde4-4804-8731-f1c2632fbfcc", - "label": "Local Justice Area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "8542b0d9-27f0-4df3-a4a3-0ac0a85c33ad", - "label": "Notice to magistrates' court that summary offence dismissed", - "shortCode": "SUMD", - "level": "O", - "rank": 37100, - "wordGroups": [ - { - "wordGroup": [ - "summary", - "Dismissed", - "magistrates" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b09fdfef-bde4-4804-8731-f1c2632fbfcc", - "label": "Local Justice Area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "306c1775-ec96-4e1d-b35e-bcea099ce10a", - "label": "Notice to magistrates' court that Crown Court powers regarding summary offence have ceased", - "shortCode": "SUMC", - "level": "O", - "rank": 37200, - "wordGroups": [ - { - "wordGroup": [ - "magistrates", - "powers", - "ceased" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b09fdfef-bde4-4804-8731-f1c2632fbfcc", - "label": "Local Justice Area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "3fdf077e-92b3-4b58-abd1-040a42c35a45", - "label": "Remanded to hospital for treatment", - "shortCode": "RHT", - "level": "O", - "rank": 37300, - "wordGroups": [ - { - "wordGroup": [ - "remanded", - "hospital" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f8ff8214-14b0-4425-94eb-64e6ae320f80", - "label": "Specify hospital", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label": "Remand basis", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual": null, - "reference": "remandBasis", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "7b2e6219-ddcb-4afa-8615-8de978e60af1", - "label": "Bail exception", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "10a769e8-1b1c-430d-844b-8948942cf353", - "qual": null, - "reference": "bailException", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", - "label": "Bail exception reason", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "c0fb2ca5-7702-4f01-b344-33029cfdcd47", - "qual": null, - "reference": "bailExceptionReason", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label": "Additional reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalReasons", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label": "Place of safety", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "placeOfSafety", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label": "Conveyor/custodian", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "96949d0c-a59c-4a6f-a563-97456c985987", - "label": "Further directions regarding conveyance to place of safety", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4051", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "C", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "68c97f89-1672-417d-8513-74cded9d2322", - "label": "Restriction order", - "shortCode": "RISTO", - "level": "O", - "rank": 37400, - "wordGroups": [ - { - "wordGroup": [ - "restriction", - "Order" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "1004", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "04437aef-8b44-424e-9cd0-75a10a00f256", - "label": "Hospital direction and limitation direction", - "shortCode": "DHA", - "level": "O", - "rank": 37500, - "wordGroups": [ - { - "wordGroup": [ - "hospital", - "limitation" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label": "Minimum term", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1000, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label": "Early release provisions apply", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1100, - "duration": null, - "wordGroup": [ - "Early", - "release" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label": "Early release provisions do not apply", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1200, - "duration": null, - "wordGroup": [ - "Early", - "not", - "release" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2395831b-5044-451f-acaf-259d00e01bea", - "label": "Sentenced in absence", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1500, - "duration": null, - "wordGroup": [ - "Absence" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "FH", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f8ff8214-14b0-4425-94eb-64e6ae320f80", - "label": "Specify hospital", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "specifyHospital", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6baa9e89-7d7d-47b4-bb99-3e3d22cbb011", - "label": "Name of hospital unit", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label": "Place of safety", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "placeOfSafety", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label": "Conveyor/custodian", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "96949d0c-a59c-4a6f-a563-97456c985987", - "label": "Further directions regarding conveyance to place of safety", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "d483e89c-4919-4248-a046-372a6a4532a6", - "label": "Reason for sentence without PSR", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1088", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "label": "Community requirement: Mental health treatment non-residential patient", - "shortCode": "MHTRNR", - "level": "O", - "rank": 4400, - "wordGroups": [ - { - "wordGroup": [ - "Mental", - "Health", - "Residential" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label": "Medical practitioner / Psychologist", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3108", - "adjournment": false, - "convicted": true, - "qualifier": "HF", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "cb0842d5-9b42-4930-99b3-ae835b56aa56", - "label": "Conditional discharge (no notice produced)", - "shortCode": "CDN", - "level": "O", - "rank": 37600, - "wordGroups": [ - { - "wordGroup": [ - "conditional", - "discharge", - "notice" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label": "Duration of conditional discharge", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label": "Duration of conditional discharge", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label": "Duration of conditional discharge", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label": "Duration of conditional discharge", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1018", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7dcc9315-917f-408c-bb77-df8b978f503d", - "label": "Deferred sentence", - "shortCode": "DS", - "level": "O", - "rank": 37700, - "wordGroups": [ - { - "wordGroup": [ - "deferred", - "sentence" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2e93862b-2412-41ca-be12-5321815294f2", - "label": "Requirements that must be carried out", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "49806ee4-d2d8-40ce-b651-5fee1510aff4", - "label": "The court has appointed a supervisor to supervise you", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1ab4b20a-9421-494f-8b17-843450050a6e", - "label": "Name of victim involved in restorative justice", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e76ed20a-768a-41ad-8b95-921539ac3550", - "label": "Address of victim involved in restorative justice", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4005", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType": "mandatory" - } - ] - }, - { - "id": "b91a9688-6542-4132-84f2-a3ffff60edfa", - "label": "Deferred sentence with restorative justice activity involving victim", - "shortCode": "DEFRJ", - "level": "O", - "rank": 37800, - "wordGroups": [ - { - "wordGroup": [ - "deferred", - "sentence", - "victim" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2e93862b-2412-41ca-be12-5321815294f2", - "label": "Requirements that must be carried out", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1ab4b20a-9421-494f-8b17-843450050a6e", - "label": "Name of victim involved in restorative justice", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e76ed20a-768a-41ad-8b95-921539ac3550", - "label": "Address of victim involved in restorative justice", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "49806ee4-d2d8-40ce-b651-5fee1510aff4", - "label": "The court has appointed a supervisor to supervise you", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4005", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2e3cdfca-8bce-4ad4-93c9-075bead61b0d", - "label": "Notification of requirement to register with police until case dealt with", - "shortCode": "NORRDW", - "level": "O", - "rank": 37900, - "wordGroups": [ - { - "wordGroup": [ - "register", - "police" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "7780ed3c-ab05-4a53-acce-316b5486d3ec", - "label": "Parent's name if parental direction required", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "859b99d5-de74-4a84-b160-c914467af86d", - "label": "Name of police station to report to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", - "label": "Conviction / finding / insanity", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3052", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c4c7db1f-673b-4633-8400-4739f483c68e", - "label": "Notification of requirement to register with police for a period", - "shortCode": "NORR", - "level": "O", - "rank": 38000, - "wordGroups": [ - { - "wordGroup": [ - "register", - "police", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label": "Notification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label": "Notification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label": "Notification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label": "Notification period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7780ed3c-ab05-4a53-acce-316b5486d3ec", - "label": "Parent's name if parental direction required", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "859b99d5-de74-4a84-b160-c914467af86d", - "label": "Name of police station to report to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", - "label": "Conviction / finding / insanity", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3052", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "55b91429-8dda-4a8f-8b84-d4cd1a398ab5", - "label": "Notification of requirement to register with police indefinately", - "shortCode": "NORRI", - "level": "O", - "rank": 38100, - "wordGroups": [ - { - "wordGroup": [ - "register", - "police", - "indefinately" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "7780ed3c-ab05-4a53-acce-316b5486d3ec", - "label": "Parent's name if parental direction required", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "859b99d5-de74-4a84-b160-c914467af86d", - "label": "Name of police station to report to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", - "label": "Conviction / finding / insanity", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3052", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9ea0d845-5096-44f6-9ce0-8ae801141eac", - "rollUpPrompts": false, - "publishedForNows": false, - "label": "Collection order", - "shortCode": "COLO", - "level": "C", - "rank": 38200, - "wordGroups": [ - { - "wordGroup": [ - "COLO" - ] - }, - { - "wordGroup": [ - "collection", - "Order" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "6b36e5ff-e116-4dc3-b438-8c02d493959e", - "label": "Collection order type", - "welshLabel": "Math o orchymyn casglu", - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "d7d75420-aace-11e8-98d0-529269fb1459", - "qual": null, - "reference": "collectionOrderType", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "369b6e22-4678-4b04-9fe9-5bb53bed5067", - "label": "Reason for not making an attachment of earnings order or deduction from benefit application", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "reasonForNotMakingAnAttachment", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "dc44f589-6dd2-4a8d-9164-c1796c6b0e36", - "label": "Reason for making an attachment of earnings order", - "welshLabel": "Rheswm dros wneud gorchymyn atafaelu enillion", - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", - "qual": null, - "reference": "reasonForMakingAnAttachment", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "16ade3fb-9f0f-4ce4-a6c8-fa96277e1519", - "label": "Reason for making an application for deductions from benefit", - "welshLabel": "Rheswm dros wneud cais i ddidynnu o fudd-dal", - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", - "qual": null, - "reference": "reasonForMakingAnApplication", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Gorchymyn Casglu", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "76b02133-4927-4f21-9f79-1ce361a17b0f", - "label": "Confiscation order where Court decides the available amount - makes a statement of findings", - "shortCode": "CONFAA", - "level": "O", - "rank": 38400, - "wordGroups": [ - { - "wordGroup": [ - "confiscation", - "Order", - "decide" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label": "Default prison term", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1700, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label": "Default prison term", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1700, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label": "Default prison term", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1700, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label": "Default prison term", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1700, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b613add5-2657-4a13-ad6f-cf01079f1f1a", - "label": "The benefit is a result of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e9e6e941-db50-4eed-b388-f6dafe09f9d5", - "label": "Value of the benefit", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "97ba9a67-9cf9-4357-bed9-1c38b9a037c0", - "label": "Available amount that may be realised", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5a954d49-da57-4952-893c-82f57d2dbed8", - "label": "The defendant's assets are those described in the schedule (form 5050A) and were a matter relevant to the Court's decision", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6275de58-7ba0-4141-b872-19e49707a0e2", - "label": "Total value of assets presented in the schedule (form 5050A)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "CURR", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b2281817-6d7f-48f2-a27c-a61ba506a007", - "label": "Total value of assets decided by the Court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "CURR", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "52b9ac44-e6d5-4494-a94c-16b23b5a890b", - "label": "The statement of the prosecutor was a matter relevant to the Court's decision", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a5d3e131-3031-4c92-ba48-a2d132767476", - "label": "Matters in the defendant's response to the statement of the prosecutor were relevant to the Court's decision", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8fdf6804-ac49-42c4-9ffe-a1c35b76f8ca", - "label": "Matters in the defendant's response to a court order requiring the defendant to give infomation specified in the order were relevant to the Court's decision", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "42d8c319-ddda-4af6-bc84-53450378b77f", - "label": "Total value of assets presented to Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b2281817-6d7f-48f2-a27c-a61ba506a007", - "label": "Total value of assets decided by the Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9e2ea5fd-b373-43e4-81ae-04f1b0b9ed2c", - "label": "Amount ordered to pay", - "welshLabel": "Swm a orchmynnwyd i’w dalu", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6ca8afa4-ec62-4ca1-a914-181418db8961", - "label": "Description of amount to be paid", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 1300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cef4a3b2-b279-404c-a6ae-3552f2a9151d", - "label": "Amount of confiscation sum to be paid as compensation", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "CURR", - "sequence": 1400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "851e2be3-1436-47a4-824d-ca3168647f0c", - "label": "Collecting Magistrates' Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 1500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", - "label": "Confiscation unit to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 1600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5437f354-b075-4dd0-87cb-260c4fd8dd1f", - "label": "Defendant's custody location", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "869beaee-71bd-4e33-8ea6-3e5554fcb6c8", - "label": "Priority order directions", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3056", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Confiscation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "733545c5-5612-40b8-bd81-df1a6a154182", - "label": "Confiscation order where Court does not decide the available amount", - "shortCode": "CONF", - "level": "O", - "rank": 38500, - "wordGroups": [ - { - "wordGroup": [ - "confiscation", - "Order", - "not", - "decide" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label": "Default prison term", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label": "Default prison term", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label": "Default prison term", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label": "Default prison term", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d1142456-f354-42ec-ba25-1556d99230c6", - "label": "The benefit is a result of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "de6587cb-7892-48ef-bf6c-3b63471a0422", - "label": "Value of the benefit", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "587ba904-51cc-4284-9883-6724acc55531", - "label": "Available amount that may be realised", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7798fac0-1e5a-4e53-ae3f-e49d825ac560", - "label": "Total value of assets presented to Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a7fc546f-ca75-4aed-98b4-4cdce26238ba", - "label": "Total value of assets decided by the Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fdd30c91-11d4-4511-b1f8-dfd1b9fbcc5d", - "label": "Amount ordered to pay", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b838babb-4b10-4534-ad6e-794da31d6976", - "label": "Description of amount to be paid", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4ceb1e93-25ce-4f6e-aaf6-195083faadb6", - "label": "Amount of confiscation sum to be paid as compensation", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "CURR", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "851e2be3-1436-47a4-824d-ca3168647f0c", - "label": "Collecting Magistrates' Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", - "label": "Confiscation unit to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5437f354-b075-4dd0-87cb-260c4fd8dd1f", - "label": "Defendant's custody location", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c66d10aa-b197-49d8-87e5-28eb356fde1e", - "label": "Priority order directions", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3056", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Confiscation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "label": "Community requirement: Exclusion not to enter for a period", - "shortCode": "ERP", - "level": "O", - "rank": 4500, - "wordGroups": [ - { - "wordGroup": [ - "exclusion", - "Requirement", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label": "Period of exclusion", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label": "Period of exclusion", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label": "Period of exclusion", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label": "Period of exclusion", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2fcf2607-6619-4072-a348-77f6afb500f3", - "label": "Place / area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6d322ff1-1d95-4053-ac79-19d1b7874f2d", - "label": "End date of exclusion", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3106", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "adbdbb76-8ff7-4a22-881f-6b95adbf915b", - "label": "Electronic Monitoring End - notify contractor", - "shortCode": "EMONE", - "level": "O", - "rank": 38600, - "wordGroups": [ - { - "wordGroup": [ - "EM", - "end" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Contractor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": "contractor", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6bc0a7e8-ecd6-4607-896c-e8e8e88bd616", - "label": "Electronic monitoring type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7946cf86-d0f6-4611-815f-fc4d6fc05e34", - "label": "Date last electronic monitoring order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fef836f8-cae7-410f-b006-989d884a8d14", - "label": "Name of court that imposed electronic monitoring", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "83aef1c6-1246-4894-b44b-6a76d1e4d99b", - "label": "Name of prison defendant remanded or committed to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a0b426c1-74b8-43cd-9885-f0f31625352e", - "label": "Payment terms - on release", - "shortCode": "PTFOR", - "level": "D", - "rank": 38700, - "wordGroups": [ - { - "wordGroup": [ - "payment", - "on", - "release" - ] - }, - { - "wordGroup": [ - "payment", - "full" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Payment terms", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", - "label": "Remanded in custody - to hospital", - "shortCode": "RIH", - "level": "O", - "rank": 38800, - "wordGroups": [ - { - "wordGroup": [ - "remanded", - "hospital", - "custody" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label": "Remand basis", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual": null, - "reference": "remandBasis", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f8ff8214-14b0-4425-94eb-64e6ae320f80", - "label": "Specify hospital", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "specifyHospital", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "riskFactors", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "7b2e6219-ddcb-4afa-8615-8de978e60af1", - "label": "Bail exception", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "10a769e8-1b1c-430d-844b-8948942cf353", - "qual": null, - "reference": "bailException", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", - "label": "Bail exception reason", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "c0fb2ca5-7702-4f01-b344-33029cfdcd47", - "qual": null, - "reference": "bailExceptionReason", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label": "Additional reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalReasons", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label": "Place of safety", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "placeOfSafety", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4051", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "C", - "resultDefinitionGroup": "Remand in custody", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9be66be8-58d2-430c-a0b7-7f759ab0e48a", - "label": "Interim hospital order", - "shortCode": "MHHI", - "level": "O", - "rank": 38900, - "wordGroups": [ - { - "wordGroup": [ - "hospital", - "Order", - "interim" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "701b27ad-c54a-4011-a605-8c438ff685c9", - "label": "Name of hospital where defendant will be admitted or detained", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39001635-2dc8-4a58-9934-eeb60fa4d93b", - "label": "Name of hospital unit", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", - "label": "Hospital address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label": "Place of safety", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "placeOfSafety", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label": "Conveyor/custodian", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "96949d0c-a59c-4a6f-a563-97456c985987", - "label": "Further directions regarding conveyance to place of safety", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "3132", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "C", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "cf50fa81-671e-4598-b42b-721e45288240", - "label": "Interim hospital order extended", - "shortCode": "MHHIC", - "level": "O", - "rank": 39000, - "wordGroups": [ - { - "wordGroup": [ - "hospital", - "Order", - "extended" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "701b27ad-c54a-4011-a605-8c438ff685c9", - "label": "Name of hospital where defendant will be admitted or detained", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39001635-2dc8-4a58-9934-eeb60fa4d93b", - "label": "Name of hospital unit", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", - "label": "Hospital address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "48648c9f-4553-4d01-8eaa-91af63353a26", - "label": "Date on which original interim order was made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "3132", - "adjournment": false, - "convicted": false, - "qualifier": "E", - "postHearingCustodyStatus": "C", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b993d756-e5a8-4204-9d58-b344b79998e1", - "label": "Notice of Custodial Sentence to Border and Immigration Agency regarding Deportation", - "shortCode": "DEPN", - "level": "O", - "rank": 39100, - "wordGroups": [ - { - "wordGroup": [ - "deportation", - "borders" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "099bd432-cf4e-4274-861d-4a665e2f4314", - "label": "Deportation power", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "16bb9f17-d3c3-42f1-a4dc-2d953114a214", - "label": "Nationality", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7610d8a1-07fe-4e69-812d-22f821d3f334", - "label": "Forfeiture order (cash)", - "shortCode": "FORFC", - "level": "O", - "rank": 39200, - "wordGroups": [ - { - "wordGroup": [ - "forfeiture", - "cash" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "9bc76b55-37b4-42eb-b16d-52e83f86b8a2", - "label": "Amount of cash forfeited", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "48d71903-ce47-432a-8706-3619355f7738", - "label": "Currency of cash forfeited", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "98a562ee-7583-405a-ab05-3f922ada4872", - "label": "Type of forfeiture", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "26d4c112-a7ae-11e8-98d0-529269fb1459", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3134", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Forfeiture and deprivation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "6532b8f4-7794-420a-9f30-8aced3e41517", - "label": "Forfeiture of personal licence to sell alcohol", - "shortCode": "FLIC", - "level": "O", - "rank": 39300, - "wordGroups": [ - { - "wordGroup": [ - "forfeiture", - "licence", - "Alcohol" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label": "Order suspended pending appeal", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3136", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Forfeiture and deprivation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "661bdce3-ce01-4cb6-a152-6424540bbbce", - "label": "Suspension of personal licence to sell alcohol", - "shortCode": "SLIC", - "level": "O", - "rank": 39400, - "wordGroups": [ - { - "wordGroup": [ - "suspension", - "licence", - "Alcohol" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "60a23936-2446-4813-945c-7b42548f526b", - "label": "Period of suspension", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "60a23936-2446-4813-945c-7b42548f526b", - "label": "Period of suspension", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "60a23936-2446-4813-945c-7b42548f526b", - "label": "Period of suspension", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label": "Order suspended pending appeal", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3119", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Forfeiture and deprivation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "cebb3aa8-fed4-4784-b8bd-57901452344b", - "label": "Order to give date of birth", - "shortCode": "DOB", - "level": "D", - "rank": 39500, - "wordGroups": [ - { - "wordGroup": [ - "Order", - "dob" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4b055468-4534-4ded-b866-2895afae3f49", - "label": "Date the information must be returned by", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3503", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "label": "Community requirement: Exclusion not to enter with between dates", - "shortCode": "ERBD", - "level": "O", - "rank": 4600, - "wordGroups": [ - { - "wordGroup": [ - "exclusion", - "Requirement", - "dates" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2fcf2607-6619-4072-a348-77f6afb500f3", - "label": "Place / area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ac46c9c8-976d-40ef-a913-85c64a6859bc", - "label": "From date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9e41b95c-c776-4d95-b057-05b7fcb155aa", - "label": "Until date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3106", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a0a0f576-5f6c-4924-ac60-f4d289f15938", - "label": "Order to give statement of person's sex", - "shortCode": "SPS", - "level": "D", - "rank": 39600, - "wordGroups": [ - { - "wordGroup": [ - "Order", - "sex" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4b055468-4534-4ded-b866-2895afae3f49", - "label": "Date the information must be returned by", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3503", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "8fce92ff-22af-4d33-999f-e9c5b9b0f429", - "label": "No further action taken in respect of conduct (contempt)", - "shortCode": "NFAC", - "level": "O", - "rank": 39700, - "wordGroups": [ - { - "wordGroup": [ - "nfa", - "contempt" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "8c858e3e-1ade-4e90-869a-160c2bb5da90", - "label": "Postponement of enquiry into contempt", - "shortCode": "POSTC", - "level": "O", - "rank": 39800, - "wordGroups": [ - { - "wordGroup": [ - "postpone", - "enquiry", - "contempt" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "30d79db7-37fa-4c89-9129-926aa633d186", - "label": "Contempt of court findings", - "shortCode": "CONTF", - "level": "O", - "rank": 39900, - "wordGroups": [ - { - "wordGroup": [ - "contempt", - "findings" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "66388542-24fa-475b-8af0-18183ac282e9", - "label": "Findings", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "3169a020-99f3-4ff8-a76b-c3be37a60b71", - "label": "Committed to prison for refusal to produce items", - "shortCode": "P", - "level": "O", - "rank": 40000, - "wordGroups": [ - { - "wordGroup": [ - "commit", - "prison", - "refuse" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "riskFactors", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "18084ac5-1158-49f5-94b6-9ca619f2374b", - "label": "Document or item to be produced", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "8a4d068d-ca0f-4056-848e-b55b343f1090", - "label": "Witness summons withdrawn", - "shortCode": "WSW", - "level": "C", - "rank": 40100, - "wordGroups": [ - { - "wordGroup": [ - "witness", - "summons", - "withdrawn" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", - "label": "Witness name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "18084ac5-1158-49f5-94b6-9ca619f2374b", - "label": "Document or item to be produced", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4eb18e66-67e9-43df-8ed6-4b02c486dcc2", - "label": "No parental bind over made", - "shortCode": "NPARBOR", - "level": "D", - "rank": 40200, - "wordGroups": [ - { - "wordGroup": [ - "no", - "parental", - "bind" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3657fa70-aec5-4009-99c0-9e5bcab7319f", - "label": "Reason why court did not make the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d89d0e29-1cc8-4bac-8ff2-80c052398ca6", - "label": "No parenting order made", - "shortCode": "NPAROR", - "level": "D", - "rank": 40300, - "wordGroups": [ - { - "wordGroup": [ - "no", - "parenting", - "Order" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3657fa70-aec5-4009-99c0-9e5bcab7319f", - "label": "Reason why court did not make the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "1628d7d4-b9ec-4680-88dd-0483ee20ed48", - "label": "No reparation order made", - "shortCode": "NREPOR", - "level": "D", - "rank": 40400, - "wordGroups": [ - { - "wordGroup": [ - "no", - "reparation", - "Order" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3657fa70-aec5-4009-99c0-9e5bcab7319f", - "label": "Reason why court did not make the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "66a52d4d-7ec6-430d-a2fe-5963fe9ba095", - "label": "Detention and training order", - "shortCode": "DTO", - "level": "O", - "rank": 40500, - "wordGroups": [ - { - "wordGroup": [ - "detention", - "training", - "Order" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", - "label": "Period of detention and training", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", - "label": "Period of detention and training", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2395831b-5044-451f-acaf-259d00e01bea", - "label": "Sentenced in absence", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1000, - "duration": null, - "wordGroup": [ - "Absence" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "FH", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "49f8c150-93ea-48e7-ae86-f1a467c72a3a", - "label": "DTO reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7f1c407a-8d1b-40ce-9720-66467e723d5c", - "label": "Why the reason for DTO applies", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c1003078-ca9c-43ba-a131-8fa755c3a9f4", - "label": "Defendant is a persistent offender", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "81ed0c6f-7a58-4d4c-b8a0-6425de4f1d29", - "label": "Detention centre", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "riskFactors", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "d483e89c-4919-4248-a046-372a6a4532a6", - "label": "Reason for sentence without PSR", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1081", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "091cd45b-4312-476e-a122-18cc02fd1699", - "label": "Community requirement: Exclusion not to enter for a period with electronic monitoring", - "shortCode": "ERPEM", - "level": "O", - "rank": 4700, - "wordGroups": [ - { - "wordGroup": [ - "exclusion", - "electronic monitoring", - "Period", - "first" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a597f480-868c-4552-a1b3-70b9906dde09", - "label": "Exclusion and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a597f480-868c-4552-a1b3-70b9906dde09", - "label": "Exclusion and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a597f480-868c-4552-a1b3-70b9906dde09", - "label": "Exclusion and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a597f480-868c-4552-a1b3-70b9906dde09", - "label": "Exclusion and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2fcf2607-6619-4072-a348-77f6afb500f3", - "label": "Place / area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", - "label": "Start date for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f02e3b28-83e7-4650-a8e1-810bbb464bb4", - "label": "Start time for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", - "label": "End date for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "487358be-eccc-46e4-aa8e-e41495638a2c", - "label": "End time for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Contractor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": "contractor", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3106", - "adjournment": false, - "convicted": true, - "qualifier": "BA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f9d43a8f-dd19-4c0f-9fad-a3d339fd09b4", - "label": "Total detention and training order", - "shortCode": "TDTO", - "level": "D", - "rank": 40600, - "wordGroups": [ - { - "wordGroup": [ - "Total", - "detention", - "training" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "0a1207ad-d35d-478f-a77d-c0277c463507", - "label": "Total detention and training order period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "6ab74bbd-3b3b-4658-a6f7-b2be94bd3baa", - "label": "Reparation order", - "shortCode": "REPO", - "level": "O", - "rank": 40700, - "wordGroups": [ - { - "wordGroup": [ - "reparation", - "Order" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8a044676-c316-4d4c-81bf-b52af663be85", - "label": "Number of reparation hours", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30d0efcf-41df-48e8-891d-ebec2d0ef8fc", - "label": "Responsible officer", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label": "Youth offending team to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f8636315-3ef2-4b2e-ae42-92c249c19a49", - "label": "Local authority", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "57227a07-3b72-4f96-907c-fe13b5d7847f", - "label": "Order details", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "47f34fca-6355-4612-881a-07a2121b86ba", - "label": "Supervising court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1083", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4feb6756-ffe5-4c38-8c90-e3c94f81b359", - "label": "Certificate that the case is fit for appeal to the Court of Appeal Criminal Division", - "shortCode": "CERTA", - "level": "O", - "rank": 40800, - "wordGroups": [ - { - "wordGroup": [ - "case", - "fit", - "appeal" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "fae932b8-99cd-45d5-856e-14226aaa67a1", - "label": "Certificate granted Criminal Appeal Act 1968", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4067c886-1d7f-4079-874e-d798c11a8429", - "label": "Conviction / sentence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e5a86c23-5e4f-49e7-8ab0-1827bb77a253", - "label": "Bail granted unconditionally pending appeal to the Court of Appeal Criminal Division", - "shortCode": "UCBCA", - "level": "O", - "rank": 40900, - "wordGroups": [ - { - "wordGroup": [ - "unconditional", - "bail", - "appeal" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "4047", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9b816cc1-7836-44b2-a706-b09ab110f790", - "label": "Bail granted conditionally pending appeal to the Court of Appeal Criminal Division", - "shortCode": "CBBCA", - "level": "O", - "rank": 41000, - "wordGroups": [ - { - "wordGroup": [ - "conditional", - "bail", - "appeal" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f7995d94-bf13-41df-a599-79ead4123aad", - "label": "BASS provider", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "4027", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "75fc296e-d16a-44ec-a04c-c0affb549952", - "label": "Bind over surety", - "shortCode": "BOS", - "level": "O", - "rank": 41100, - "wordGroups": [ - { - "wordGroup": [ - "bind", - "surety" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label": "Duration of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc717d96-41ce-43bd-b0ac-33830c52eea6", - "label": "Surety name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e449e677-80fd-4037-8e84-34e40bba95cd", - "label": "Surety address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label": "Amount of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "440ad312-35f7-42c5-bbae-899a60457abb", - "label": "Defendant or respondent", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1a235ff2-a76f-414c-be31-58db18360810", - "label": "Basis of bind over", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "33bdd72c-430b-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a8ca6ddf-6dbd-4cc8-9699-7902297157df", - "label": "Conduct or activity to be refrained from", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "516dbb2c-d9e1-4186-b458-e3b6f798db58", - "label": "To keep the peace especially towards - name of person", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8c144a05-5804-4478-a419-12bab06748cc", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9b35f4f5-531e-48b4-858d-d81e15e77c23", - "label": "Warrant of arrest without bail on sentence of imprisonment in absence", - "shortCode": "WABSN", - "level": "O", - "rank": 41200, - "wordGroups": [ - { - "wordGroup": [ - "warrant", - "arrest", - "without", - "bail", - "imprisonment" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label": "Process server name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e498ec52-0adf-41cf-89e2-40955a418393", - "label": "Courthouse name", - "welshLabel": "Enw’r adeilad llys", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "4576", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Warrants of arrest", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2360acdb-4667-4f64-ab40-c2383271ea18", - "label": "Surety", - "shortCode": "suret", - "level": "C", - "rank": 41300, - "wordGroups": [ - { - "wordGroup": [ - "suret" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b20eb2e5-a012-4805-9713-8868579a8ec2", - "label": "Surety's name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9f4821b8-a160-40a0-b01e-0b0ba4f4c39e", - "label": "Surety's address", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "921cd8cc-0af1-46a7-8bfe-403a3e831a85", - "label": "Amount of recognisance", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e498ec52-0adf-41cf-89e2-40955a418393", - "label": "Courthouse name", - "welshLabel": "Enw’r adeilad llys", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "19d80e10-7792-4988-bfed-3bb09cd287b5", - "label": "Date of next court hearing", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8f8965c6-fe32-445c-9752-65b36d6f7e08", - "label": "Time of next court hearing", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TIME", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f6125c7b-0f0d-4cae-a98f-54b1e230c485", - "label": "This applies at each time and place until the conclusion of the case", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "3e43af75-59bd-457e-a22a-1f61215a42df", - "label": "Surety declared forfeit (to pay)", - "shortCode": "SFOP", - "level": "O", - "rank": 41400, - "wordGroups": [ - { - "wordGroup": [ - "surety", - "forfeit" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e88fae27-272b-4ab0-b10f-af26d5951c19", - "label": "Date recognizance forfeited", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c1289c3f-b81b-4abb-93cc-546b340312b0", - "label": "Amount to pay", - "welshLabel": "Swm i’w dalu", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3016", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "673d90bc-e8d7-40fd-8ad1-39517526452d", - "label": "Principal declared forfeit (to pay)", - "shortCode": "PFOP", - "level": "O", - "rank": 41500, - "wordGroups": [ - { - "wordGroup": [ - "principal", - "forfeit" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e88fae27-272b-4ab0-b10f-af26d5951c19", - "label": "Date recognizance forfeited", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c1289c3f-b81b-4abb-93cc-546b340312b0", - "label": "Amount to pay", - "welshLabel": "Swm i’w dalu", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3016", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "label": "Community requirement: Exclusion not to leave a place for a period with electronic monitoring", - "shortCode": "ERLPEM", - "level": "O", - "rank": 4800, - "wordGroups": [ - { - "wordGroup": [ - "exclusion", - "electronic monitoring", - "residence", - "Period", - "first" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a597f480-868c-4552-a1b3-70b9906dde09", - "label": "Exclusion and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a597f480-868c-4552-a1b3-70b9906dde09", - "label": "Exclusion and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a597f480-868c-4552-a1b3-70b9906dde09", - "label": "Exclusion and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a597f480-868c-4552-a1b3-70b9906dde09", - "label": "Exclusion and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2fcf2607-6619-4072-a348-77f6afb500f3", - "label": "Place / area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", - "label": "Start date for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f02e3b28-83e7-4650-a8e1-810bbb464bb4", - "label": "Start time for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", - "label": "End date for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "487358be-eccc-46e4-aa8e-e41495638a2c", - "label": "End time for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Contractor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": "contractor", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3106", - "adjournment": false, - "convicted": true, - "qualifier": "BA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", - "version": "2021-11-04T13:58:39.210Z", - "startDate": "2021-11-05", - "label": "Community order England / Wales", - "shortCode": "co", - "level": "O", - "rank": 27300, - "wordGroups": [ - { - "wordGroup": [ - "co", - "Community" - ] - } - ], - "prompts": [ - { - "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", - "label": "Judge reserves breach proceedings", - "welshLabel": "Barnwr yn neilltuo achos torri amodau", - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 500, - "financial": "N", - "reference": "judgeReservesBreachProceedings", - "wordGroup": [ - "reserved" - ], - "userGroups": [ - ], - "courtExtract": "Y", - "jurisdiction": "C", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedOrganisationName", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "OrganisationName", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "supervisingCourtName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 1", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress1", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress2", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 3", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress3", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine3", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 4", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress4", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine4", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 5", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress5", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine5", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified post code", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedPostCode", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "PostCode", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress1", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress2", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "welshLabel": "Swyddog cyfrifol", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "financial": "N", - "reference": "responsibleOfficer", - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "userGroups": [ - ], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label": "End Date", - "welshLabel": "Dyddiad terfyn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "financial": "N", - "reference": "endDate", - "userGroups": [ - ], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "isDurationEndDate": true, - "associatedWithReferenceData": false - }, - { - "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", - "label": "Direction that a failure to comply be dealt with by magistrates' court", - "welshLabel": "Cyfarwyddyd bod llys ynadon yn delio â methiant i gydymffurfio", - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 600, - "financial": "N", - "reference": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", - "userGroups": [ - ], - "courtExtract": "Y", - "jurisdiction": "C", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "welshLabel": "Llys sy’n Goruchwylio", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 300, - "financial": "N", - "reference": "supervisingCourt", - "userGroups": [ - ], - "min": "1", - "max": "120", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "referenceDataKey": "supervisingCourt", - "nameEmail": false, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", - "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", - "welshLabel": "Mae'r diffynnydd yn droseddwr parhaus a ddirwywyd yn flaenorol, mae gwneud gorchymyn cymunedol yn lle gosod dirwy am y drosedd hon er budd cyfiawnder oherwydd", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "financial": "N", - "reference": "persistentOffenderPreviouslyFined", - "userGroups": [ - ], - "min": "1", - "max": "1000", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "REV", - "welshLabel": "REV", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "financial": "N", - "reference": "HTYPE", - "userGroups": [ - ], - "min": "1", - "max": "1000", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - } - ], - "welshLabel": "Gorchymyn cymunedol Cymru / Lloegr", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "Y", - "d20": false, - "dvlaCode": "M", - "cjsCode": "1116", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "libraCode": "COEW", - "lCode": "COEW", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "ruleType": "mandatory" - } - ], - "canBeSubjectOfBreach": true, - "canBeSubjectOfVariation": true, - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "6feb0f2e-8d1e-40c7-af2c-05b28c69e5fc", - "label": "Withdrawn (notice produced)", - "shortCode": "WDRNNOT", - "level": "O", - "rank": 41600, - "wordGroups": [ - { - "wordGroup": [ - "withdrawn", - "notice" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "2063", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "615313b5-0647-4d61-b7b8-6b36265d8929", - "label": "No collection order reason", - "shortCode": "NOCOLLO", - "level": "D", - "rank": 41700, - "wordGroups": [ - { - "wordGroup": [ - "no", - "collection", - "reason" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", - "label": "Reason for no collection order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "4e66b3e0-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "04f4c331-754c-4153-9933-3411843836a4", - "label": "Additional reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Rheswm dros beidio â gwneud Gorchymyn Casglu", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "eb2e4c4f-b738-4a4d-9cce-0572cecb7cb8", - "label": "Withdrawn", - "shortCode": "WDRN", - "level": "O", - "rank": 41800, - "wordGroups": [ - { - "wordGroup": [ - "WDRN" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "2063", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c8326b9e-56eb-406c-b74b-9f90c772b657", - "label": "Withdrawn (recharge at named Court)", - "shortCode": "WDRNOS", - "level": "O", - "rank": 41900, - "wordGroups": [ - { - "wordGroup": [ - "withdrawn", - "recharge", - "court" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "9d3ed4ee-40ad-41c4-9778-a657e8e7605e", - "label": "Court handling re-charged offence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "4010", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "eaecff82-32da-4cc1-b530-b55195485cc7", - "label": "Withdrawn (recharge at unnamed Court)", - "shortCode": "WDRNOU", - "level": "O", - "rank": 42000, - "wordGroups": [ - { - "wordGroup": [ - "withdrawn", - "recharge", - "unnamed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "4010", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "40cf92bc-1dd9-492c-a7c5-d0d337e91994", - "label": "Wasted costs order - defendant to pay", - "shortCode": "WCOD", - "level": "O", - "rank": 42100, - "wordGroups": [ - { - "wordGroup": [ - "wasted", - "Costs" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "d5c1709c-bbe2-46af-b3e0-91fc2562a120", - "label": "Full amount of costs due to creditor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "22ebf965-8a1c-4229-9894-0df7f8117753", - "label": "Major creditor name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", - "qual": null, - "reference": "CREDNAME", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "2505", - "adjournment": false, - "convicted": false, - "qualifier": "IE", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b786ce8a-ce7a-4fa1-94ce-a3d9777574e4", - "label": "Pay costs to named party (inter partes costs)", - "shortCode": "IPC", - "level": "C", - "rank": 42200, - "wordGroups": [ - { - "wordGroup": [ - "pay", - "Costs", - "names" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "247cfcbd-582e-4e79-bdac-567ad04fbfb3", - "label": "Name of party to pay the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2a7dbf0b-4090-4d0b-abcc-fbf38302d11a", - "label": "Amount of costs", - "welshLabel": "Swm y costau", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "13405496-927f-422c-9b32-1b8d90fe7ebe", - "label": "Name of party to receive costs", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68159a17-22a7-4744-815e-7cd539948af1", - "label": "Payment terms", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f5759650-31a1-11e8-b467-0ed5f89f718b", - "label": "Money security forfeited", - "shortCode": "SECMF", - "level": "O", - "rank": 42300, - "userGroups": [], - "prompts": [ - { - "id": "3e124994-31a2-11e8-b467-0ed5f89f718b", - "label": "Amount forfeited", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4f058bd0-31a2-11e8-b467-0ed5f89f718b", - "label": "Youth rehabilitation order England / Wales", - "shortCode": "YRO", - "level": "O", - "rank": 42400, - "wordGroups": [ - { - "wordGroup": [ - "youth", - "Rehabilitation", - "Order" - ] - }, - { - "wordGroup": [ - "YRO" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label": "Judge reserves breach proceedings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "duration": null, - "wordGroup": [ - "Breach" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label": "End Date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label": "Start Date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label": "Youth offending team to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual": null, - "reference": "responsibleOfficer", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "supervisingCourtName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1141", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "574fb809-4473-4a90-ba0f-519a50cfc9ec", - "label": "Youth rehabilitation requirement: Activity - specified", - "shortCode": "YRA1", - "level": "O", - "rank": 42600, - "userGroups": [], - "prompts": [ - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab3c3545-4a09-4a32-b779-33e96763debe", - "label": "Activity", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3102", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "abb95a52-2a75-40c3-8d3f-a1d75a199c47", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Imprisonment", - "shortCode": "imp", - "level": "O", - "rank": 4900, - "resultWording": "section 12(c)", - "wordGroups": [ - { - "wordGroup": [ - "imp" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "imprisonmentPeriod", - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "imprisonmentPeriod", - "isAvailableForCourtExtract": true, - "durationSequence": 1 - }, - { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "imprisonmentPeriod", - "courtExtract": "N", - "durationSequence": 1 - }, - { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "imprisonmentPeriod", - "isAvailableForCourtExtract": false, - "durationSequence": 1 - }, - { - "id": "321c3fd8-ea44-4ccc-b763-bc693ee6be0f", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": "concurrent", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7b5ba551-7adb-4555-93b1-dcb6f027f02f", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": "consecutiveToOffenceNumber", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9637677e-c2d7-4609-a750-ffe90eba9351", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": "whereConsecutiveToAnOffence", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e307f79-d4ca-466e-8c5c-a7d874c89b39", - "label": "Imprisonment reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": "imprisonmentReasons", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "622aa563-a3db-4102-ba7e-21c21cee0110", - "label": "The reasons for this", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual": null, - "reference": "theReasonForThis", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1002", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "55a1cab9-8aa6-41f6-a116-0345198324e6", - "label": "Youth rehabilitation requirement: Activity at specified place", - "shortCode": "YRA2", - "level": "O", - "rank": 42700, - "userGroups": [], - "prompts": [ - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7365f685-e91e-4a5f-8021-34246eb56fcb", - "label": "Place to attend", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d0e31533-c60f-4b90-a98a-4a9678ecf69e", - "label": "Person to go to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3102", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", - "label": "Youth rehabilitation requirement: Activity with residential exercise at a place", - "shortCode": "YRA3", - "level": "O", - "rank": 42800, - "userGroups": [], - "prompts": [ - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "72a96d2c-d41e-426f-a824-6dffc607ecfc", - "label": "Residential exercise place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3102", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c5e204ce-9a2d-4911-96f7-e189565f429e", - "label": "Youth rehabilitation requirement: Activity with residential exercise", - "shortCode": "YRA4", - "level": "O", - "rank": 42900, - "userGroups": [], - "prompts": [ - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "90bc2885-5f74-4b35-ba58-33da0ef1f1df", - "label": "Activity", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3102", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", - "label": "Youth rehabilitation requirement: Activity - engage in activities in accordance with instructions of responsible officer", - "shortCode": "YRA5", - "level": "O", - "rank": 43000, - "userGroups": [], - "prompts": [ - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "96bd9a5b-005c-42ac-b188-fcb786e53b4a", - "label": "Responsible officer may require participation in residential exercise for not more than 7 days", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3102", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "191ec139-10b6-4b18-8a2c-1359425244c3", - "label": "Youth rehabilitation requirement: Activity - engage in residential activity in accordance with instructions of responsible officer", - "shortCode": "YRA6", - "level": "O", - "rank": 43100, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3102", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "536adc8b-1f26-43f0-9659-4bf25e2b42db", - "label": "Youth rehabilitation requirement: Programme", - "shortCode": "YRP1", - "level": "O", - "rank": 43200, - "userGroups": [], - "prompts": [ - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", - "label": "Programme name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7365f685-e91e-4a5f-8021-34246eb56fcb", - "label": "Place to attend", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3103", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "1819e6a0-b13d-47e0-9027-388819457256", - "label": "Youth rehabilitation requirement: Programme with residence", - "shortCode": "YRP2", - "level": "O", - "rank": 43300, - "userGroups": [], - "prompts": [ - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", - "label": "Programme name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4224806d-6caa-48a7-8f80-5ce1ff6baf5b", - "label": "Place to reside", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3103", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "27528205-a237-471b-a487-7943e9284c44", - "label": "Youth rehabilitation requirement: Attendance centre", - "shortCode": "YRAC1", - "level": "O", - "rank": 43400, - "userGroups": [], - "prompts": [ - { - "id": "f13d59b1-88a1-4ad0-972c-e86a22cdd700", - "label": "Number of hours", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Hours" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0995a846-ba03-41b0-bb65-e50323296bdb", - "label": "Attendance Centre name / contact", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "28e2f7e0-8886-4cf6-a828-776849f8d3d4", - "label": "Additional / concurrent to what", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3111", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d3313cb9-c75e-45e4-b833-8479ff80f9ac", - "label": "Youth rehabilitation requirement: Prohibited activity for a period", - "shortCode": "YRPA1", - "level": "O", - "rank": 43500, - "userGroups": [], - "prompts": [ - { - "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label": "Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label": "Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label": "Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label": "Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label": "Prohibited activities", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3104", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", - "label": "Youth rehabilitation requirement: Prohibited activity for specified days", - "shortCode": "YRPA2", - "level": "O", - "rank": 43600, - "userGroups": [], - "prompts": [ - { - "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label": "Prohibited activities", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "939bb78c-6e15-4270-b22b-86fad8021d53", - "label": "Days of the week", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3104", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "72393fb6-77dd-45b2-98f5-6612966de882", - "label": "Committed to young offender institution", - "shortCode": "yoi", - "level": "O", - "rank": 5000, - "wordGroups": [ - { - "wordGroup": [ - "yoi" - ] - }, - { - "wordGroup": [ - "committed", - "young", - "institution" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d4d8f560-8bf0-4fb3-8bb6-ff90c961c20c", - "label": "Custody reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "69c444b1-9e98-4d1c-9128-dc856a00d8a0", - "label": "The reasons for this", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1024", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "fb9fedf8-2b60-496b-8147-168233e81be3", - "label": "Youth rehabilitation requirement: Supervision", - "shortCode": "YRS1", - "level": "O", - "rank": 43700, - "userGroups": [], - "prompts": [ - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "1044", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5ab456c8-d272-4082-87ed-cd1f44a0603a", - "label": "Youth rehabilitation requirement: Unpaid work", - "shortCode": "YRUP1", - "level": "O", - "rank": 43800, - "userGroups": [], - "prompts": [ - { - "id": "83f27f8b-0d02-4f19-bbde-3619b88c06ac", - "label": "Number of hours", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Hours", - "wordGroup": [ - "Hours" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "28e2f7e0-8886-4cf6-a828-776849f8d3d4", - "label": "Additional / concurrent to what", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3101", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "8f979084-dc3b-4e71-bceb-87e30a4fc381", - "label": "Youth rehabilitation requirement: Residence at a specified place", - "shortCode": "YRR1", - "level": "O", - "rank": 43900, - "userGroups": [], - "prompts": [ - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null, - "hidden": false - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null, - "hidden": false - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null, - "hidden": false - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0d0b4ec0-1d58-4d53-99aa-96bb0bd12db1", - "label": "Place to reside at", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd192d80-cf96-403e-9c3b-c0738d5a4a13", - "label": "Responsible office may approve different address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3107", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", - "label": "Youth rehabilitation requirement: Residence with an individual", - "shortCode": "YRR2", - "level": "O", - "rank": 44000, - "userGroups": [], - "prompts": [ - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d611217b-4778-4bec-a056-8c821aa6bc22", - "label": "Name of person to live with", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3107", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "63f8c00a-2115-46a9-94ff-b30bbad0f287", - "label": "Youth rehabilitation requirement: Residence in local authority accommodation", - "shortCode": "YRR3", - "level": "O", - "rank": 44100, - "userGroups": [], - "prompts": [ - { - "id": "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", - "label": "Period of residence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f63f692f-3bfc-4d0f-8e45-acd99b06431c", - "label": "Name of local authority", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "eecf7565-8c4a-4059-9a97-b83a7f975e22", - "label": "Name of person youth must NOT reside with", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3107", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "30bd1b11-5336-486e-aae6-1285ab4c8d65", - "label": "Youth rehabilitation requirement: Mental health treatment", - "shortCode": "YRM1", - "level": "O", - "rank": 44200, - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label": "Medical practitioner / Psychologist", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3108", - "adjournment": false, - "convicted": true, - "qualifier": "HG", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", - "label": "Youth rehabilitation requirement: Mental health treatment residential patient", - "shortCode": "YRM2", - "level": "O", - "rank": 44300, - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label": "Medical practitioner / Psychologist", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fb580537-9d36-4139-811b-77af09547b0d", - "label": "Care home / Hospital", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3108", - "adjournment": false, - "convicted": true, - "qualifier": "HE", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", - "label": "Youth rehabilitation requirement: Mental health treatment non-residential patient", - "shortCode": "YRM3", - "level": "O", - "rank": 44400, - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label": "Medical practitioner / Psychologist", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3108", - "adjournment": false, - "convicted": true, - "qualifier": "HF", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", - "label": "Youth rehabilitation requirement: Drug treatment as a resident", - "shortCode": "YRD1", - "level": "O", - "rank": 44500, - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1b625180-fd12-4422-9150-3185ac672151", - "label": "Name of institution / place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label": "By or under the direction of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3128", - "adjournment": false, - "convicted": true, - "qualifier": "BM", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", - "label": "Youth rehabilitation requirement: Drug treatment as a non-resident", - "shortCode": "YRD2", - "level": "O", - "rank": 44600, - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1b625180-fd12-4422-9150-3185ac672151", - "label": "Name of institution / place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label": "By or under the direction of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3128", - "adjournment": false, - "convicted": true, - "qualifier": "BS", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4e786114-e1c0-42bb-9c52-64edeffa3a3b", - "label": "Youth rehabilitation requirement: Drug testing", - "shortCode": "YRDT1", - "level": "O", - "rank": 44700, - "userGroups": [], - "prompts": [ - { - "id": "da2007ba-6b96-4b88-b518-ca7a27144e2d", - "label": "Minimum number of occasions a month samples are to be provided", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3129", - "adjournment": false, - "convicted": true, - "qualifier": "BT", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "1e78e819-13fc-4e14-a263-c632e4e3c85e", - "label": "Youth rehabilitation requirement: Intoxicating substance treatment as a non-resident", - "shortCode": "YRI1", - "level": "O", - "rank": 44800, - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6aaf3645-0806-4917-ada5-b019c6a606c5", - "label": "Treatment intervals", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1b625180-fd12-4422-9150-3185ac672151", - "label": "Name of institution / place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label": "By or under the direction of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3130", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "03a1cbef-e54a-4a00-bcd5-44350f882ced", - "label": "Youth rehabilitation requirement: Intoxicating substance treatment as a resident", - "shortCode": "YRI2", - "level": "O", - "rank": 44900, - "userGroups": [], - "prompts": [ - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label": "Period of treatment", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1b625180-fd12-4422-9150-3185ac672151", - "label": "Name of institution / place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label": "By or under the direction of", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3130", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a17f9787-ba56-43d4-be5f-6fc91d29646e", - "label": "Youth rehabilitation requirement: Education", - "shortCode": "YRE1", - "level": "O", - "rank": 45000, - "userGroups": [], - "prompts": [ - { - "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label": "Period of education", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label": "Period of education", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label": "Period of education", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label": "Period of education", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6766cc06-f1de-443f-8a6b-2ba64cc222f4", - "label": "Local Authority", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3131", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b986b6ad-816c-44d6-bdf8-0df189732648", - "label": "Youth rehabilitation requirement: Exclusion not to enter for a period", - "shortCode": "YREX1", - "level": "O", - "rank": 45100, - "userGroups": [], - "prompts": [ - { - "id": "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", - "label": "Period of exclusion", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", - "label": "Period of exclusion", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", - "label": "Period of exclusion", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2fcf2607-6619-4072-a348-77f6afb500f3", - "label": "Place / area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6d322ff1-1d95-4053-ac79-19d1b7874f2d", - "label": "End date of exclusion", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3106", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a15102d7-a151-425a-a827-0e35bc159049", - "label": "Youth rehabilitation requirement: Exclusion not to enter with between dates", - "shortCode": "YREX2", - "level": "O", - "rank": 45200, - "userGroups": [], - "prompts": [ - { - "id": "2fcf2607-6619-4072-a348-77f6afb500f3", - "label": "Place / area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ac46c9c8-976d-40ef-a913-85c64a6859bc", - "label": "From date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9e41b95c-c776-4d95-b057-05b7fcb155aa", - "label": "Until date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3106", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "416684ab-755f-4958-ab83-2795a21d62a3", - "label": "Youth rehabilitation requirement: Exclusion not to enter for a period with electronic monitoring", - "shortCode": "YREX3", - "level": "O", - "rank": 45300, - "userGroups": [], - "prompts": [ - { - "id": "e4f5a70e-c140-4993-ba09-e07ae067a758", - "label": "Exclusion and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e4f5a70e-c140-4993-ba09-e07ae067a758", - "label": "Exclusion and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e4f5a70e-c140-4993-ba09-e07ae067a758", - "label": "Exclusion and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2fcf2607-6619-4072-a348-77f6afb500f3", - "label": "Place / area", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", - "label": "Start date for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f02e3b28-83e7-4650-a8e1-810bbb464bb4", - "label": "Start time for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", - "label": "End date for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "487358be-eccc-46e4-aa8e-e41495638a2c", - "label": "End time for tag", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Contractor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": "contractor", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3106", - "adjournment": false, - "convicted": true, - "qualifier": "BA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d79c92bb-c301-491a-b4d2-cb86e473b5af", - "label": "Youth rehabilitation requirement: Curfew with electronic monitoring", - "shortCode": "YRC1", - "level": "O", - "rank": 45400, - "userGroups": [], - "prompts": [ - { - "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label": "Curfew and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "curfewAndElectricalMonitoringPeriod", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label": "Curfew and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "curfewAndElectricalMonitoringPeriod", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label": "Curfew and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "curfewAndElectricalMonitoringPeriod", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f18d4d90-954d-4b27-9e70-f4be9c487b0e", - "label": "Start time", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startTime", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label": "This order lasts until", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd6186a4-d928-47f1-abee-2466b9b80ebf", - "label": "End time", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endTime", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label": "Curfew address, details and timings", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "curfewAddressDetailAndTiming", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Contractor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": "contractor", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3105", - "adjournment": false, - "convicted": true, - "qualifier": "BA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0f7eade6-3602-486c-8491-45e2bdee9960", - "label": "Youth rehabilitation requirement: Curfew", - "shortCode": "YRC2", - "level": "O", - "rank": 45500, - "userGroups": [], - "prompts": [ - { - "id": "82ee7d2f-99b1-476d-8938-2c824549c365", - "label": "Curfew period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "82ee7d2f-99b1-476d-8938-2c824549c365", - "label": "Curfew period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "82ee7d2f-99b1-476d-8938-2c824549c365", - "label": "Curfew period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label": "This order lasts until", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label": "Curfew address, details and timings", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "curfewAddressDetailAndTiming", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3105", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b8654020-f9ed-4707-8757-8db6efb323b9", - "label": "Youth rehabilitation requirement: Curfew with second address", - "shortCode": "YRC3", - "level": "O", - "rank": 45600, - "userGroups": [], - "prompts": [ - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label": "This order lasts until", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label": "Curfew address, details and timings", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "curfewAddressDetailAndTiming", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3105", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "49939c7c-750f-403e-9ce1-f82e3e568065", - "label": "No separate penalty", - "shortCode": "NSP", - "level": "O", - "rank": 5200, - "wordGroups": [ - { - "wordGroup": [ - "NSP" - ] - }, - { - "wordGroup": [ - "seperate", - "penalty" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1057", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "78d6e77c-fb17-46ae-a719-66eacd6281a9", - "label": "Youth rehabilitation requirement: Curfew waived", - "shortCode": "YRC4", - "level": "O", - "rank": 45700, - "userGroups": [], - "prompts": [ - { - "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label": "Judge reserves breach proceedings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1200, - "duration": null, - "wordGroup": [ - "Breach" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "040c7d54-3e56-4ed1-8004-d63ab3cd5128", - "label": "Date excused", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", - "label": "Excused time from", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ba3cd0c4-2bd0-4b02-9636-2064e293466b", - "label": "Excused time to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3a71ea3c-2083-4584-8c73-e7bb0608c468", - "label": "Excused reason", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e4fb2729-c6e4-4d32-b3f0-24285f625a87", - "label": "Other curfew requirements", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label": "End Date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label": "Start Date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label": "Youth offending team to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual": null, - "reference": "responsibleOfficer", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "supervisingCourtName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0b5ce679-b262-436d-8f94-aa78de85022a", - "label": "Youth rehabilitation order with intensive supervision and surveillance England / Wales", - "shortCode": "YROISS", - "level": "O", - "rank": 45800, - "wordGroups": [ - { - "wordGroup": [ - "YROISS" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1142", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ae8c21a9-cf2a-487b-8fae-58d50c7104f0", - "label": "Youth rehabilitation order with fostering England / Wales", - "shortCode": "YROF", - "level": "O", - "rank": 45900, - "wordGroups": [ - { - "wordGroup": [ - "YROF" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", - "label": "Period of fostering", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", - "label": "Period of fostering", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", - "label": "Period of fostering", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label": "Judge reserves breach proceedings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 900, - "duration": null, - "wordGroup": [ - "Breach" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label": "End Date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label": "Start Date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9de7d91b-77a2-4de4-bde0-8481d1f5b42e", - "label": "Name of local authority", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label": "Youth offending team to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual": null, - "reference": "responsibleOfficer", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "supervisingCourtName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1143", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e9bdae5d-5bec-456c-a361-52d0dae89e11", - "label": "Youth rehabilitation order Northern Ireland", - "shortCode": "YRONI", - "level": "O", - "rank": 46000, - "userGroups": [], - "prompts": [ - { - "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label": "Judge reserves breach proceedings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": [ - "Breach" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label": "End Date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label": "Start Date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2216f87f-7e1c-489e-a481-8c941796db49", - "label": "Corresponding Northern Ireland order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label": "Youth offending team to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "555a4eb3-548b-4b1e-84ee-8a000223da2f", - "label": "Relevant officer", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d8162d74-5d0f-4841-a013-eba02a267ae5", - "label": "Petty Sessional District in Northern Ireland", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1141", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "7dadfe69-9486-4edc-84ef-7d4f2e13633e", - "label": "Youth rehabilitation order with intensive supervision and surveillance Northern Ireland", - "shortCode": "YROINI", - "level": "O", - "rank": 46100, - "userGroups": [], - "prompts": [ - { - "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label": "Judge reserves breach proceedings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": [ - "Breach" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label": "End Date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label": "Start Date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2216f87f-7e1c-489e-a481-8c941796db49", - "label": "Corresponding Northern Ireland order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label": "Youth offending team to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "555a4eb3-548b-4b1e-84ee-8a000223da2f", - "label": "Relevant officer", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d8162d74-5d0f-4841-a013-eba02a267ae5", - "label": "Petty Sessional District in Northern Ireland", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1142", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "48646574-8bd7-49f7-9fa1-3aeb60f7c059", - "label": "Youth rehabilitation requirement: Extended activity - specified", - "shortCode": "YREA1", - "level": "O", - "rank": 46200, - "userGroups": [], - "prompts": [ - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e0b217c9-73aa-48b2-b168-56dcd5c1e75c", - "label": "Extended activity", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7365f685-e91e-4a5f-8021-34246eb56fcb", - "label": "Place to attend", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d0e31533-c60f-4b90-a98a-4a9678ecf69e", - "label": "Person to go to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3102", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "79deff01-d3b0-4453-b290-ea34c60ce3e9", - "label": "Youth rehabilitation requirement: Extended activity with residential exercise at a place", - "shortCode": "YREA2", - "level": "O", - "rank": 46300, - "userGroups": [], - "prompts": [ - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "72a96d2c-d41e-426f-a824-6dffc607ecfc", - "label": "Residential exercise place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3102", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", - "label": "Youth rehabilitation requirement: Extended activity with residential exercise", - "shortCode": "YREA3", - "level": "O", - "rank": 46400, - "userGroups": [], - "prompts": [ - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label": "Period of residence exercise", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b85e1325-9fc1-436a-82f6-469f7f21de6a", - "label": "Extended activity", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3102", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", - "label": "Youth rehabilitation requirement: Extended activity - engage in activities in accordance with instructions of responsible officer", - "shortCode": "YREA4", - "level": "O", - "rank": 46500, - "userGroups": [], - "prompts": [ - { - "id": "d47ca68f-ff24-4c43-8870-3c1868022023", - "label": "Number of days", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "96bd9a5b-005c-42ac-b188-fcb786e53b4a", - "label": "Responsible officer may require participation in residential exercise for not more than 7 days", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3102", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Rehabilitation requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f029c131-16b3-4a6d-895d-00b609d858e9", - "label": "Referral order", - "shortCode": "YOP", - "level": "O", - "rank": 46600, - "userGroups": [], - "prompts": [ - { - "id": "4492f39a-37fa-4202-8913-868d88e56b2d", - "label": "Referral period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4492f39a-37fa-4202-8913-868d88e56b2d", - "label": "Referral period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1100, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label": "Total length of contract period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 1400, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label": "Total length of contract period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 1400, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9a6e65d2-ecbc-471f-8433-5f95d478f650", - "label": "Youth Offender Panel name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label": "Youth offending team to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d928400b-8f20-4b9e-aff5-868aafa4cc27", - "label": "Parent/Guardian's name", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f56d8811-15fb-4f82-b91e-fef8fcce3885", - "label": "Parent/Guardian's address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c6677a77-7028-4674-85c9-1cbc2f0e0088", - "label": "This parent / guardian must attend meetings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "29b5ced8-4101-4073-8642-1fa52791098a", - "label": "This parent / guardian may attend meetings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "701fe552-5edd-477d-9fbf-4ed2c6e931e1", - "label": "A local authority representative must attend meetings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0c25627d-07d0-406c-9e8e-08081a649cf5", - "label": "A local authority representative may attend meetings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "848927d6-fcac-4e0d-96f7-92bb4455a162", - "label": "This is a second referral order", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f1619e53-cdb4-4979-8211-7f92134c38c6", - "label": "The Court certified the following facts", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", - "label": "The Court made the following remarks", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1097", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "685cc7e9-8bd1-4559-a05c-d8a7a89f9779", - "label": "Count to remain on file", - "shortCode": "cremfile", - "level": "O", - "rank": 5300, - "wordGroups": [ - { - "wordGroup": [ - "Lie", - "on", - "file" - ] - }, - { - "wordGroup": [ - "cremfile" - ] - }, - { - "wordGroup": [ - "Count", - "remain", - "file" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "2008", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "843f1ba4-af62-4b5b-a5f2-51128b08a128", - "label": "Referral order extended", - "shortCode": "YOPE", - "level": "O", - "rank": 46700, - "userGroups": [], - "prompts": [ - { - "id": "4492f39a-37fa-4202-8913-868d88e56b2d", - "label": "Referral period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4492f39a-37fa-4202-8913-868d88e56b2d", - "label": "Referral period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1000, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label": "Total length of contract period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 1300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label": "Total length of contract period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 1300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9a6e65d2-ecbc-471f-8433-5f95d478f650", - "label": "Youth Offender Panel name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label": "Youth offending team to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d928400b-8f20-4b9e-aff5-868aafa4cc27", - "label": "Parent/Guardian's name", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f56d8811-15fb-4f82-b91e-fef8fcce3885", - "label": "Parent/Guardian's address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c6677a77-7028-4674-85c9-1cbc2f0e0088", - "label": "This parent / guardian must attend meetings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "29b5ced8-4101-4073-8642-1fa52791098a", - "label": "This parent / guardian may attend meetings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "701fe552-5edd-477d-9fbf-4ed2c6e931e1", - "label": "A local authority representative must attend meetings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0c25627d-07d0-406c-9e8e-08081a649cf5", - "label": "A local authority representative may attend meetings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f1619e53-cdb4-4979-8211-7f92134c38c6", - "label": "The Court certified the following facts", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", - "label": "The Court made the following remarks", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1097", - "adjournment": false, - "convicted": true, - "qualifier": "E", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b4cd9c69-ed12-4d23-948c-f35e7386a05f", - "label": "Committed to prison for refusal to be sworn", - "shortCode": "RSWN", - "level": "O", - "rank": 46800, - "wordGroups": [ - { - "wordGroup": [ - "prison", - "refuse", - "evidence" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", - "ruleType": "optional" - } - ] - }, - { - "id": "5f938747-a0aa-47b7-84a5-31fe87cfb15b", - "label": "Committed to prison for refusal to affirm", - "shortCode": "AFM", - "level": "O", - "rank": 46900, - "userGroups": [], - "prompts": [ - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", - "ruleType": "optional" - } - ] - }, - { - "id": "005c9631-a1f1-4222-9702-88fb9368a17c", - "label": "Committed to prison for refusal to produce documents", - "shortCode": "CPRPD", - "level": "O", - "rank": 47000, - "userGroups": [], - "prompts": [ - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "dbb41b1a-a302-485f-96f9-1632c7ce1eff", - "label": "Documents or items to be produced", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", - "ruleType": "optional" - } - ] - }, - { - "id": "381f97b8-b8c8-45b0-a8d6-ac8f58da5493", - "label": "Committed to prison for refusal to give evidence and produce documents", - "shortCode": "EVP", - "level": "O", - "rank": 47100, - "userGroups": [], - "prompts": [ - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "dbb41b1a-a302-485f-96f9-1632c7ce1eff", - "label": "Documents or items to be produced", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", - "ruleType": "optional" - } - ] - }, - { - "id": "c09416e2-327c-11e8-b467-0ed5f89f718b", - "label": "Committed to prison for refusal to give evidence", - "shortCode": "EV", - "level": "O", - "rank": 47200, - "userGroups": [], - "prompts": [ - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "riskFactors", - "courtExtract": "N", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", - "ruleType": "optional" - } - ] - }, - { - "id": "8c67b30a-418c-11e8-842f-0ed5f89f718b", - "label": "Defendant's details changed", - "shortCode": "DDCH", - "level": "D", - "rank": 47300, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "4592", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "98138ec8-5dd3-11e8-9c2d-fa7ae01bbebc", - "label": "Text", - "shortCode": "TEXT", - "level": "O", - "rank": 47400, - "userGroups": [], - "prompts": [ - { - "id": "b4ac2e46-5dd3-11e8-9c2d-fa7ae01bbebc", - "label": "Text", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", - "label": "Reserve Terms Lump sum plus instalments", - "shortCode": "RLSUMI", - "level": "C", - "rank": 47600, - "wordGroups": [ - { - "wordGroup": [ - "pay", - "reserve", - "terms", - "lump", - "sum", - "instalments" - ] - }, - { - "wordGroup": [ - "reserve", - "terms", - "lump", - "sum", - "instalments" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8e235a65-5ea2-4fff-ba3b-6cdb74195436", - "label": "Lump sum amount", - "welshLabel": "Cyfanswm y lwmp swm", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "LSA", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1393acda-7a35-4d65-859d-6298e1470cf1", - "label": "Instalment amount", - "welshLabel": "Swm y rhandaliad", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "IAMT", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b487696e-dfc9-4c89-80d3-337a4319e925", - "label": "Instalment start date", - "welshLabel": "Dyddiad cychwyn y rhandaliad", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f2a61e80-c13e-4f44-8e91-8ce23e85596b", - "label": "Payment frequency", - "welshLabel": "Amlder y taliadau", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual": null, - "reference": "PF", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Lwmp swm a rhandaliadau - Telerau Wrth Gefn", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Payment terms", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2236c06f-ad8e-4620-abbe-0ee214fa885c", - "label": "Count quashed", - "shortCode": "CQUASH", - "level": "O", - "rank": 5400, - "wordGroups": [ - { - "wordGroup": [ - "Count", - "quashed" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", - "label": "Reserve Terms Instalments only", - "shortCode": "RINSTL", - "level": "C", - "rank": 47700, - "wordGroups": [ - { - "wordGroup": [ - "pay", - "reserve", - "terms", - "instalments" - ] - }, - { - "wordGroup": [ - "reserve", - "terms", - "instalments" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1393acda-7a35-4d65-859d-6298e1470cf1", - "label": "Instalment amount", - "welshLabel": "Swm y rhandaliad", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "IAMT", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f2a61e80-c13e-4f44-8e91-8ce23e85596b", - "label": "Payment frequency", - "welshLabel": "Amlder y taliadau", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual": null, - "reference": "PF", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e091af2e-43d0-495d-b3b0-432010358a45", - "label": "Instalment start date", - "welshLabel": "Dyddiad cychwyn y rhandaliad", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "ISTD", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Rhandaliadau yn unig - Telerau Wrth Gefn", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Payment terms", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", - "label": "Lump sum plus instalments", - "shortCode": "LUMSI", - "level": "C", - "rank": 47800, - "wordGroups": [ - { - "wordGroup": [ - "pay", - "lump", - "sum", - "instalments" - ] - }, - { - "wordGroup": [ - "lump", - "sum", - "instalments" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "11ba492a-e2ad-11e8-9f32-f2801f1b9fd1", - "label": "Lump sum amount", - "welshLabel": "Cyfanswm y lwmp swm", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "LSA", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1393acda-7a35-4d65-859d-6298e1470cf1", - "label": "Instalment amount", - "welshLabel": "Swm y rhandaliad", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "IAMT", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fb4f761c-29d0-4a8e-a947-3debf281dab0", - "label": "Payment frequency following lump sum", - "welshLabel": "Amlder y taliadau yn dilyn lwmp swm", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual": null, - "reference": "PF", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e091af2e-43d0-495d-b3b0-432010358a45", - "label": "Instalment start date", - "welshLabel": "Dyddiad cychwyn y rhandaliad", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "ISTD", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", - "label": "Parent / Guardian to pay", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "PARENT_GAURDIAN_TO_PAY", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", - "label": "Number of days in default", - "welshLabel": "Nifer y diwrnodau lle erys y ddyled heb ei thalu", - "resultPromptRule": "optional", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "DID", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d0f08c9c-e1e5-46eb-b573-f1728bc51414", - "label": "Payment card required", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "PAYMENT_CARD_REQUIRED", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Lwmp swm a rhandaliadau", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Payment terms", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", - "label": "Instalments only", - "shortCode": "INSTL", - "level": "C", - "rank": 47900, - "wordGroups": [ - { - "wordGroup": [ - "pay", - "instalments", - "only" - ] - }, - { - "wordGroup": [ - "instalments", - "only" - ] - }, - { - "wordGroup": [ - "INSTL" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1393acda-7a35-4d65-859d-6298e1470cf1", - "label": "Instalment amount", - "welshLabel": "Swm y rhandaliad", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "IAMT", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f2a61e80-c13e-4f44-8e91-8ce23e85596b", - "label": "Payment frequency", - "welshLabel": "Amlder y taliadau", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual": null, - "reference": "PF", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e091af2e-43d0-495d-b3b0-432010358a45", - "label": "Instalment start date", - "welshLabel": "Dyddiad cychwyn y rhandaliad", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "ISTD", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", - "label": "Parent / Guardian to pay", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "PARENT_GAURDIAN_TO_PAY", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", - "label": "Number of days in default", - "welshLabel": "Nifer y diwrnodau lle erys y ddyled heb ei thalu", - "resultPromptRule": "optional", - "type": "INT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "DID", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d0f08c9c-e1e5-46eb-b573-f1728bc51414", - "label": "Payment card required", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "PAYMENT_CARD_REQUIRED", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Rhandaliadau yn unig", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Payment terms", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4871697d-6dd1-4da2-8894-707e6b13c361", - "version": "2021-02-25T12:43:06.714Z", - "startDate": "2021-02-26", - "label": "Reserve Terms", - "shortCode": "RT", - "level": "D", - "rank": 8500, - "userGroups": [ - ], - "welshLabel": "Telerau Wrth Gefn", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "I", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": true, - "alwaysPublished": false, - "jurisdiction": "B", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", - "ruleType": "oneOf" - } - ], - "isAvailableForCourtExtract": false, - "isBooleanResult": false - }, - { - "id": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", - "version": "2022-01-10T09:35:43.154Z", - "startDate": "2022-01-11", - "label": "Application made for benefit deductions", - "shortCode": "ABDC", - "level": "D", - "rank": 600, - "wordGroups": [ - { - "wordGroup": [ - "application", - "benefit", - "deductions" - ] - }, - { - "wordGroup": [ - "ABDC" - ] - } - ], - "prompts": [ - { - "id": "91687bb9-d0ca-44a7-ada0-b89b71b89b8e", - "label": "DWP AP number", - "welshLabel": "Rhif AP DWP", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "financial": "N", - "reference": "dWPAPNumber", - "userGroups": [ - "CPS", - "Defence", - "Judiciary", - "NCES", - "Probation", - "Prosecuting Authorities", - "YOTs" - ], - "min": "0", - "max": "10", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "8273d5ba-680e-11e8-adc0-fa7ae01bbebc", - "label": "Reason", - "welshLabel": "Rheswm", - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 100, - "financial": "N", - "reference": "reason", - "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", - "userGroups": [ - ], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - } - ], - "welshLabel": "Cais wedi'i wneud am ddidyniadau o fudd-dal", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "N", - "d20": false, - "cjsCode": "1514", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "M", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "4871697d-6dd1-4da2-8894-707e6b13c361", - "ruleType": "mandatory" - } - ], - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "bdb32555-8d55-4dc1-b4b6-580db5132496", - "label": "Attachment of earnings order", - "shortCode": "AEOC", - "level": "C", - "rank": 48100, - "wordGroups": [ - { - "wordGroup": [ - "attachment", - "earnings", - "Order" - ] - }, - { - "wordGroup": [ - "AEOC" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a289b1bd-06c8-4da3-b117-0bae6017857c", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "485f7d22-718c-4f47-bbd5-f8d934417a03", - "label": "Employer's name", - "welshLabel": "Enw eich cyflogwr", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "employerName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "86854563-b404-4cd4-9c05-50f1e61a0bfe", - "label": "Employer's address Line 1", - "welshLabel": "Llinell gyntaf cyfeiriad y cyflogwr", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "employerAddress1", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ef87b9fe-1d9d-46a2-b094-ce5ba24a9835", - "label": "Employer's address Line 2", - "welshLabel": "Ail linell cyfeiriad y cyflogwr", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "employerAddress2", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "df1d55f8-29dd-42d2-8f99-cb4d369cb38b", - "label": "Employer's address Line 3", - "welshLabel": "Trydedd linell cyfeiriad y cyflogwr", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "employerAddress3", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d3d8e5dc-4ced-4d57-bcbb-5de8f91a580a", - "label": "Employer's address Line 4", - "welshLabel": "Pedwaredd llinell cyfeiriad y cyflogwr", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "employerAddress4", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a812f1c7-96df-4d8d-9684-25e4e227b2e2", - "label": "Employer's address Line 5", - "welshLabel": "Pumed llinell cyfeiriad y cyflogwr", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "employerAddress5", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4ff32fe8-5508-4b7e-8e6f-b3e79763a9fe", - "label": "Employer's post code", - "welshLabel": "Cod post cyfeiriad y cyflogwr", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "employerPostCode", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "eb1d0fdc-2e51-4e98-9f6e-ee0daa14c157", - "label": "Employee reference number", - "welshLabel": "Cyfeirnod y cyflogai", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "employerReferenceNumber", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Gorchymyn Atafaelu Enillion", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1511", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "76d43772-0660-4a33-b5c6-8f8ccaf6b4e3", - "label": "Costs", - "shortCode": "FCOST", - "level": "C", - "rank": 48200, - "wordGroups": [ - { - "wordGroup": [ - "FCOST" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "db261fd9-c6bb-4e10-b93f-9fd98418f7b0", - "label": "Amount of costs", - "welshLabel": "Swm y costau", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "AOC", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "22ebf965-8a1c-4229-9894-0df7f8117753", - "label": "Major creditor name", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "FIXL", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", - "qual": null, - "reference": "CREDNAME", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "043faecf-e97c-4daf-9763-4b755d941b45", - "label": "Minor creditor title", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "202afd61-e9fb-4bc7-aad6-f0a5799406e2", - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", - "label": "Minor creditor company name", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", - "label": "Minor creditor surname", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", - "label": "Minor creditor initials", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "41576571-5573-498b-a9e9-eee24f7a67fa", - "label": "Minor creditor forename(s)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", - "label": "Minor creditor address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", - "label": "Minor creditor postcode", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - } - ], - "welshLabel": "Costau", - "isAvailableForCourtExtract": true, - "financial": true, - "category": "F", - "cjsCode": "3011", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c514dcec-804c-11e8-adc0-fa7ae01bbebc", - "label": "Adjournment reason: Equivocal plea", - "shortCode": "EP", - "level": "O", - "rank": 48300, - "wordGroups": [ - { - "wordGroup": [ - "adjournment", - "equivocal", - "plea" - ] - }, - { - "wordGroup": [ - "adjournment", - "equivocal" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "welshLabel": "Rheswm dros ohirio: Ple amhendant", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "GC", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Adjournment reasons", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", - "label": "Adjournment reason: To attend or to return the plea form sent with the summons", - "shortCode": "AP", - "level": "O", - "rank": 48400, - "wordGroups": [ - { - "wordGroup": [ - "adjournment", - "return" - ] - }, - { - "wordGroup": [ - "adjournment", - "attend" - ] - }, - { - "wordGroup": [ - "adjournment", - "appear", - "proceed", - "prove", - "Absence" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "welshLabel": "Rheswm dros ohirio: I fynychu neu i ddychwelyd y ffurflen pledio a anfonwyd gyda'r wŷs", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "DM", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Adjournment reasons", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Next hearing in magistrates' court", - "shortCode": "NHMC", - "level": "O", - "rank": 48500, - "wordGroups": [ - { - "wordGroup": [ - "NHMC" - ] - }, - { - "wordGroup": [ - "next", - "hearing", - "magistrates" - ] - }, - { - "wordGroup": [ - "adjournment", - "magistrates" - ] - } - ], - "userGroups": [], - "resultTextTemplate": "hearing on {HDATE}[ at {timeOfHearing}][ in {HCROOM},] {HCHOUSE~Name}", - "prompts": [ - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HEST", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", - "label": "Booking reference", - "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": true, - "associateToReferenceData": false, - "sequence": 700, - "userGroups": [], - "courtExtract": "N", - "financial": "N", - "jurisdiction": "M", - "min": "1", - "max": "50", - "reference": "bookingReference" - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 1", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, - "financial": "N", - "reference": "hCHOUSEAddress1", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine1", - "nameEmail": false, - "associatedWithReferenceData": true - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, - "financial": "N", - "reference": "hCHOUSEAddress2", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine2", - "nameEmail": false, - "associatedWithReferenceData": true - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 3", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, - "financial": "N", - "reference": "hCHOUSEAddress3", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine3", - "nameEmail": false, - "associatedWithReferenceData": true - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 4", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, - "financial": "N", - "reference": "hCHOUSEAddress4", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine4", - "nameEmail": false, - "associatedWithReferenceData": true - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 5", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, - "financial": "N", - "reference": "hCHOUSEAddress5", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine5", - "nameEmail": false, - "associatedWithReferenceData": true - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse post code", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, - "financial": "N", - "reference": "hCHOUSEPostCode", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "PostCode", - "nameEmail": false, - "associatedWithReferenceData": true - }, - { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "welshLabel": "Ystafell Llys", - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "financial": "N", - "reference": "HCROOM", - "userGroups": [ - ], - "min": "1", - "max": "99", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "referenceDataKey": "HCROOM", - "nameEmail": false, - "associatedWithReferenceData": true - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse organisation name", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, - "financial": "N", - "reference": "hCHOUSEOrganisationName", - "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "OrganisationName", - "nameEmail": false, - "associatedWithReferenceData": true - }, - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HEST", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Hours", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HEST", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Minutes", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HEST", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", - "label": "Date of hearig", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HDATE", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "dfac671c-5b85-42a1-bb66-9aeee388a08d", - "label": "Time of hearing", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HTIME", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", - "label": "Time of hearing", - "resultPromptRule": "optional", - "type": "TIME", - "sequence": 200, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "Y", - "financial": "N", - "jurisdiction": "B", - "reference": "timeOfHearing" - }, - { - "id": "5f507153-6dc9-4ec0-94db-c821eff333f1", - "label": "Courtroom", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HCROOM", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse name", - "welshLabel": "Enw’r adeilad llys", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HCHOUSE", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HTYPE", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "sequence": 15, - "mandatory": false, - "userGroups": [ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "reference": "totalCustodialPeriod", - "type": "TXT", - "welshLabel": "TBD" - }, - { - "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label": "End Date", - "mandatory": false, - "type": "DATE", - "sequence": 16, - "userGroups": [ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "reference": "endDate", - "welshLabel": "TBD" - }, - { - "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", - "label": "First review date", - "reference": "firstReviewDate", - "mandatory": false, - "type": "DATE", - "sequence": 17, - "userGroups": [ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "welshLabel": "TBD" - }, - { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "HTYPE", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f622f008-f8e7-4f34-a7df-df85a7ed4d47", - "label": "First review time", - "reference": "firstReviewTime", - "mandatory": false, - "type": "TIME", - "sequence": 18, - "userGroups": [ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "welshLabel": "TBD" - } - ], - "welshLabel": "Ni wnaeth y Llys barhau â’r treial yn absenoldeb y diffynnydd", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Next hearing", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - {"id":"d278650c-e429-11e8-9f32-f2801f1b9fd1","version":"2024-04-09T14:34:40.618Z","startDate":"2024-04-10","label":"Adjournment","shortCode":"A","level":"O","rank":194200,"wordGroups":[{"wordGroup":["A","adjournment"]}],"prompts":[{"id":"9d4df7b9-bd70-4142-86be-8023531a1d95","label":"THIS NOTICE IS FOR PERSONAL SERVICE","welshLabel":"Mae'r hysbysiad hwn ar gyfer gwasanaeth personol","resultPromptRule":"optional","type":"BOOLEAN","sequence":300,"financial":"N","reference":"tHISNOTICEISFORPERSONALSERVICE","wordGroup":["Service"],"userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"61f951c3-f18d-4a44-ae4a-0cad4efb4133","label":"Defendant to attend the next hearing","welshLabel":"Diffynnydd i fynychu’r gwrandawiad nesaf","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":100,"financial":"N","reference":"defendantToAttendTheNextHearing","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"150a22a8-05d0-4be1-ada7-a0d512a63b5d","label":"Defendant excused attendance at next hearing","welshLabel":"Nid oes rhaid i'r diffynnydd fod yn bresennol yn y gwrandawiad nesaf","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":200,"financial":"N","reference":"defendantExcusedAttendanceAtNextHearing","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false}],"welshLabel":"Gohiriad","financial":"N","unscheduled":false,"adjournment":"N","policeSubjectLineTitle":"Adjourned","category":"I","urgent":false,"convicted":"N","d20":false,"cjsCode":"4506","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":false,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","lCode":"A","resultWording":"","resultDefinitionRules":[{"childResultDefinitionId":"f00359b5-7303-403b-b59e-0b1a1daa89bc","ruleType":"mandatory"},{"childResultDefinitionId":"7fc17a01-2f5a-4433-aae9-28e0c959f73b","ruleType":"mandatory"}],"canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"Adjourned for %NEXH%. Reason: %ADJR%. {defendantToAttendTheNextHearing}{defendantExcusedAttendanceAtNextHearing}.","isAvailableForCourtExtract":true,"isBooleanResult":false}, - { - "id": "5ec54bfb-cde0-4ad2-bf87-d266e54fe072", - "label": "Indictment to remain on file", - "shortCode": "IREMFILE", - "level": "O", - "rank": 5500, - "wordGroups": [ - { - "wordGroup": [ - "indictment", - "remain", - "file" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "2008", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2852b770-a7ad-11e8-98d0-529269fb1459", - "label": "Forfeiture and destruction", - "shortCode": "FDEST", - "level": "O", - "rank": 7700, - "wordGroups": [ - { - "wordGroup": [ - "forfeiture", - "destruction" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "13efdd20-a7ae-11e8-98d0-529269fb1459", - "label": "Property to be forfeited and destroyed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7cca9a0e-b11f-4863-9fec-45b9b13f946b", - "label": "Forfeiture and destruction ordered under", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "26d4c112-a7ae-11e8-98d0-529269fb1459", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4a30821a-a7b6-11e8-98d0-529269fb1459", - "label": "Responsible for destroying property", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ea26f773-0a91-4526-b4ad-84d07b5bf940", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3135", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Forfeiture and deprivation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", - "version": "2021-02-25T12:41:20.415Z", - "startDate": "2021-02-26", - "label": "Pay by date", - "shortCode": "PDATE", - "level": "D", - "rank": 76700, - "wordGroups": [ - { - "wordGroup": [ - "PDATE" - ] - }, - { - "wordGroup": [ - "PBD", - "pay", - "full", - "date" - ] - } - ], - "prompts": [ - { - "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", - "label": "Parent / Guardian to pay", - "welshLabel": "Rhiant / Gwarcheidwad i dalu", - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "financial": "N", - "reference": "PARENT_GAURDIAN_TO_PAY", - "userGroups": [ - ], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "ee7d253a-c629-11e8-a355-529269fb1459", - "label": "Date to pay in full by", - "welshLabel": "Dyddiad terfyn ar gyfer talu'r swm llawn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "financial": "N", - "reference": "PBD", - "userGroups": [ - ], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", - "label": "Number of days in default", - "welshLabel": "Nifer y diwrnodau y mae'r ddyled heb ei thalu", - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "financial": "N", - "reference": "DID", - "userGroups": [ - ], - "min": "1", - "max": "999", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - } - ], - "welshLabel": "Dyddiad terfyn ar gyfer talu", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Payment terms", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "M", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "de946ddc-ad77-44b1-8480-8bbc251cdcfb", - "label": "Court house detention until court rises", - "shortCode": "FIDICI", - "level": "O", - "rank": 48800, - "wordGroups": [ - { - "wordGroup": [ - "court", - "rises", - "until", - "detention" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "9be231c5-e4e3-4294-872e-e0ad6c9a39a4", - "label": "Type of detention", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "5769e88c-82c6-457d-9a5e-652a96ec105c", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c92fdcfc-ac7d-4692-a475-de88467f6fcf", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label": "Total amount enforced", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "TOTENF", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "1509", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "isDeemedServed": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5c023b16-e79c-4eb5-9673-e23accbeb35b", - "label": "Court house detention until time", - "shortCode": "FIDICTI", - "level": "O", - "rank": 48900, - "wordGroups": [ - { - "wordGroup": [ - "court", - "Time", - "until", - "detention" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "0fd18b3d-d55e-4e6c-adfe-e45ad2241e5e", - "label": "Time of release", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label": "Total amount enforced", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "TOTENF", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "1509", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0e390ae0-8f3c-4735-8c0d-c16e8962537a", - "label": "Detention in police station", - "shortCode": "FIDIPI", - "level": "O", - "rank": 49000, - "wordGroups": [ - { - "wordGroup": [ - "detention", - "police", - "station" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a0e5f5aa-ce4d-41fa-94ba-c2fb293659b4", - "label": "Time of release (by 8pm)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label": "Reason for decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6d2296be-3631-4a13-bfef-6be1d950cf20", - "label": "Police Force providing police station to detain defendant", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label": "Total amount enforced", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "TOTENF", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "1509", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "61c246d8-f771-4420-9e02-30f34c0305b1", - "label": "Community order amended - supervising court or end date", - "shortCode": "COA", - "level": "O", - "rank": 49100, - "wordGroups": [ - { - "wordGroup": [ - "Community", - "Order", - "amended" - ] - }, - { - "wordGroup": [ - "supervising", - "court" - ] - }, - { - "wordGroup": [ - "end", - "date" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "0eba630e-a486-439f-8d76-b49b1363067c", - "label": "Court that made the original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f5f1f9ac-f624-4d44-9ad0-7c1e586eee3a", - "label": "Original end date of order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8a4af2f8-ee31-481e-847d-eb295896b975", - "label": "New supervising court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8bad6b87-9ad5-418f-b3a3-90386d7c2769", - "label": "Compliance date extended. All requiremets to be completed by", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1032", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4a026ff3-e1aa-407e-aafa-015723c1dbd0", - "label": "Community order amended", - "shortCode": "COV", - "level": "O", - "rank": 49300, - "wordGroups": [ - { - "wordGroup": [ - "Community", - "Order", - "amend" - ] - }, - { - "wordGroup": [ - "Requirement", - "cancelled" - ] - }, - { - "wordGroup": [ - "new", - "Requirement" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "0eba630e-a486-439f-8d76-b49b1363067c", - "label": "Court that made the original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "39355876-d028-48fa-82d8-ccedbe4312f8", - "label": "Date original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "47f34fca-6355-4612-881a-07a2121b86ba", - "label": "Supervising court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1b12bc7b-dfc7-41b7-9c4e-8c6b53b53274", - "label": "Community requirements cancelled", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "faef913f-70ae-44cf-81dd-356c6dc41f0c", - "label": "The court made new community requirement(s)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", - "label": "The court amended a community requirement(s)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f5e438d5-a7de-4be8-9a7d-3e07b8584f6a", - "label": "Original community requirements to continue", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "361cee65-0550-4c9a-9fbd-3a234e9431f1", - "label": "The end date of the order has been changed and the requirements must be complied with by", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06356516-5b1a-4036-afc5-2bb44a446a1a", - "label": "The end date of the order has not been changed and the requirements must be complied with by", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "27bf0204-a185-4e82-8c34-7317287513c8", - "label": "Responsible officer for the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", - "label": "Reason for change", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "40d90a02-53a9-43ef-a96f-da9ad1b476b7", - "label": "The court made a new or varied an electronic monitoring requirement", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 1300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "40f05056-4c54-4251-a7a1-666197409f20", - "label": "This is the first notification to contractor", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c53e274f-ecbf-476e-971c-103a1d5a72d7", - "label": "This is a variation of an electronic monitoring requirement, the original order date was", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 1500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1933ca78-459c-47f0-b4a9-1a4507e19af6", - "label": "This is an additional electronic monitoring requirement, the original order date was", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 1600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6be2c968-d9b8-40fe-ba4d-f8d3c06ea129", - "label": "This is a continuation of an electronic monitoring reequirement", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1030", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "fb1a3668-4675-4541-ad61-7ca3c24ca0cc", - "label": "Conviction quashed", - "shortCode": "QC", - "level": "O", - "rank": 50000, - "wordGroups": [ - { - "wordGroup": [ - "conviction", - "quashed" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "80dd4486-fa86-41f0-b09b-bad84b55f61c", - "label": "Date appeal heard", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "CADATE", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "55f15ecf-ea80-40f4-848d-29e7b8d73ae2", - "label": "Sentence varied", - "shortCode": "SV", - "level": "O", - "rank": 50100, - "wordGroups": [ - { - "wordGroup": [ - "sentence", - "varied" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "80dd4486-fa86-41f0-b09b-bad84b55f61c", - "label": "Date appeal heard", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "CADATE", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "02c8aef6-601a-46e8-bbe5-d614e0da764a", - "label": "Special measures direction: Witness to give evidence by means of a live link", - "shortCode": "SMLL", - "level": "C", - "rank": 50300, - "wordGroups": [ - { - "wordGroup": [ - "special", - "measures", - "direction", - "live", - "link" - ] - }, - { - "wordGroup": [ - "SMD", - "live", - "link" - ] - }, - { - "wordGroup": [ - "SMD", - "witness" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label": "Name of witness", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "nameOfWitness", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Special measures", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "2f08896a-07b0-45b9-b7da-f919b8520480", - "label": "Indictment quashed", - "shortCode": "IQUASH", - "level": "O", - "rank": 5600, - "wordGroups": [ - { - "wordGroup": [ - "indictment", - "quashed" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Special measures direction: A video recording be admitted of the evidence in chief of the interview", - "shortCode": "SMVR", - "level": "C", - "rank": 50400, - "wordGroups": [ - { - "wordGroup": [ - "special", - "measures", - "direction", - "video" - ] - }, - { - "wordGroup": [ - "SMD", - "video" - ] - }, - { - "wordGroup": [ - "SMD", - "in", - "chief" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", - "label": "In respect of witness name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "inRespectOfWitnessName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "79b64864-8c39-4724-be94-e2db853db393", - "label": "Date of interview", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ef04068f-86d0-42a8-8fcf-ca12f340d57d", - "label": "The whole of the video recording disclosed to be admitted", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c472c5b7-9e50-4390-ae59-78d6ca607231", - "label": "Only the following specified part(s) of the video interview to be admitted, namely", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5c2c471c-08a0-46e5-8368-80d819fe4d19", - "label": "Cross examination of the witness and re-examination of the witness to be recorded by means of a video recording and such recording to be admitted in accordance with section 28 of the Youth Justice and Criminal Evidence Act 1999", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Special measures", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b172d954-5aca-447b-b19e-2c836053b0af", - "label": "Special measures direction: The recording must be made in the presence of specified person(s)", - "shortCode": "SMVS", - "level": "C", - "rank": 50500, - "wordGroups": [ - { - "wordGroup": [ - "special", - "measures", - "direction", - "recording", - "presence" - ] - }, - { - "wordGroup": [ - "SMD", - "recording", - "presence" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ef4d6fb2-d61c-4732-9e2c-b1c726be0f93", - "label": "Name(s)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Special measures", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "41a18cc7-3106-4e84-8f66-ad52fe6dee75", - "label": "Special measures direction: A video recording is not to be admitted because the requirements for its admission have not been complied with", - "shortCode": "SMVN", - "level": "C", - "rank": 50600, - "wordGroups": [ - { - "wordGroup": [ - "special", - "measures", - "direction", - "video", - "recording" - ] - }, - { - "wordGroup": [ - "SMD", - "video", - "recording" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", - "label": "In respect of witness name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "inRespectOfWitnessName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "79b64864-8c39-4724-be94-e2db853db393", - "label": "Date of interview", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Special measures", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ee74631f-c144-4a25-8a93-0253b98a7642", - "label": "Special measures direction: Witness be prevented from seeing the defendant by means of a screen", - "shortCode": "SMDW", - "level": "C", - "rank": 50700, - "wordGroups": [ - { - "wordGroup": [ - "special", - "measures", - "direction", - "screen" - ] - }, - { - "wordGroup": [ - "SMD", - "screen" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label": "Name of witness", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "nameOfWitness", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Special measures", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "702b365f-dde6-4543-8fb5-1324c6a84ec4", - "label": "Special measures direction: Witness be prevented from seeing the defendant by specified means", - "shortCode": "SMSM", - "level": "C", - "rank": 50800, - "wordGroups": [ - { - "wordGroup": [ - "special", - "measures", - "direction", - "witness", - "prevented" - ] - }, - { - "wordGroup": [ - "SMD", - "witness", - "prevented" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label": "Name of witness", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "nameOfWitness", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "62abea0f-310d-449a-bc9b-632796dec2d6", - "label": "Specified means", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Special measures", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", - "label": "Special measures direction: The examination is to be conducted through an intermediary", - "shortCode": "SMI", - "level": "C", - "rank": 50900, - "wordGroups": [ - { - "wordGroup": [ - "special", - "measures", - "direction", - "intermediary" - ] - }, - { - "wordGroup": [ - "SMD", - "intermediary" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", - "label": "In respect of witness name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "inRespectOfWitnessName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "eef5d23c-b75e-4601-9196-02d4ec70bb27", - "label": "Name of intermediary", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Special measures", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", - "label": "Special measures direction: Witness to give evidence in private", - "shortCode": "SMP", - "level": "C", - "rank": 51000, - "wordGroups": [ - { - "wordGroup": [ - "special", - "measures", - "direction", - "witness", - "private" - ] - }, - { - "wordGroup": [ - "SMD", - "witness", - "private" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label": "Name of witness", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "nameOfWitness", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8683b918-c2bd-49da-bc0a-844659e097e2", - "label": "This direction does not apply to one member of the press, namely", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Special measures", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "52218899-8f26-45cd-ae30-aeff5c189261", - "label": "Special measures direction: Wigs and gowns shall not be worn for the duration of the evidence of a specified witness", - "shortCode": "SMWG", - "level": "C", - "rank": 51100, - "wordGroups": [ - { - "wordGroup": [ - "special", - "measures", - "direction", - "wigs", - "gowns" - ] - }, - { - "wordGroup": [ - "SMD", - "wigs", - "gowns" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label": "Name of witness", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "nameOfWitness", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Special measures", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "633d192a-cc90-484e-aa1d-318816b7d44a", - "label": "Special measures direction: The accused \"in person\" shall not be permitted to cross-examine a specified witness", - "shortCode": "SMIP", - "level": "C", - "rank": 51200, - "wordGroups": [ - { - "wordGroup": [ - "special", - "measures", - "direction", - "in", - "person", - "cross", - "examine" - ] - }, - { - "wordGroup": [ - "SMD", - "in", - "person", - "cross", - "examine" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label": "Name of witness", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "nameOfWitness", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca43ea08-3a2b-49cf-bb7f-ac350cc519d6", - "label": "The court appoints a specified person for the purpose of cross examination of the witness, namely", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Special measures", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "67a91dc8-f4f9-4f80-b644-e219326045cc", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Special measures direction: Witness to be provided with an aid to commumication", - "shortCode": "SMAC", - "level": "C", - "rank": 51300, - "wordGroups": [ - { - "wordGroup": [ - "special", - "measures", - "direction", - "aid" - ] - }, - { - "wordGroup": [ - "SMD", - "aid" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label": "Name of witness", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "nameOfWitness", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f539367f-b941-4873-9567-a235ffb81d85", - "label": "Device", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "device", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Special measures", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4850390f-13b3-4aa0-bae5-2dd0427b97eb", - "label": "Discontinued", - "shortCode": "disc", - "level": "O", - "rank": 5700, - "wordGroups": [ - { - "wordGroup": [ - "disc" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "2053", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", - "label": "The court directs that evidence relating to the bad character of the defendant be admitted in the proceedings", - "shortCode": "BCD", - "level": "C", - "rank": 51500, - "wordGroups": [ - { - "wordGroup": [ - "bad", - "character", - "direction", - "admitted", - "evidence" - ] - }, - { - "wordGroup": [ - "BCD", - "admitted" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bad character", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "fe77f387-ee64-4cef-8e95-c0776b9799e7", - "label": "The court gives leave for evidence of the bad character of a person to be admitted in the proceedings", - "shortCode": "BCO", - "level": "C", - "rank": 51600, - "wordGroups": [ - { - "wordGroup": [ - "bad", - "character", - "direction", - "leave" - ] - }, - { - "wordGroup": [ - "BCD", - "leave" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "6c27cf1e-8f99-4344-b783-62f527882256", - "label": "Name of person", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label": "Reasons for making the direction", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Bad character", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "27bbe7cb-5884-4b68-9c1e-a3373cce6ce6", - "label": "Suspended sentence order of imprisonment amended - supervising court or operational period or supervision period", - "shortCode": "SUSPA", - "level": "O", - "rank": 51700, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "sentence", - "amended", - "supervising" - ] - }, - { - "wordGroup": [ - "SUSPA" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label": "Period of imprisonment previously imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label": "Period of imprisonment previously imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label": "Period of imprisonment previously imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label": "Period of imprisonment previously imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label": "Original operational period (time suspended for)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label": "Original operational period (time suspended for)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label": "The operational period (period of suspension) is extended to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 600, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label": "The operational period (period of suspension) is extended to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 600, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", - "label": "Specify court that made the original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c6d69d3-c5c3-41fd-b078-32439f516f0b", - "label": "Specify date order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", - "label": "All community requirements are cancelled", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "27874127-6eee-4dac-b664-bf1796932b59", - "label": "New supervision period (in full)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8a4af2f8-ee31-481e-847d-eb295896b975", - "label": "New supervising court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1508", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "280a5606-c70a-432f-bdfe-a9dfd49f18c5", - "label": "Suspended sentence order of imprisonment amended", - "shortCode": "SUSPV", - "level": "O", - "rank": 51800, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "sentence", - "amended" - ] - }, - { - "wordGroup": [ - "SUSPV" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "7205f528-f69e-4950-9628-a9aff3e31a40", - "label": "Original total imprisonment period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7205f528-f69e-4950-9628-a9aff3e31a40", - "label": "Original total imprisonment period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7205f528-f69e-4950-9628-a9aff3e31a40", - "label": "Original total imprisonment period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7205f528-f69e-4950-9628-a9aff3e31a40", - "label": "Original total imprisonment period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "961da051-d955-4016-b5cc-97f6c157958b", - "label": "Original or amended supervision period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "961da051-d955-4016-b5cc-97f6c157958b", - "label": "Original or amended supervision period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "961da051-d955-4016-b5cc-97f6c157958b", - "label": "Original or amended supervision period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "961da051-d955-4016-b5cc-97f6c157958b", - "label": "Original or amended supervision period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0eba630e-a486-439f-8d76-b49b1363067c", - "label": "Court that made the original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2a955180-259b-4492-9567-eec3c5ee6c27", - "label": "Date the original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "47f34fca-6355-4612-881a-07a2121b86ba", - "label": "Supervising court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", - "label": "The original term of imprisonment is consecutive to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c2f5704c-66f6-4323-a893-d4a212f74bc7", - "label": "Community requirements cancelled", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "faef913f-70ae-44cf-81dd-356c6dc41f0c", - "label": "The court made new community requirement(s)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", - "label": "The court amended a community requirement(s)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "02e44066-4850-4a74-8db6-1158f8324eb1", - "label": "Original community requirements to continue", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "27bf0204-a185-4e82-8c34-7317287513c8", - "label": "Responsible officer for the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", - "label": "Reason for change", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "40d90a02-53a9-43ef-a96f-da9ad1b476b7", - "label": "The court made a new or varied an electronic monitoring requirement", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 1300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 1400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "40f05056-4c54-4251-a7a1-666197409f20", - "label": "This is the first notification to contractor", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c53e274f-ecbf-476e-971c-103a1d5a72d7", - "label": "This is a variation of an electronic monitoring requirement, the original order date was", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 1600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1933ca78-459c-47f0-b4a9-1a4507e19af6", - "label": "This is an additional electronic monitoring requirement, the original order date was", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 1700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", - "label": "This is a continuation of an electronic monitoring requirement", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1508", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "fe2670ca-8fe9-4558-86a8-c611a18fd866", - "label": "Witness summons", - "shortCode": "SUMWITN", - "level": "O", - "rank": 51900, - "wordGroups": [ - { - "wordGroup": [ - "witness", - "summons" - ] - }, - { - "wordGroup": [ - "SUMWITN" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a528bbfd-54b8-45d6-bad0-26a3a95eb274", - "label": "Date of hearing", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", - "label": "Time of hearing", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e498ec52-0adf-41cf-89e2-40955a418393", - "label": "Courthouse name", - "welshLabel": "Enw’r adeilad llys", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4b7bc1cf-e157-4f2f-9500-04dfa5504ff1", - "label": "Courthouse address", - "welshLabel": "Cyfeiriad y llys", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b0a4f0ea-2767-4327-8a49-6949bdf90791", - "label": "Witness date of birth", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fff16e2a-b141-4659-94f6-edcd9581f127", - "label": "Parent of witness name and address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0bb65e58-5d55-4f1a-8fb1-5d676b9f4cc3", - "label": "Parent of witness date of birth", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a85ecb60-5fb4-4a5d-95c4-771de5220f39", - "label": "Witness is required to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "854089e2-e9e1-45e7-bcf7-44de22bcc81d", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "00dbdd03-5c78-4a15-9787-f3843b90dade", - "label": "The specified documents or things are", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ed6c7388-9103-41c2-af4f-3fe69d8582e8", - "label": "Hearsay direction", - "shortCode": "HD", - "level": "C", - "rank": 52000, - "wordGroups": [ - { - "wordGroup": [ - "hearsay", - "direction" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "2b04ace9-583f-4d2a-ae84-c3c377070f3c", - "label": "Hearsay direction", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c5b29640-fb51-4483-a1a9-845b75c7e8a4", - "label": "Suspended sentence order of detention amended - supervising court or operational period or supervision period", - "shortCode": "SUSPAD", - "level": "O", - "rank": 52100, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "sentence", - "amend", - "supervising" - ] - }, - { - "wordGroup": [ - "SUSPAD" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label": "Period of detention previously imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label": "Period of detention previously imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label": "Period of detention previously imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label": "Period of detention previously imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label": "Original operational period (time suspended for)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label": "Original operational period (time suspended for)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label": "The operational period (period of suspension) is extended to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 600, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label": "The operational period (period of suspension) is extended to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 600, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", - "label": "Specify court that made the original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c6d69d3-c5c3-41fd-b078-32439f516f0b", - "label": "Specify date order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", - "label": "All community requirements are cancelled", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "27874127-6eee-4dac-b664-bf1796932b59", - "label": "New supervision period (in full)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8a4af2f8-ee31-481e-847d-eb295896b975", - "label": "New supervising court", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "726c4beb-9ead-4b6b-bed9-b761b5b43553", - "label": "Suspended sentence order of detention amended", - "shortCode": "SUSPVD", - "level": "O", - "rank": 52200, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "sentence", - "amend" - ] - }, - { - "wordGroup": [ - "SUSPVD" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "c711a619-92ac-449c-bd62-cf3218e986ad", - "label": "Original total detention period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c711a619-92ac-449c-bd62-cf3218e986ad", - "label": "Original total detention period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c711a619-92ac-449c-bd62-cf3218e986ad", - "label": "Original total detention period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c711a619-92ac-449c-bd62-cf3218e986ad", - "label": "Original total detention period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "961da051-d955-4016-b5cc-97f6c157958b", - "label": "Original or amended supervision period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "961da051-d955-4016-b5cc-97f6c157958b", - "label": "Original or amended supervision period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "961da051-d955-4016-b5cc-97f6c157958b", - "label": "Original or amended supervision period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "961da051-d955-4016-b5cc-97f6c157958b", - "label": "Original or amended supervision period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0eba630e-a486-439f-8d76-b49b1363067c", - "label": "Court that made the original order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2a955180-259b-4492-9567-eec3c5ee6c27", - "label": "Date the original order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "47f34fca-6355-4612-881a-07a2121b86ba", - "label": "Supervising court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", - "label": "The original term of imprisonment is consecutive to", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "12bca5a7-6dce-472f-b424-9d9e4a9e973d", - "label": "Community requirements cancelled", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "faef913f-70ae-44cf-81dd-356c6dc41f0c", - "label": "The court made new community requirement(s)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", - "label": "The court amended a community requirement(s)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "02e44066-4850-4a74-8db6-1158f8324eb1", - "label": "Original community requirements to continue", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "27bf0204-a185-4e82-8c34-7317287513c8", - "label": "Responsible officer for the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", - "label": "Reason for change", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "40d90a02-53a9-43ef-a96f-da9ad1b476b7", - "label": "The court made a new or varied an electronic monitoring requirement", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 1300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 1400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "40f05056-4c54-4251-a7a1-666197409f20", - "label": "This is the first notification to contractor", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c53e274f-ecbf-476e-971c-103a1d5a72d7", - "label": "This is a variation of an electronic monitoring requirement, the original order date was", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 1600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1933ca78-459c-47f0-b4a9-1a4507e19af6", - "label": "This is an additional electronic monitoring requirement, the original order date was", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 1700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", - "label": "This is a continuation of an electronic monitoring requirement", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1508", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "3d2c05b3-fcd6-49c2-b5a9-52855be7f90a", - "label": "Summons on referral to other court", - "shortCode": "SUMRTO", - "level": "O", - "rank": 52300, - "userGroups": [], - "prompts": [ - { - "id": "a528bbfd-54b8-45d6-bad0-26a3a95eb274", - "label": "Date of hearing", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", - "label": "Time of hearing", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f5699b34-f32f-466e-b7d8-40b4173df154", - "label": "Magistrates' court", - "welshLabel": "Llys Ynadon", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "dbbb47c9-2202-4913-9a0d-db0a048bfd5f", - "label": "Reason for referring to court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c20d50a5-d3f5-4ff7-9366-f0a27b0c95ac", - "label": "Case re-opened", - "shortCode": "ROPEN", - "level": "C", - "rank": 52400, - "userGroups": [], - "prompts": [ - { - "id": "dcc576fb-f2ad-486f-b907-43f9db32ae40", - "label": "Date re-opened", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3b40c7eb-2095-4570-b56e-5ebbfe88e49a", - "label": "Libra account number", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "79aa0f1a-a79b-4923-afbf-29ee3a911ef6", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Total custodial period", - "shortCode": "TIMP", - "level": "D", - "rank": 5800, - "resultWording": "section 13(c)", - "userGroups": [], - "prompts": [ - { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total imprisonment period", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "totalImprisonmentPeriod", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total imprisonment period", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "totalImprisonmentPeriod", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total imprisonment period", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "totalImprisonmentPeriod", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total imprisonment period", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "totalImprisonmentPeriod", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3a0bf7f8-674f-4b5f-998d-aae0e2b2842e", - "label": "Sentenced in absence", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "duration": null, - "wordGroup": [ - "Absence" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "FH", - "reference": "sentencedInAbsence", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "19d9d7b4-a55c-4f52-8cca-edf9c63e98e5", - "label": "Total sentence consecutive to what", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "totalSentenceConsequenceToWhat", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9dbe839c-3804-4c47-bf9e-5be6f9b9b3bb", - "label": "Total imprisonment period is life", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "totalImprisonmentPeriodInLife", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "21549bc3-5be9-4a91-abc7-57d8ed1b1676", - "label": "Reason for sentence without PSR", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "reasonForSentenceWithoutPSR", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "266a2bbe-b6b5-4b24-830d-70ceff3e2cac", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "probationPeriodTobeNotified", - "isAvailableForCourtExtract": false, - "durationSequence": null - }, - { - "id": "52c9c1f5-2a00-45ee-bca3-024d43626773", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "600edfc3-a584-4f9f-a52e-5bb8a99646c1", - "label": "Refer for a full court hearing", - "shortCode": "SUMRCC", - "level": "O", - "rank": 52500, - "userGroups": [], - "prompts": [ - { - "id": "bca4e07c-17e0-48f1-84f4-7b6ff8bab5e2", - "label": "Reasons for referring to court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "a47a312a-79fe-4f3e-84ab-63a39f52bc75", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f7784e82-20b5-4d2c-b174-6fd57ebf8d7c", - "label": "Adjourn to a later SJP hearing session", - "shortCode": "ADJOURNSJP", - "level": "O", - "rank": 52600, - "userGroups": [], - "prompts": [ - { - "id": "185e6a04-8b44-430d-8073-d8d12f69733a", - "label": "Adjourn to date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0149ab92-5466-11e8-9c2d-fa7ae01bbebc", - "label": "Referred for resulting in another SJP session", - "shortCode": "SJPR", - "level": "C", - "rank": 52700, - "wordGroups": [ - { - "wordGroup": [ - "SJPR" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "1e96d1a9-9618-4ddd-a925-ca6a0ef86018", - "label": "Transfer of Fine Order to a Court in England or Wales", - "shortCode": "TFOUT", - "level": "D", - "rank": 52800, - "wordGroups": [ - { - "wordGroup": [ - "transfer", - "fine" - ] - }, - { - "wordGroup": [ - "TFOUT" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "5f589095-2986-4d2b-98fa-30ab00f675d4", - "label": "Court to which fine is transferred", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "f31eadd5-41d4-4cff-98d8-effd946e7a09", - "label": "Full bail argument", - "shortCode": "FBA", - "level": "O", - "rank": 52900, - "wordGroups": [ - { - "wordGroup": [ - "full", - "argument" - ] - }, - { - "wordGroup": [ - "FBA" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "78c79d11-a1ba-4c34-89d2-5b25977af957", - "label": "The court certifies that full argument was heard on", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "474e4dc5-6751-4e31-849f-f03952b5597a", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8d29667b-15df-48af-9e5c-39b740b99d70", - "label": "New considerations were placed before the court and this change in circumstances was found", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "4532", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4d2fc4cf-970e-49db-83af-2756e43e106e", - "label": "Unable to proceed with case on the Common Platform, entered into Libra", - "shortCode": "UNABLE", - "level": "C", - "rank": 49200, - "wordGroups": [ - { - "wordGroup": [ - "UNABLE" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d3139b79-696b-4cb7-a39d-7f06fcc24f4a", - "label": "Discharged", - "shortCode": "DISCH", - "level": "O", - "rank": 49400, - "wordGroups": [ - { - "wordGroup": [ - "not", - "guilty", - "discharged" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": true, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "19463792-2c34-4c4e-bbbe-fbac0955a314", - "label": "Anti-social behaviour injunction", - "shortCode": "ABI", - "level": "O", - "rank": 49500, - "wordGroups": [ - { - "wordGroup": [ - "anti", - "Social", - "behaviour", - "injunction" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "a13a81c9-113b-4156-8bf5-77280d5107b7", - "label": "Duration period for anti-social behaviour injunction", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7f15a291-0e73-4055-8b6c-067f628646da", - "label": "Power of arrest attached to the following provisions", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1c033a31-1fdd-400d-8277-cf520ef81de6", - "label": "Power of arrest period ", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0ecac709-0dbe-45a7-ac04-cca8454377cc", - "label": "Requirement supervisor for the injunction requirements", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "33408f3d-885c-43f4-a4a8-76e37906569f", - "label": "Police force name (for power of arrest)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2da00d65-6cdc-4149-9d51-df6cb43d9729", - "label": "Police force address (for power of arrest) line 1", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ceb435f2-3d72-4b5a-929a-ce976881ace7", - "label": "Police force address (for power of arrest) line 2", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "aa72f5cb-221a-42ce-b1f3-81f110be0e12", - "label": "Police force address (for power of arrest) line 3", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6516de6a-2998-4ae5-9833-ea37b408558f", - "label": "Police force address (for power of arrest) line 4", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6dacab3d-a730-4020-aed3-15d442fbdff5", - "label": "Police force address (for power of arrest) line 5", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4a13b230-a819-4955-87d8-fe1f1318abc1", - "label": "Anti-social behaviour injunction requirements", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "18266b45-aae2-43b5-8a0b-e647df78e61a", - "label": "Anti-social behaviour injunction prohibitions", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3516", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "32cc8e43-1d98-4fc9-a11a-265ea5af0715", - "label": "Credit for time", - "shortCode": "CREFT", - "level": "D", - "rank": 5900, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "3f4f9b75-418f-46ed-a311-230a6dbca6cb", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "0683d44b-c84f-49e7-b449-242bb6a9c60e", - "label": "Forfeiture and deprivation", - "shortCode": "FORAD", - "level": "O", - "rank": 7600, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "2852b770-a7ad-11e8-98d0-529269fb1459", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "32177be4-0a1f-4889-9ca2-c729f49d7d85", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "290435b9-cce7-43be-b340-1c7db48c5413", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "e7ef0248-fe71-4733-8749-ff0c23a04f95", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "19026543-7d59-467b-9649-35ddf89b30cc", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7610d8a1-07fe-4e69-812d-22f821d3f334", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6532b8f4-7794-420a-9f30-8aced3e41517", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "661bdce3-ce01-4cb6-a152-6424540bbbce", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "label": "Adjournment reasons", - "shortCode": "ADJR", - "level": "O", - "rank": 33100, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "welshLabel": "Rheswm dros ohirio:", - "isAvailableForCourtExtract": false, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": true, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "c93c5a18-838a-41d3-a017-c203b37f5655", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "4958de15-8a0a-4d2b-9f7e-56e037cf03da", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c2eca548-4511-4023-bbe6-50fe0b679b4a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9fd6a4ef-1055-4e54-b035-f1130a524388", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c514dcec-804c-11e8-adc0-fa7ae01bbebc", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", - "version": "2022-01-10T09:35:48.476Z", - "startDate": "2022-01-11", - "label": "Payment terms", - "shortCode": "PAYT", - "level": "D", - "rank": 300, - "wordGroups": [ - { - "wordGroup": [ - "PAYT" - ] - }, - { - "wordGroup": [ - "terms", - "payment" - ] - } - ], - "userGroups": [ - ], - "welshLabel": "Telerau talu", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": true, - "alwaysPublished": false, - "jurisdiction": "B", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "a0b426c1-74b8-43cd-9885-f0f31625352e", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", - "ruleType": "oneOf" - } - ], - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "874911d0-acf2-4b6f-bcca-cacbb6bb2862", - "label": "Pre-release bail conditions", - "shortCode": "PREBC", - "level": "O", - "rank": 26900, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": false, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": true, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "4ddda002-526e-4d70-9df7-eeaae75cfab7", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d85486c4-06f1-4813-859b-5495ca578bde", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "bb0a2862-a565-46aa-96ed-1e6f972949d0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "1ebd5ca1-866d-43a0-ad9a-464e8a228235", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "279fd36e-17c5-42b2-b56b-a6ab27b9b592", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "e5864697-640a-47be-9289-9e6205bbe579", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "4558f9b2-47f8-4430-a0f8-684df5d55761", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b9581c12-81c9-434d-8851-03d9638547fa", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b922e6bd-70a4-4b28-b583-165179af6162", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c51e3522-5363-4af0-b5af-97a5f9eb5462", - "ruleType": "atleastOneOf" - } - ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "userGroups": [], - "resultTextTemplate": "%AllChildText%", - "terminatesOffenceProceedings": false - }, - { - "id": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Bail conditions", - "shortCode": "BAIC", - "level": "O", - "rank": 400, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": false, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": true, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "525c4660-9a0b-4a86-80fc-0efce539d6a5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "e073f3ba-2585-4c0d-8c31-e51a1662d143", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "1aa6a828-fedb-43bd-89e8-bc74586d5e85", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "136725da-5b0a-43d3-adac-54f916bcf2bb", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6889288e-5e4a-4523-be2c-cc993a00af29", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "0649851f-01f8-48fb-928d-6fe100042b2a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "03edddce-c188-4b38-9832-988d9d1ee802", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "5c02ff4c-6a33-4089-8c9e-f120a688b018", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d45c8150-3095-4cb3-a55e-b4fd094af560", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "922386e1-bdc2-403e-8902-af1da14e1fd8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d34b643e-74d5-4288-a4b9-bce14d0069d5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "fb9b273e-06c3-4a4a-940c-3c053c559abe", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "481547e6-9099-475e-8028-2bce2c52ff5f", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "dfa19118-e944-43f4-93b2-2ed49df5553f", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c1d490ed-1754-43b8-a485-fdab1a25f8cb", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "90146942-b1b9-4a2e-af2b-141f50d45e5c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9da5909e-d715-4f79-a1b8-34780c57acf1", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d709a455-02cc-40d9-b3d2-e4194dc46792", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "3c98b287-fd01-471a-ac34-e0a56d9e95c2", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "4c79ea50-6e14-4c47-8836-c0d0f647e45a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "834ed20a-d7d8-419b-b72d-61b30db36560", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "46051d94-0e60-4010-b86d-cf65e1a464d8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a50ad03e-d299-4da7-874c-0f233d7d503d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c18dd89d-e057-42aa-b071-0a91226da3bf", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "795079ed-4b5a-4750-b077-d653180d43ae", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "71efa12c-a68e-4537-ac7d-27ebf91557a6", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "36951b36-de01-45bc-91a7-1c68f5989ed5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "91141263-7f27-494f-95e9-04a113952974", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", - "ruleType": "atleastOneOf" - } - ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "cacheable": 1, - "userGroups": [], - "resultTextTemplate": "%AllChildText%", - "welshLabel": "Amodau mechnïaeth", - "terminatesOffenceProceedings": false - }, - { - "id": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Next hearing", - "shortCode": "NEXH", - "level": "O", - "rank": 300, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "welshLabel": "Gwrandawiad nesaf", - "isAvailableForCourtExtract": false, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": true, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "fbed768b-ee95-4434-87c8-e81cbc8d24c8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", - "ruleType": "optional" - } - ] - }, - { - "id": "d076bd4a-17d5-4720-899a-1c6f96e3b35f", - "label": "Remand unconditional bail", - "shortCode": "REMUB", - "level": "O", - "rank": 32900, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "ruleType": "optional" - } - ] - }, - { - "id": "0056b9e1-7585-4bfa-82ec-f06202670bb1", - "label": "Remand in custody", - "shortCode": "REMIC", - "level": "O", - "rank": 33200, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "d0a369c9-5a28-40ec-99cb-da7943550b18", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "d30f1863-f319-49fd-855d-2cf3fa6b3cea", - "label": "Remand appeal", - "shortCode": "REMA", - "level": "O", - "rank": 33400, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6af22d8d-6157-460e-b641-e6db90d15289", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7a0932f5-8264-412e-a83c-2b6d1dce1506", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "074124d5-b07a-4b73-8b9a-792e8462138a", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "62cd1ba4-9aaf-413b-96b0-238cfc82ef18", - "label": "Press", - "shortCode": "PRESS", - "level": "O", - "rank": 34100, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "fcbf777d-1a73-47e7-ab9b-7c51091a022c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "89e3c24b-acbf-42fb-9eee-169b83423035", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c265d589-fcc0-451b-be43-7856e32524ba", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "393c5be8-dadb-484b-ab39-0f1eb57aeae5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9647428f-0946-4a09-aec1-7bdfcd324ac6", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "21271525-76f4-4134-9c93-1be012a574c8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d023e3a7-33ef-45b4-a19b-5137afecbf1f", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "2c18aff1-b535-47b6-8415-8841e85eac49", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "335204e2-6b6e-4ea8-ae72-f3341ea75777", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "2e725ba6-0e29-4ffb-a5c7-31b67344c211", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "98366b12-b70a-4e66-b71d-a5bbd39bd595", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b3035ace-15d4-44ca-9d79-c83a57dc0e30", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "84222bcb-05ac-4c67-82df-cc8742a850d1", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "07d8fab1-366d-43c5-bdb4-223f8c1229f5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "bb90e801-0066-4bdf-85e6-8d64bc683f0c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "3f4f9b75-418f-46ed-a311-230a6dbca6cb", - "label": "Credit for time remanded on bail", - "shortCode": "CREDIT", - "level": "D", - "rank": 6000, - "wordGroups": [ - { - "wordGroup": [ - "Credit", - "remand", - "bail" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "N", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Credit for time", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "46bf6aa2-23f3-4c78-8c52-49b567d1193b", - "label": "Warrants of arrest", - "shortCode": "WAROA", - "level": "O", - "rank": 36200, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "c98cb51f-8639-49c1-91f0-a7e820c34355", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b4f7c223-b9d1-4409-b6d3-039f66eb9645", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "671df737-9901-4fa5-b245-aeff0c4c7495", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c8c962df-e28c-4ea8-8496-721badb77b7b", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "73242763-44db-4d57-a855-44a6cf4f6226", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9b35f4f5-531e-48b4-858d-d81e15e77c23", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "31b29c58-cfd2-41c6-addf-53f5a2c99fdc", - "label": "Confiscation", - "shortCode": "CON", - "level": "O", - "rank": 38300, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "76b02133-4927-4f21-9f79-1ce361a17b0f", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "733545c5-5612-40b8-bd81-df1a6a154182", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "159c3430-fda4-4aea-8adc-62e4b6f07797", - "label": "Rehabilitation requirement", - "shortCode": "REHR", - "level": "O", - "rank": 42500, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "574fb809-4473-4a90-ba0f-519a50cfc9ec", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "55a1cab9-8aa6-41f6-a116-0345198324e6", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c5e204ce-9a2d-4911-96f7-e189565f429e", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "191ec139-10b6-4b18-8a2c-1359425244c3", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "536adc8b-1f26-43f0-9659-4bf25e2b42db", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "1819e6a0-b13d-47e0-9027-388819457256", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "27528205-a237-471b-a487-7943e9284c44", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d3313cb9-c75e-45e4-b833-8479ff80f9ac", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "fb9fedf8-2b60-496b-8147-168233e81be3", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "5ab456c8-d272-4082-87ed-cd1f44a0603a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "8f979084-dc3b-4e71-bceb-87e30a4fc381", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "63f8c00a-2115-46a9-94ff-b30bbad0f287", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "30bd1b11-5336-486e-aae6-1285ab4c8d65", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "4e786114-e1c0-42bb-9c52-64edeffa3a3b", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "1e78e819-13fc-4e14-a263-c632e4e3c85e", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "03a1cbef-e54a-4a00-bcd5-44350f882ced", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a17f9787-ba56-43d4-be5f-6fc91d29646e", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b986b6ad-816c-44d6-bdf8-0df189732648", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a15102d7-a151-425a-a827-0e35bc159049", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "416684ab-755f-4958-ab83-2795a21d62a3", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d79c92bb-c301-491a-b4d2-cb86e473b5af", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "0f7eade6-3602-486c-8491-45e2bdee9960", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b8654020-f9ed-4707-8757-8db6efb323b9", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "78d6e77c-fb17-46ae-a719-66eacd6281a9", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "48646574-8bd7-49f7-9fa1-3aeb60f7c059", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "79deff01-d3b0-4453-b290-ea34c60ce3e9", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "0c5824cd-b6db-4c8f-a8c3-92e7e4cc0195", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Special measures", - "shortCode": "DIRS", - "level": "C", - "rank": 50200, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "02c8aef6-601a-46e8-bbe5-d614e0da764a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b172d954-5aca-447b-b19e-2c836053b0af", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "41a18cc7-3106-4e84-8f66-ad52fe6dee75", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ee74631f-c144-4a25-8a93-0253b98a7642", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "702b365f-dde6-4543-8fb5-1324c6a84ec4", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "52218899-8f26-45cd-ae30-aeff5c189261", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "633d192a-cc90-484e-aa1d-318816b7d44a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "67a91dc8-f4f9-4f80-b644-e219326045cc", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "92ccea16-370d-42cf-ae54-ed0951eaec95", - "label": "Bad character", - "shortCode": "BADC", - "level": "C", - "rank": 51400, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "fe77f387-ee64-4cef-8e95-c0776b9799e7", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "e7e02d63-46c2-4603-8255-921427f410fe", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Send To Crown Court On Conditional Bail", - "shortCode": "SendToCCOnCB", - "level": "O", - "rank": 53000, - "userGroups": [], - "prompts": [ - { - "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label": "Is the defendant excused attendance?", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "defendantExcusedAttendance", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "80be59c8-ffaa-4570-b40a-f3a085058208", - "label": "Bail condition reason", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXLM", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual": null, - "reference": "bailConditionReason", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "dec5104c-3342-4544-b287-31ea969e0f15", - "label": "BASS provider", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bassProvider", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label": "Additional reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "additionalReasons", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4559", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "ruleType": "mandatory" - } - ] - }, - { - "id": "0118c2ad-9f50-4b0c-8f56-dff14b46b669", - "label": "Interim Anti-social behaviour injunction", - "shortCode": "ABII", - "level": "O", - "rank": 49600, - "userGroups": [], - "prompts": [ - { - "id": "2f1308c6-4fbf-4158-809b-5f382a0dafae", - "label": "Interim Anti-social behaviour injunction made on notice until further order of the court", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "904e7e42-5cf0-44e3-810f-1bc67d10027c", - "label": "Power of arrest attached to the following provisions", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "33408f3d-885c-43f4-a4a8-76e37906569f", - "label": "Police force name (for power of arrest)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2da00d65-6cdc-4149-9d51-df6cb43d9729", - "label": "Police force address (for power of arrest) line 1", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ceb435f2-3d72-4b5a-929a-ce976881ace7", - "label": "Police force address (for power of arrest) line 2", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "aa72f5cb-221a-42ce-b1f3-81f110be0e12", - "label": "Police force address (for power of arrest) line 3", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6516de6a-2998-4ae5-9833-ea37b408558f", - "label": "Police force address (for power of arrest) line 4", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6dacab3d-a730-4020-aed3-15d442fbdff5", - "label": "Police force address (for power of arrest) line 5", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4a13b230-a819-4955-87d8-fe1f1318abc1", - "label": "Anti-social behaviour injunction requirements", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "18266b45-aae2-43b5-8a0b-e647df78e61a", - "label": "Anti-social behaviour injunction prohibitions", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3516", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "1652f681-8b73-4b35-8982-d418e33e2dca", - "label": "Anti-social behaviour injunction discharged", - "shortCode": "ABID", - "level": "O", - "rank": 49700, - "userGroups": [], - "prompts": [ - { - "id": "9e013766-dc6b-4b33-8691-871cd95bbbb2", - "label": "Date anti-social behaviour injunction made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bacb7dc5-0a23-41c4-9e61-018aa99c7758", - "label": "Name of court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1eefddf4-76eb-4fe8-89d7-2c517bd6da99", - "label": "Name of youth on anti-social behaviour injunction", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6b509d44-fb0e-463f-8b7f-675cb6903265", - "label": "Parent's name", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0be420e0-d53a-4f8e-9b6e-bf32399a8139", - "label": "Parent's address line 1", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0059a0fb-4c1f-4404-a510-ee62103e0ac3", - "label": "Parent's address line 2", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e58ccaaf-b086-454c-945c-0e49e1ff3ac2", - "label": "Parent's address line 3", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "07ca67f2-f61d-43df-b5ba-195c7be45ed4", - "label": "Parent's address line 4", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5a4bca21-33ab-4676-be4e-47a6345e66bb", - "label": "Parent's address line 5", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0305f628-85c3-42d6-82b8-7145d7c6087b", - "label": "Police force address (for removal of power of arrest) Line 1", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "dbae711b-d60f-404c-bdac-323bcc2715d8", - "label": "Police force address (for removal of power of arrest) Line 2", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "88c1856d-a5d2-46d7-83db-3e6b9611e607", - "label": "Police station name (for power of arrest removal)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "53060dea-a815-492b-b426-79269ebfaafd", - "label": "Police force address (for removal of power of arrest) Line 3", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "699e217b-6eef-4536-8bbe-8865e7a6cb1f", - "label": "Police force address (for removal of power of arrest) Line 4", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "360992fa-96f8-4087-9cfa-fc2d6e23c931", - "label": "Police force address (for removal of power of arrest) Line 5", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3516", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5c27e390-2656-4117-8104-a41b15b2f01b", - "label": "Anti-social behaviour injunction detention order", - "shortCode": "ABIDO", - "level": "O", - "rank": 49800, - "userGroups": [], - "prompts": [ - { - "id": "ec2d9337-782d-4c1a-be49-2c03b52c4788", - "label": "Duration of detention in youth detention accomodation", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "701580e3-d5ea-4318-a8ad-0ecb00558215", - "label": "Rreasons why no other power is available to the court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3516", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "311c8e5c-6f22-44a7-8c97-f72324cb05c4", - "label": "Custody time limit", - "shortCode": "CTL", - "level": "O", - "rank": 53100, - "userGroups": [], - "prompts": [ - { - "id": "5348fd0e-0670-4811-997f-1baa78b06d62", - "label": "Custody time limit expires", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "CTLDATE", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4483c255-2761-4549-a70a-314aa311d052", - "label": "Time spent in custody (in days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "CTLTIME", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", - "label": "Credit for time in custody in foreign jurisdiction", - "shortCode": "CREDITF", - "level": "D", - "rank": 6100, - "wordGroups": [ - { - "wordGroup": [ - "Credit", - "foreign", - "custody" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Credit for time", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "66105417-41c8-420d-820f-40b61b507442", - "label": "Risk or vulnerability factors", - "shortCode": "vulnarability", - "level": "D", - "rank": 900, - "wordGroups": [ - { - "wordGroup": [ - "vulnarability", - "risk,vulnerability,factors" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "riskFactors", - "courtExtract": "N", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5b3a1f08-8008-4a1d-94b1-e0d4e1bd44df", - "label": "Anti-social behaviour injunction detention order revoked ", - "shortCode": "ABIDOR", - "level": "O", - "rank": 49900, - "userGroups": [], - "prompts": [ - { - "id": "31305c79-6634-4ed7-8ab1-40af1f34f74e", - "label": "Date anti-social behaviour injunction detention order made", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "c108853c-bd16-4677-9352-af7a20395f72", - "label": "Name of youth in detention", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bacb7dc5-0a23-41c4-9e61-018aa99c7758", - "label": "Name of court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e76673b3-7ca8-4a32-898d-dfa2e6047f24", - "label": "Date of birth of youth in detention", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6927b6ac-4c85-4532-838d-88ac00ea83f9", - "label": "Conveyor / custodian name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3516", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4e170564-93b2-4d45-b653-90099acf8313", - "label": "Engagement and support order", - "shortCode": "ESO", - "level": "O", - "rank": 53200, - "userGroups": [], - "prompts": [ - { - "id": "7bc1e57b-4cae-4b3d-bd80-50a8d42b3b41", - "label": "Date by which meetings must take place", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "00f2671f-f825-406c-ad80-75ff13e837f9", - "label": "Name of supervisor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1e697e74-f38b-4388-a7b5-51d51180d2f2", - "label": "The Local Justice Area the defendant lives in", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1144", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5e253119-9aab-4d0d-8288-bcdbf3695d86", - "label": "Order", - "shortCode": "ORD", - "level": "O", - "rank": 53300, - "userGroups": [], - "prompts": [ - { - "id": "3da00e9f-7638-4f7d-9c98-275e74ac1e0e", - "label": "Order details", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", - "label": "Defendant to notify names and home address", - "shortCode": "DNNH", - "level": "O", - "rank": 800, - "userGroups": [], - "prompts": [ - { - "id": "ab67bee4-c673-4575-8bf9-d61385a93991", - "label": "Defendant to notify all names and home address within 3 days to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 10, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label": "Method of notification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 110, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f9d5418b-eb45-4614-bfb6-0e64d6a8e032", - "label": "Defendant to notify names and home address to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "65f58042-5608-4d48-9aa9-3ba5ea38775e", - "label": "Method of notification", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ee8a9064-e558-47db-8b18-6818b1c120bf", - "label": "Slavery and trafficking prevention order", - "shortCode": "STPO", - "level": "O", - "rank": 19600, - "userGroups": [], - "prompts": [ - { - "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label": "Duration of order", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "11f6a6ca-985b-4aa9-a6f2-de4214fcbe0f", - "label": "This order lasts until further order", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label": "This order lasts until", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "56190eb2-0035-44cc-b904-b131f299835c", - "label": "Prohibitions contained in the order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3285", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", - "ruleType": "optional" - } - ] - }, - { - "id": "fcb26a5f-28cc-483e-b430-d823fac808df", - "label": "Excise penalty", - "shortCode": "excise, penalty", - "level": "O", - "rank": 53400, - "wordGroups": [ - { - "wordGroup": [ - "excise, penalty" - ] - }, - { - "wordGroup": [] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "b3dfed9a-efba-4126-a08d-cf37d18b4563", - "label": "Amount of excise penalty", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "AOF", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1119", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "68720a39-3bf6-4678-9d6b-40386da7d53a", - "label": "Warrant for arrest for breach of community penalty with bail (dated)", - "shortCode": "WCPD", - "level": "O", - "rank": 53500, - "userGroups": [], - "prompts": [ - { - "id": "2fa31208-5fed-4f52-a63e-c3a83cc733fa", - "label": "Reason for arrest is a failure to comply with the", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "24b40430-a75e-44ba-b367-bae3139b4d19", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9405e797-240e-4e71-ab35-43e90e3a8a5b", - "label": "Reason for the decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", - "label": "Warrant execution allocated to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "507c4249-d897-43bb-b64d-5c156ef6ba85", - "label": "Bail to be allowed on these conditions", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4575", - "adjournment": true, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType": "mandatory" - } - ] - }, - { - "id": "ed34136f-2a13-45a4-8d4f-27075ae3a8a9", - "label": "Warrant for arrest for breach of community penalty without bail", - "shortCode": "WCPN", - "level": "O", - "rank": 53600, - "userGroups": [], - "prompts": [ - { - "id": "2fa31208-5fed-4f52-a63e-c3a83cc733fa", - "label": "Reason for arrest is a failure to comply with the", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "24b40430-a75e-44ba-b367-bae3139b4d19", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9405e797-240e-4e71-ab35-43e90e3a8a5b", - "label": "Reason for the decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", - "label": "Warrant execution allocated to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4576", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "664d0c0d-115b-4d54-b137-301c9ed74ef9", - "label": "Recommended for deportation when released", - "shortCode": "RDEPD", - "level": "D", - "rank": 6200, - "wordGroups": [ - { - "wordGroup": [ - "deportation", - "release" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "16bb9f17-d3c3-42f1-a4dc-2d953114a214", - "label": "Nationality", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2cbae4d2-e4d0-4451-be7c-713c2a1a8974", - "label": "Residence and reporting restrictions etc", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8c144a05-5804-4478-a419-12bab06748cc", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3006", - "adjournment": false, - "convicted": false, - "qualifier": "CN", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0d1b161b-d6b0-4b1b-ae08-535864e4f631", - "label": "Warrant for arrest for community penalty breach with bail (undated)", - "shortCode": "WCPU", - "level": "O", - "rank": 53700, - "userGroups": [], - "prompts": [ - { - "id": "2fa31208-5fed-4f52-a63e-c3a83cc733fa", - "label": "Reason for arrest is a failure to comply with the", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "24b40430-a75e-44ba-b367-bae3139b4d19", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "9405e797-240e-4e71-ab35-43e90e3a8a5b", - "label": "Reason for the decision", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", - "label": "Warrant execution allocated to", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "I", - "cjsCode": "4577", - "adjournment": true, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": true, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "491e30e9-2508-4e3a-9291-dfaf16d975ab", - "label": "Sent to Crown Court for trial", - "shortCode": "SCC", - "level": "O", - "rank": 53800, - "userGroups": [], - "prompts": [ - { - "id": "4362a1a4-aa80-4a68-ae61-f57962709f3d", - "label": "Sent for trial under", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": "999ecc93-0fd8-47d8-8b2d-9286c0c5d491", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f83671fb-7f2f-4b38-b6f3-71db90768485", - "label": "Indicated plea", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": "84d620c3-35ca-49ae-879d-95efaaf670af", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d7d2c7b1-f27a-44ed-a227-ea9b917f0229", - "label": "No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "654fce8c-238a-468a-92db-f7509394cf08", - "label": "A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5dfec956-547d-4e2b-b1f6-743376511589", - "label": "Trial issues identified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "49365935-e535-42db-bc41-a18c8fee5258", - "label": "Directions made", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8", - "label": "No indication given re victim personal statement", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6", - "label": "Victim wishes to read victim personal statement to court", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "583ea6cb-4251-406e-b07a-445fb0dde914", - "label": "Victim personal statement to be presented to court by prosecutor or other person", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e2b9a67c-cbd8-4479-89ff-57b2b6632835", - "label": "Additional details re victim personal statement", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7e657be6-9e6f-410d-ba6a-74cfedb1b3f9", - "label": "Probation / Youth Offending Team to be notified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "05496e53-66f5-47a0-9fff-f31cbd5191a0", - "label": "Was a PSR ordered?", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 1300, - "duration": null, - "wordGroup": null, - "userGroups": null, - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ca16bc9f-9d62-4dd3-b8af-a77004ff8002", - "label": "Recommended for deportation when detained", - "shortCode": "RDEPN", - "level": "D", - "rank": 6300, - "wordGroups": [ - { - "wordGroup": [ - "deportation", - "detained" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "16bb9f17-d3c3-42f1-a4dc-2d953114a214", - "label": "Nationality", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "8c144a05-5804-4478-a419-12bab06748cc", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3006", - "adjournment": false, - "convicted": false, - "qualifier": "CQ", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "e866cd11-6073-4fdf-a229-51c9d694e1d0", - "label": "Surcharge", - "shortCode": "FVS", - "level": "D", - "rank": 6400, - "wordGroups": [ - { - "wordGroup": [ - "FVS" - ] - }, - { - "wordGroup": [ - "victim", - "surcharge" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "629a971e-9d7a-4526-838d-0a4cb922b5cb", - "label": "Amount of surcharge", - "welshLabel": "Swm y gordal", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "AOS", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Gordal", - "isAvailableForCourtExtract": true, - "financial": true, - "category": "A", - "cjsCode": "3117", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "5eb79085-3035-4a00-a549-6dd24abafe8c", - "label": "No action taken on breach", - "shortCode": "NOACT", - "level": "O", - "rank": 6500, - "wordGroups": [ - { - "wordGroup": [ - "action", - "breach" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "d144ad72-f68a-4b16-a145-ab3c95599dcc", - "label": "Imposing court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "13cd9c54-228b-4dd0-966b-93f4e9bf3a0b", - "label": "Date of original imposition", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label": "Reason", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1087", - "adjournment": false, - "convicted": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "969f150c-cd05-46b0-9dd9-30891efcc766", - "version": "2021-02-25T12:38:32.964Z", - "startDate": "2021-02-26", - "label": "Fine", - "shortCode": "FO", - "level": "O", - "rank": 22300, - "canExtendActiveOrder": true, - "wordGroups": [ - { - "wordGroup": [ - "FO", - "fine" - ] - } - ], - "prompts": [ - { - "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", - "label": "Amount of fine", - "welshLabel": "Swm y ddirwy", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "financial": "Y", - "reference": "AOF", - "wordGroup": [ - "Amount" - ], - "userGroups": [ - ], - "min": "0", - "max": "999999999", - "wording": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false, - "activeOrderExtended": true, - "activeOrderNotExtended": false - } - ], - "welshLabel": "Dirwy", - "financial": "Y", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "Y", - "d20": false, - "resultDefinitionGroup": "Imposition", - "cjsCode": "1015", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "libraCode": "FO", - "lCode": "FINE", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "9ea0d845-5096-44f6-9ce0-8ae801141eac", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "bdb32555-8d55-4dc1-b4b6-580db5132496", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", - "ruleType": "optional" - } - ], - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "f5d492b8-a09b-4f70-9ceb-aa06c306a7dc", - "rollUpPrompts": false, - "publishedForNows": true, - "label": "Costs to Crown Prosecution Service", - "shortCode": "FCPC", - "level": "C", - "rank": 6700, - "wordGroups": [ - { - "wordGroup": [ - "Costs", - "CPS" - ] - }, - { - "wordGroup": [ - "FCPC" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f63b0bb5-7d93-4dab-bc3d-b4bd27152871", - "label": "Amount of costs", - "welshLabel": "Swm y costau", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "AOC", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Costau i Wasanaeth Erlyn y Goron", - "isAvailableForCourtExtract": true, - "financial": true, - "category": "F", - "cjsCode": "3011", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ae89b99c-e0e3-47b5-b218-24d4fca3ca53", - "label": "Compensation", - "shortCode": "FCOMP", - "level": "O", - "rank": 6800, - "wordGroups": [ - { - "wordGroup": [ - "FCOMP" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "26985e5b-fe1f-4d7d-a21a-57207c5966e7", - "label": "Amount of compensation", - "welshLabel": "Swm yr iawndal", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "AOCOM", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "af921cf4-06e7-4f6b-a4ea-dcb58aab0dbe", - "label": "Major creditor name", - "welshLabel": "Enw’r Prif Gredydwr", - "resultPromptRule": "oneOf", - "type": "FIXL", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", - "qual": null, - "reference": "CREDNAME", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", - "label": "Minor creditor company name", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "043faecf-e97c-4daf-9763-4b755d941b45", - "label": "Minor creditor title", - "welshLabel": null, - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "202afd61-e9fb-4bc7-aad6-f0a5799406e2", - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", - "label": "Minor creditor surname", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", - "label": "Minor creditor initials", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "41576571-5573-498b-a9e9-eee24f7a67fa", - "label": "Minor creditor forename(s)", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", - "label": "Minor creditor address", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", - "label": "Minor creditor postcode", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "N", - "durationSequence": null - } - ], - "welshLabel": "Iawndal", - "isAvailableForCourtExtract": true, - "financial": true, - "category": "F", - "cjsCode": "3012", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "label": "Community requirement: Electronic monitoring whereabouts", - "shortCode": "EMW", - "level": "O", - "rank": 1400, - "wordGroups": [ - { - "wordGroup": [ - "Electronic", - "Monitoring", - "Whereabouts", - "first", - "GPS" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f18d4d90-954d-4b27-9e70-f4be9c487b0e", - "label": "Start time", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startTime", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label": "This order lasts until", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd6186a4-d928-47f1-abee-2466b9b80ebf", - "label": "End time", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endTime", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Contractor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": "contractor", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3148", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ae617390-b41e-46ac-bd63-68a28512676a", - "label": "Community order Scotland", - "shortCode": "COS", - "level": "O", - "rank": 6900, - "wordGroups": [ - { - "wordGroup": [ - "Community", - "Order", - "scotland" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label": "Judge reserves breach proceedings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": [ - "Breach" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label": "End Date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad4f684d-0a83-4ee1-b04f-7864487eb41c", - "label": "Appropriate Scottish Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5cf339ba-1dd4-4476-99a5-281c833dd134", - "label": "Locality in Scotland", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "93861000-c4dd-449c-a876-83381beb9719", - "label": "Corresponding Scottish Order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "supervisingCourtName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1280d70e-ea43-42d3-8e96-ce72b8933876", - "label": "Persistent offender previously fined", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1116", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a19714a0-5d58-4666-bc15-3d9dd2692f77", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d683f73c-488e-4d8e-a685-d37049c2a3e5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "66aac609-8987-44cf-a0dc-fb49a7195090", - "label": "Community order Northern Ireland", - "shortCode": "CONI", - "level": "O", - "rank": 7000, - "wordGroups": [ - { - "wordGroup": [ - "Community", - "Order", - "ireland" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label": "Judge reserves breach proceedings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "duration": null, - "wordGroup": [ - "Breach" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label": "End Date", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", - "label": "Petty Sessions District", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b76491aa-02fe-4c14-80d7-4401cc1105e1", - "label": "Corresponding Northern Ireland Order", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual": null, - "reference": "responsibleOfficer", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court name", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "supervisingCourtName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "1280d70e-ea43-42d3-8e96-ce72b8933876", - "label": "Persistent offender previously fined", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1116", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a19714a0-5d58-4666-bc15-3d9dd2692f77", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d683f73c-488e-4d8e-a685-d37049c2a3e5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "ruleType": "atleastOneOf" - } - ] - }, - { - "id": "23f2178b-0083-4bd1-a830-d9c7291f02bd", - "label": "Suspended sentence order Scotland - imprisonment", - "shortCode": "SUSPSS", - "level": "O", - "rank": 7100, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "imprisonment", - "scotland" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0f3114e6-b7b2-4281-8b96-168cbbcd064b", - "label": "Imprisonment reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label": "The reasons for this", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad4f684d-0a83-4ee1-b04f-7864487eb41c", - "label": "Appropriate Scottish Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5cf339ba-1dd4-4476-99a5-281c833dd134", - "label": "Locality in Scotland", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d483e89c-4919-4248-a046-372a6a4532a6", - "label": "Reason for sentence without PSR", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1115", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType": "mandatory" - } - ] - }, - { - "id": "8fac72a9-3193-47ec-9010-e73158813cfd", - "label": "Suspended sentence order Northern Ireland - imprisonment", - "shortCode": "SUSPSNI", - "level": "O", - "rank": 7200, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "imprisonment", - "ireland" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "0f3114e6-b7b2-4281-8b96-168cbbcd064b", - "label": "Imprisonment reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label": "The reasons for this", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", - "label": "Petty Sessions District", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d483e89c-4919-4248-a046-372a6a4532a6", - "label": "Reason for sentence without PSR", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1115", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType": "mandatory" - } - ] - }, - { - "id": "9161f3cb-e821-44e5-a9ee-4680b358a037", - "label": "Guilty plea taken into account", - "shortCode": "GPTAC", - "level": "O", - "rank": 7300, - "wordGroups": [ - { - "wordGroup": [ - "Guility", - "plea", - "account" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1f413a5a-f385-4264-9e23-1fdc80455091", - "label": "Comment on discount / reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "554c2622-c1cc-459e-a98d-b7f317ab065c", - "label": "Conditional discharge", - "shortCode": "CD", - "level": "O", - "rank": 7400, - "wordGroups": [ - { - "wordGroup": [ - "conditional", - "discharge" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label": "Period of conditional discharge", - "welshLabel": "Cyfnod o ryddhad amodol", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label": "Period of conditional discharge", - "welshLabel": "Cyfnod o ryddhad amodol", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label": "Period of conditional discharge", - "welshLabel": "Cyfnod o ryddhad amodol", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label": "Period of conditional discharge", - "welshLabel": "Cyfnod o ryddhad amodol", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - } - ], - "welshLabel": "Ryddhad Amodol", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1018", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b9c6047b-fb84-4b12-97a1-2175e4b8bbac", - "label": "Absolute discharge", - "shortCode": "AD", - "level": "O", - "rank": 7500, - "wordGroups": [ - { - "wordGroup": [ - "absolute", - "discharge" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "welshLabel": "Rhyddhad diamod", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1017", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "32177be4-0a1f-4889-9ca2-c729f49d7d85", - "label": "Forfeiture order (other than vehicle)", - "shortCode": "forfov", - "level": "O", - "rank": 7800, - "wordGroups": [ - { - "wordGroup": [ - "forfeiture", - "destruction", - "vehicle" - ] - }, - { - "wordGroup": [ - "forfov" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8c5aa7f9-326e-4525-803a-63eedc16e4e2", - "label": "Property to be forfeited", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "98a562ee-7583-405a-ab05-3f922ada4872", - "label": "Type of forfeiture", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "26d4c112-a7ae-11e8-98d0-529269fb1459", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d5cfcf4-abb5-4449-b9ba-844353fc6035", - "label": "Destruction / dispose of / deal with / sell", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ba14f9b0-9912-4529-ae63-46eda7708500", - "label": "Method of disposal etc", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "564e9cd7-5a71-4b8d-b404-211afe28f0ed", - "label": "Specify who is to destroy etc", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3054", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Forfeiture and deprivation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "290435b9-cce7-43be-b340-1c7db48c5413", - "label": "Forfeiture order (Vehicle - Section 33C of the Environmental Protection Act 1990)", - "shortCode": "FORVEPO", - "level": "O", - "rank": 7900, - "wordGroups": [ - { - "wordGroup": [ - "forfeiture", - "vehicle" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e0aab342-1b85-4942-8efb-232ef97d81d1", - "label": "Defendant to be deprived of vehicle described as", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b729ae65-ca66-466f-a858-bb33581cd580", - "label": "Name of enforcement authority", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3138", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Forfeiture and deprivation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", - "label": "Order for deprivation of the defendant's rights (other than vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", - "shortCode": "DEPO", - "level": "O", - "rank": 8000, - "wordGroups": [ - { - "wordGroup": [ - "deprivation", - "not", - "vehicle" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "3cfbca15-fd95-4a23-9f57-f60d62f22936", - "label": "Defendant to be deprived of this property", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3055", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Forfeiture and deprivation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "rollUpPrompts": true, - "publishedForNows": false, - "label": "Community requirement: Curfew with electronic monitoring", - "shortCode": "CURE", - "level": "O", - "rank": 1600, - "wordGroups": [ - { - "wordGroup": [ - "Electronic", - "Monitoring", - "Curfew", - "first" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label": "Curfew and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "curfewAndElectricalMonitoringPeriod", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label": "Curfew and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "curfewAndElectricalMonitoringPeriod", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label": "Curfew and electronic monitoring period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "curfewAndElectricalMonitoringPeriod", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f18d4d90-954d-4b27-9e70-f4be9c487b0e", - "label": "Start time", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startTime", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label": "This order lasts until", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd6186a4-d928-47f1-abee-2466b9b80ebf", - "label": "End time", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endTime", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label": "Curfew address, details and timings", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "curfewAddressDetailAndTiming", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Contractor", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual": null, - "reference": "contractor", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3105", - "adjournment": false, - "convicted": true, - "qualifier": "BA", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", - "label": "Order for deprivation of rights (vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", - "shortCode": "DEPV", - "level": "O", - "rank": 8100, - "wordGroups": [ - { - "wordGroup": [ - "deprivation", - "vehicle" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e0aab342-1b85-4942-8efb-232ef97d81d1", - "label": "Defendant to be deprived of vehicle described as", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "3055", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Forfeiture and deprivation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", - "label": "Forfeiture order (land vehicle - Modern Slavery Act 2015)", - "shortCode": "FORFMS", - "level": "O", - "rank": 8200, - "wordGroups": [ - { - "wordGroup": [ - "forfeiture", - "slavery" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "e0aab342-1b85-4942-8efb-232ef97d81d1", - "label": "Defendant to be deprived of vehicle described as", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3138", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Forfeiture and deprivation", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "cfbe83c8-935b-4410-a68c-49452519f2d3", - "label": "Mandatory life imprisonment", - "shortCode": "MLI", - "level": "O", - "rank": 8300, - "wordGroups": [ - { - "wordGroup": [ - "mandatory", - "Life", - "imprisonment" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label": "Minimum term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label": "Early release provisions apply", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Early", - "release" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label": "Early release provisions do not apply", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": [ - "Early", - "not", - "release" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1002", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "96349367-2d04-4265-978f-6c6b417497fd", - "label": "Mandatory custody for life", - "shortCode": "MCL", - "level": "O", - "rank": 8400, - "wordGroups": [ - { - "wordGroup": [ - "Mandotory", - "custody", - "Life" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label": "Minimum term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label": "Early release provisions apply", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Early", - "release" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label": "Early release provisions do not apply", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": [ - "Early", - "not", - "release" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1024", - "adjournment": false, - "convicted": true, - "qualifier": "AB", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "3f608dba-20ad-4710-bebc-d78b4b3ff08d", - "label": "Custody for life", - "shortCode": "CFL", - "level": "O", - "rank": 8500, - "wordGroups": [ - { - "wordGroup": [ - "custody", - "Life" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label": "Minimum term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label": "Early release provisions apply", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Early", - "release" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label": "Early release provisions do not apply", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": [ - "Early", - "not", - "release" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1024", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "d65f3285-f5f0-4ab1-b703-0c95f0f6ed89", - "label": "Life imprisonment for second listed offence", - "shortCode": "LIMP2", - "level": "O", - "rank": 8600, - "wordGroups": [ - { - "wordGroup": [ - "Life", - "imprisonment", - "second" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label": "Minimum term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1002", - "adjournment": false, - "convicted": true, - "qualifier": "AC", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "d844cdd8-c110-4bb8-b8f2-1a8bd5fdc0c7", - "label": "Custody for life for second listed offence", - "shortCode": "LIMPS2O", - "level": "O", - "rank": 8700, - "wordGroups": [ - { - "wordGroup": [ - "Life", - "custody", - "second" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label": "Minimum term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1002", - "adjournment": false, - "convicted": true, - "qualifier": "AC", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "cf70d7ed-8049-4fe2-b02f-5a23b5e39184", - "label": "Life imprisonment for serious offence (S.225)", - "shortCode": "LIMPSO", - "level": "O", - "rank": 8800, - "wordGroups": [ - { - "wordGroup": [ - "Life", - "imprisonment", - "serious" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label": "Minimum term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1002", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "6e42d694-a785-4cbf-a4a8-09f2d1802d4d", - "label": "Custody for life for serious offence  (S.255)", - "shortCode": "CFLS", - "level": "O", - "rank": 8900, - "wordGroups": [ - { - "wordGroup": [ - "Life", - "custody", - "serious" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label": "Minimum term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1024", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "4f640ea6-88d4-4a3a-b816-ff5a79eaaa14", - "label": "Special custodial sentence of imprisonment for offender of particular concern", - "shortCode": "SPECC", - "level": "O", - "rank": 9000, - "wordGroups": [ - { - "wordGroup": [ - "special", - "custody", - "concern" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label": "Term of sentence of imprisonment (aggregate)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label": "Term of sentence of imprisonment (aggregate)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label": "Term of sentence of imprisonment (aggregate)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label": "Term of sentence of imprisonment (aggregate)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1002", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "label": "Community requirement: Curfew", - "shortCode": "CUR", - "level": "O", - "rank": 1500, - "wordGroups": [ - { - "wordGroup": [ - "Curfew", - "Requirement" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "82ee7d2f-99b1-476d-8938-2c824549c365", - "label": "Curfew period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "82ee7d2f-99b1-476d-8938-2c824549c365", - "label": "Curfew period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "82ee7d2f-99b1-476d-8938-2c824549c365", - "label": "Curfew period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "startDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label": "This order lasts until", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "endDate", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label": "Curfew address, details and timings", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "curfewAddressDetailAndTiming", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3105", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "a920be42-b376-420b-ace9-d2d0634559b0", - "label": "Extended sentence of imprisonment for violent or sexual offence (21 and over)(S.226A)", - "shortCode": "EXTIVS", - "level": "O", - "rank": 9100, - "wordGroups": [ - { - "wordGroup": [ - "extended", - "imprisonment", - "violent", - "sexual", - "over", - "21" - ] - }, - { - "wordGroup": [ - "extended", - "imprisonment" - ] - }, - { - "wordGroup": [ - "EXTIVS" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label": "Extended sentence of imprisonment term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label": "Extended sentence of imprisonment term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label": "Extended sentence of imprisonment term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label": "Extended sentence of imprisonment term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 500, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", - "label": "Reason for significant risk to public of serious harm", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1002", - "adjournment": false, - "convicted": true, - "qualifier": "AF", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "optional" - } - ] - }, - { - "id": "752aab8f-ba5f-45a8-80c8-4df7770e70e4", - "label": "Extended sentence of detention for violent or sexual offence (18-20)(S.226A)", - "shortCode": "EXTDVS", - "level": "O", - "rank": 9200, - "wordGroups": [ - { - "wordGroup": [ - "extended", - "detention", - "violent", - "sexual", - "over", - "18" - ] - }, - { - "wordGroup": [ - "detained", - "extended", - "over" - ] - }, - { - "wordGroup": [ - "EXTDVS" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label": "Extended sentence of detention term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label": "Extended sentence of detention term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label": "Extended sentence of detention term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label": "Extended sentence of detention term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 500, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", - "label": "Reason for significant risk to public of serious harm", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1024", - "adjournment": false, - "convicted": true, - "qualifier": "AF", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "1dd2e245-a9af-4d04-84b6-92f64dc312fe", - "label": "Extended sentence of detention for violent or sexual offence (under 18)(S.226B)", - "shortCode": "EXTDVSU", - "level": "O", - "rank": 9300, - "wordGroups": [ - { - "wordGroup": [ - "detained", - "extended", - "under" - ] - }, - { - "wordGroup": [ - "extended", - "detention", - "violent", - "sexual", - "under", - "18" - ] - }, - { - "wordGroup": [ - "EXTDVSU" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label": "Extended sentence of detention term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label": "Extended sentence of detention term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label": "Extended sentence of detention term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label": "Extended sentence of detention term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label": "Appropriate custodial term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label": "Extension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 500, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", - "label": "Reason for significant risk to public of serious harm", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1007", - "adjournment": false, - "convicted": true, - "qualifier": "AF", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "892de3ce-1e80-454e-8c72-44e694b06e93", - "label": "Detained at Her Majesty's pleasure (under 18)(S.90)", - "shortCode": "DETMP", - "level": "O", - "rank": 9400, - "wordGroups": [ - { - "wordGroup": [ - "detained", - "pleasure", - "under", - "18" - ] - }, - { - "wordGroup": [ - "detained", - "majesty" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label": "Minimum term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1003", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "optional" - } - ] - }, - { - "id": "70fe7114-b511-4d9b-a550-2c040b9a8d34", - "label": "Detained for specified period for serious offence (under 18)(S.91)", - "shortCode": "DETSO", - "level": "O", - "rank": 9500, - "wordGroups": [ - { - "wordGroup": [ - "detained", - "Period", - "serious", - "under", - "18" - ] - }, - { - "wordGroup": [ - "detained", - "Period" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ab6cc1f6-011b-4744-accc-bba181614188", - "label": "Detention Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab6cc1f6-011b-4744-accc-bba181614188", - "label": "Detention Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab6cc1f6-011b-4744-accc-bba181614188", - "label": "Detention Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ab6cc1f6-011b-4744-accc-bba181614188", - "label": "Detention Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "746c833a-7d33-4800-a40c-425dbacf7492", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": "concurrent", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "7784b81d-44d2-43c0-a903-a53b0e73683b", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": "consecutiveToOffenceNumber", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "da9c91a6-7090-44f3-8644-b4b184533fc4", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "8115982c-af5c-4439-b6ff-c9c6303a6292", - "label": "Detention reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1007", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "7f410e16-bda3-4bca-944e-ef88832e41b5", - "label": "Minimum sentence of detention in young offender institution for drug trafficking", - "shortCode": "MINDDT", - "level": "O", - "rank": 9600, - "wordGroups": [ - { - "wordGroup": [ - "minimum", - "detention", - "yoi", - "Drug" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label": "Custody period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label": "Custody period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label": "Custody period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label": "Custody period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1024", - "adjournment": false, - "convicted": true, - "qualifier": "AD", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "1bcdae76-37f8-4331-9076-fd46dbd4b1fc", - "label": "Minimum sentence of detention in young offender institution for domestic burglary", - "shortCode": "MINDDB", - "level": "O", - "rank": 9700, - "wordGroups": [ - { - "wordGroup": [ - "minimum", - "detention", - "yoi", - "domestic" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label": "Custody Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label": "Custody Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label": "Custody Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label": "Custody Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1024", - "adjournment": false, - "convicted": true, - "qualifier": "AE", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "47f143eb-7961-4e85-834b-1aa5e47cb3ef", - "label": "Minimum sentence of Imprisonment for drug trafficking", - "shortCode": "MINIDT", - "level": "O", - "rank": 9800, - "wordGroups": [ - { - "wordGroup": [ - "Miniumum", - "imprisonment", - "Drug" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1002", - "adjournment": false, - "convicted": true, - "qualifier": "AD", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "97fdae65-37a0-4156-912f-a35363e26f31", - "label": "Minimum sentence of Imprisonment for domestic burglary", - "shortCode": "MINIDB", - "level": "O", - "rank": 9900, - "wordGroups": [ - { - "wordGroup": [ - "minimum", - "imprisonment", - "domestic" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label": "Imprisonment Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "bailRemandDaysToCount", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label": "Number of days in custody in foreign jurisdiction to count", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1002", - "adjournment": false, - "convicted": true, - "qualifier": "AE", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType": "mandatory" - } - ] - }, - { - "id": "5679e5b7-0ca8-4d2a-ba80-7a50025fb589", - "label": "Suspended sentence order - detention in a young offender institution", - "shortCode": "SUSPSD", - "level": "O", - "rank": 10000, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "detention", - "yoi" - ] - }, - { - "wordGroup": [ - "suspended", - "detention" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label": "Custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label": "Custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label": "Custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label": "Custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "31e2a7a7-03fc-472b-97ad-67d5aae41a70", - "label": "Custody reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label": "The reasons for this", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual": null, - "reference": "responsibleOfficer", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court name", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "supervisingCourtName", - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d483e89c-4919-4248-a046-372a6a4532a6", - "label": "Reason for sentence without PSR", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1134", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType": "mandatory" - } - ] - }, - { - "id": "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "version": "2024-04-09T14:32:54.430Z", - "startDate": "2024-04-10", - "label": "Further curfew requirement made", - "shortCode": "CURA", - "level": "O", - "rank": 64200, - "wordGroups": [ - { - "wordGroup": [ - "CURA", - "Curfew", - "Curfew", - "second" - ] - } - ], - "prompts": [ - { - "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label": "Defendant to remain at", - "welshLabel": "Diffynnydd i aros yn", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 300, - "financial": "N", - "reference": "curfewAddressDetailsAndTimings", - "wordGroup": [ - "Curfew address" - ], - "userGroups": [], - "min": "1", - "max": "500", - "qual": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "e5b96ed6-7ec0-464d-a698-62bc94a7f52f", - "label": "Details and timings", - "welshLabel": "Manylion ac amseroedd", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 400, - "financial": "N", - "reference": "detailsAndTimings", - "userGroups": [], - "min": "1", - "max": "1500", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "6dd7348a-29e8-4487-a956-ae07d7fe7668", - "label": "End date", - "welshLabel": "Dyddiad terfyn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 200, - "financial": "N", - "reference": "endDate", - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label": "Start date", - "welshLabel": "Dyddiad cychwyn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, - "financial": "N", - "reference": "startDate", - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - } - ], - "welshLabel": "Gofyniad cyrffyw pellach wedi’i wneud", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Community Requirement", - "cjsCode": "3105", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "B", - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "resultTextTemplate": "Curfew Requirement: Further curfew requirement made. Start date {startDate}. End date {endDate}. Offender to remain at {curfewAddressDetailsAndTimings} {detailsAndTimings}", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "06f0ddcd-30d5-49ac-9500-3d66daeeda9b", - "label": "Suspended sentence order Scotland - detention in a young offender institution", - "shortCode": "SUSPSDS", - "level": "O", - "rank": 10100, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "detention", - "yoi", - "scotland" - ] - }, - { - "wordGroup": [ - "suspended", - "detention", - "scotland" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label": "Judge reserves breach proceedings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1100, - "duration": null, - "wordGroup": [ - "Breach" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "31e2a7a7-03fc-472b-97ad-67d5aae41a70", - "label": "Custody reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label": "The reasons for this", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ad4f684d-0a83-4ee1-b04f-7864487eb41c", - "label": "Appropriate Scottish Court", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5cf339ba-1dd4-4476-99a5-281c833dd134", - "label": "Locality in Scotland", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d483e89c-4919-4248-a046-372a6a4532a6", - "label": "Reason for sentence without PSR", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1134", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType": "optional" - } - ] - }, - { - "id": "a78b50cc-0777-403d-8e51-5458e1ee3513", - "label": "Suspended sentence order Northern Ireland - detention in a young offender institution", - "shortCode": "SUSPSDNI", - "level": "O", - "rank": 10200, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "detention", - "yoi", - "ireland" - ] - }, - { - "wordGroup": [ - "suspended", - "detention", - "ireland" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "95b20a96-8863-46e4-8779-b870ab74a385", - "label": "Custodial Period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": 1 - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label": "Judge reserves breach proceedings", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1000, - "duration": null, - "wordGroup": [ - "Breach" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "31e2a7a7-03fc-472b-97ad-67d5aae41a70", - "label": "Custody reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label": "The reasons for this", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "FIXLM", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", - "label": "Petty Sessions District", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d483e89c-4919-4248-a046-372a6a4532a6", - "label": "Reason for sentence without PSR", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1134", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType": "optional" - } - ] - }, - { - "id": "d4490cde-3f85-4f51-9545-e2648e458a13", - "label": "Suspended sentence of imprisonment activated unaltered", - "shortCode": "SSI", - "level": "O", - "rank": 10300, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "imprisonment", - "activate" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2395831b-5044-451f-acaf-259d00e01bea", - "label": "Sentenced in absence", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1100, - "duration": null, - "wordGroup": [ - "Absence" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "FH", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label": "Name of court that imposed suspended sentence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label": "Date suspended sentence imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "riskFactors", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label": "Total sentence consecutive to what", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d483e89c-4919-4248-a046-372a6a4532a6", - "label": "Reason for sentence without PSR", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1507", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "8847f470-7bf6-4d7f-aad3-efb31104f337", - "label": "Suspended sentence of imprisonment activated with lesser term", - "shortCode": "SSIV", - "level": "O", - "rank": 10400, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "imprisonment", - "activate", - "lesser" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label": "Lesser term imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label": "Lesser term imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label": "Lesser term imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label": "Lesser term imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 900, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 900, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 900, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 900, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2395831b-5044-451f-acaf-259d00e01bea", - "label": "Sentenced in absence", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1200, - "duration": null, - "wordGroup": [ - "Absence" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "FH", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label": "Name of court that imposed suspended sentence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label": "Date suspended sentence imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "riskFactors", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label": "Total sentence consecutive to what", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d483e89c-4919-4248-a046-372a6a4532a6", - "label": "Reason for sentence without PSR", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1100, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1507", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "1f9c69f6-8fb6-478e-95ba-4501974c3c00", - "label": "Suspended sentence of detention in a young offender institution activated unaltered", - "shortCode": "SSID", - "level": "O", - "rank": 10500, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "detention", - "activate" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2395831b-5044-451f-acaf-259d00e01bea", - "label": "Sentenced in absence", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1100, - "duration": null, - "wordGroup": [ - "Absence" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "FH", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label": "Name of court that imposed suspended sentence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label": "Date suspended sentence imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 800, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "prison", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": "riskFactors", - "courtExtract": "N", - "durationSequence": null - }, - { - "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label": "Total sentence consecutive to what", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "d483e89c-4919-4248-a046-372a6a4532a6", - "label": "Reason for sentence without PSR", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1200, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1300, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1507", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "01c907a7-6035-40d0-9b90-e25799797dda", - "label": "Suspended sentence of detention in a young offender institution activated with lesser term", - "shortCode": "SSIVD", - "level": "O", - "rank": 10600, - "wordGroups": [ - { - "wordGroup": [ - "suspended", - "detention", - "activate", - "lesser" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label": "Original custody term", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2c397327-1db7-4a5c-957d-85793f59deaa", - "label": "Original suspension period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label": "Concurrent", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "duration": null, - "wordGroup": [ - "Concurrent" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "C", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label": "Lesser term imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label": "Lesser term imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label": "Lesser term imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label": "Lesser term imposed", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 900, - "duration": "Years", - "wordGroup": [ - "Years" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 900, - "duration": "Months", - "wordGroup": [ - "Months" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 900, - "duration": "Weeks", - "wordGroup": [ - "Weeks" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "ca85396d-f597-47d7-9c4c-efe80754959e", - "label": "Total custodial period", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 900, - "duration": "Days", - "wordGroup": [ - "Days" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2395831b-5044-451f-acaf-259d00e01bea", - "label": "Sentenced in absence", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1200, - "duration": null, - "wordGroup": [ - "Absence" - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "FH", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label": "Consecutive to offence number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label": "Where consecutive to an offence on another case - specify that case number", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": "F", - "reference": null, - "courtExtract": "Y", - "durationSequence": null + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "OrganisationName", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label": "Name of court that imposed suspended sentence", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 600, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null + "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label" : "Supervising Court name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "supervisingCourtName", + "courtExtract" : "Y", + "durationSequence" : null }, { - "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label": "Date suspended sentence imposed", - "welshLabel": null, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 1", "resultPromptRule": "mandatory", - "type": "DATE", + "type": "NAMEADDRESS", "sequence": 700, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - }, - { - "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label": "Prison", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 900, - "duration": null, - "wordGroup": null, + "financial": "N", + "reference": "probationteamtobenotifiedAddress1", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": "prison", + "min": "", + "max": "", "courtExtract": "N", - "durationSequence": null + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label": "Risk or vulnerability factors", - "welshLabel": null, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 2", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress2", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": "riskFactors", + "min": "", + "max": "", "courtExtract": "N", - "durationSequence": null + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label": "Total sentence consecutive to what", - "welshLabel": null, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 3", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "duration": null, - "wordGroup": null, + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress3", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine3", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "d483e89c-4919-4248-a046-372a6a4532a6", - "label": "Reason for sentence without PSR", - "welshLabel": null, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 4", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1100, - "duration": null, - "wordGroup": null, + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress4", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine4", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified", - "welshLabel": null, + "label": "Probation team to be notified address line 5", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1300, - "duration": null, - "wordGroup": null, + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress5", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine5", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label": "Reasons", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1400, - "duration": null, - "wordGroup": null, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "fixedListId": null, - "qual": null, - "reference": null, - "courtExtract": "Y", - "durationSequence": null - } - ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "F", - "cjsCode": "1507", - "adjournment": false, - "convicted": true, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c93c5a18-838a-41d3-a017-c203b37f5655", - "label": "Adjournment reason: At request of the defence", - "shortCode": "DEF", - "level": "O", - "rank": 10700, - "wordGroups": [ - { - "wordGroup": [ - "adjournment", - "request", - "defence" - ] - } - ], - "userGroups": [], - "prompts": [ - { - "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label": "Additional information", - "welshLabel": null, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified post code", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedPostCode", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": "additionalInformation", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Rheswm dros ohirio: Ar gais yr amddiffyniad", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "DB", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Adjournment reasons", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "4958de15-8a0a-4d2b-9f7e-56e037cf03da", - "label": "Adjournment reason: For the trial to take place", - "shortCode": "TRIAL", - "level": "O", - "rank": 10800, - "wordGroups": [ - { - "wordGroup": [ - "adjournment", - "trial" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "welshLabel": "Rheswm dros ohirio: Er mwyn cynnal y treial", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "GC", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Adjournment reasons", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", - "label": "Adjournment reason: At request of the prosecution", - "shortCode": "PROS", - "level": "O", - "rank": 10900, - "wordGroups": [ - { - "wordGroup": [ - "adjournment", - "request", - "prosecution" - ] - } - ], - "userGroups": [], - "prompts": [ + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "PostCode", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, { - "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label": "Additional information", - "welshLabel": null, - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "duration": null, - "wordGroup": null, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedEmailAddress1", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": "additionalInformation", - "courtExtract": "Y", - "durationSequence": null - } - ], - "welshLabel": "Rheswm dros ohirio: Ar gais yr erlyniad", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "DC", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Adjournment reasons", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "c2eca548-4511-4023-bbe6-50fe0b679b4a", - "label": "Adjournment reason: To plead guilty or not guilty to the offence(s)", - "shortCode": "PLEA", - "level": "O", - "rank": 11000, - "wordGroups": [ + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, { - "wordGroup": [ - "adjournment", - "plea" - ] - } - ], - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "prompts": [], - "welshLabel": "Rheswm dros ohirio: I bledio’n euog neu’n ddieuog i'r trosedd(au)", - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "adjournment": false, - "convicted": false, - "qualifier": "DM", - "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Adjournment reasons", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "label": "Community requirement: Curfew waived", - "shortCode": "CURW", - "level": "O", - "rank": 1800, - "wordGroups": [ + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedEmailAddress2", + "userGroups": [ + + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, { - "wordGroup": [ - "Curfew", - "waived" - ] - } - ], - "userGroups": [], - "prompts": [ + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": "Swyddog cyfrifol", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "financial": "N", + "reference": "responsibleOfficer", + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "userGroups": [ + + ], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, { - "id": "040c7d54-3e56-4ed1-8004-d63ab3cd5128", - "label": "Date excused", - "welshLabel": null, + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "welshLabel": "Dyddiad terfyn", "resultPromptRule": "mandatory", "type": "DATE", "sequence": 100, - "duration": null, - "wordGroup": null, + "financial": "N", + "reference": "endDate", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": null, "courtExtract": "Y", - "durationSequence": null + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "isDurationEndDate": true, + "associatedWithReferenceData": false }, { - "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", - "label": "Excused time from", - "welshLabel": null, - "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, - "duration": null, - "wordGroup": null, + "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", + "label": "Direction that a failure to comply be dealt with by magistrates' court", + "welshLabel": "Cyfarwyddyd bod llys ynadon yn delio â methiant i gydymffurfio", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "financial": "N", + "reference": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": null, "courtExtract": "Y", - "durationSequence": null + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "ba3cd0c4-2bd0-4b02-9636-2064e293466b", - "label": "Excused time to", - "welshLabel": null, + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "welshLabel": "Llys sy’n Goruchwylio", "resultPromptRule": "mandatory", - "type": "TIME", + "type": "FIXL", "sequence": 300, - "duration": null, - "wordGroup": null, + "financial": "N", + "reference": "supervisingCourt", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": null, + "min": "1", + "max": "120", "courtExtract": "Y", - "durationSequence": null + "jurisdiction": "B", + "hidden": false, + "referenceDataKey": "supervisingCourt", + "nameEmail": false, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "3a71ea3c-2083-4584-8c73-e7bb0608c468", - "label": "Excused reason", - "welshLabel": null, - "resultPromptRule": "mandatory", + "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", + "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", + "welshLabel": "Mae'r diffynnydd yn droseddwr parhaus a ddirwywyd yn flaenorol, mae gwneud gorchymyn cymunedol yn lle gosod dirwy am y drosedd hon er budd cyfiawnder oherwydd", + "resultPromptRule": "optional", "type": "TXT", "sequence": 400, - "duration": null, - "wordGroup": null, + "financial": "N", + "reference": "persistentOffenderPreviouslyFined", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": null, + "min": "1", + "max": "1000", "courtExtract": "Y", - "durationSequence": null - }, + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false}, { - "id": "e4fb2729-c6e4-4d32-b3f0-24285f625a87", - "label": "Other curfew requirements", - "welshLabel": null, + + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "REV", + "welshLabel": "REV", "resultPromptRule": "optional", "type": "TXT", - "sequence": 500, - "duration": null, - "wordGroup": null, + "sequence": 400, + "financial": "N", + "reference": "HTYPE", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": null, + "min": "1", + "max": "1000", "courtExtract": "Y", - "durationSequence": null + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false } ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "3105", - "adjournment": false, - "convicted": true, + "welshLabel": "Gorchymyn cymunedol Cymru / Lloegr", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "Y", + "d20": false, + "dvlaCode": "M", + "cjsCode": "1116", "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "Community Requirement", "terminatesOffenceProceedings": false, "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": false, "publishedAsAPrompt": false, "excludedFromResults": false, - "alwaysPublished": true, - "urgent": false, - "d20": false, - "resultDefinitionRules": [] + "alwaysPublished": false, + "jurisdiction": "B", + "libraCode": "COEW", + "lCode": "COEW", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "ruleType": "mandatory" + } + ], + "canBeSubjectOfBreach": true, + "canBeSubjectOfVariation": true, + "isAvailableForCourtExtract": true, + "isBooleanResult": false }, { - "id": "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", - "label": "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity", - "shortCode": "D49", - "level": "O", - "rank": 60000, + "id" : "6feb0f2e-8d1e-40c7-af2c-05b28c69e5fc", + "label" : "Withdrawn (notice produced)", + "shortCode" : "WDRNNOT", + "level" : "O", + "rank" : 41600, + "wordGroups" : [ { + "wordGroup" : [ "withdrawn", "notice" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "2063", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "615313b5-0647-4d61-b7b8-6b36265d8929", + "label" : "No collection order reason", + "shortCode" : "NOCOLLO", + "level" : "D", + "rank" : 41700, + "wordGroups" : [ { + "wordGroup" : [ "no", "collection", "reason" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", + "label" : "Reason for no collection order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "4e66b3e0-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "04f4c331-754c-4153-9933-3411843836a4", + "label" : "Additional reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Rheswm dros beidio â gwneud Gorchymyn Casglu", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "eb2e4c4f-b738-4a4d-9cce-0572cecb7cb8", + "label" : "Withdrawn", + "shortCode" : "WDRN", + "level" : "O", + "rank" : 41800, + "wordGroups" : [ { + "wordGroup" : [ "WDRN" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "2063", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c8326b9e-56eb-406c-b74b-9f90c772b657", + "label" : "Withdrawn (recharge at named Court)", + "shortCode" : "WDRNOS", + "level" : "O", + "rank" : 41900, + "wordGroups" : [ { + "wordGroup" : [ "withdrawn", "recharge", "court" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "9d3ed4ee-40ad-41c4-9778-a657e8e7605e", + "label" : "Court handling re-charged offence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "4010", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "eaecff82-32da-4cc1-b530-b55195485cc7", + "label" : "Withdrawn (recharge at unnamed Court)", + "shortCode" : "WDRNOU", + "level" : "O", + "rank" : 42000, + "wordGroups" : [ { + "wordGroup" : [ "withdrawn", "recharge", "unnamed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "4010", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "40cf92bc-1dd9-492c-a7c5-d0d337e91994", + "label" : "Wasted costs order - defendant to pay", + "shortCode" : "WCOD", + "level" : "O", + "rank" : 42100, + "wordGroups" : [ { + "wordGroup" : [ "wasted", "Costs" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "d5c1709c-bbe2-46af-b3e0-91fc2562a120", + "label" : "Full amount of costs due to creditor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "22ebf965-8a1c-4229-9894-0df7f8117753", + "label" : "Major creditor name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", + "qual" : null, + "reference" : "CREDNAME", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "2505", + "adjournment" : false, + "convicted" : false, + "qualifier" : "IE", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b786ce8a-ce7a-4fa1-94ce-a3d9777574e4", + "label" : "Pay costs to named party (inter partes costs)", + "shortCode" : "IPC", + "level" : "C", + "rank" : 42200, + "wordGroups" : [ { + "wordGroup" : [ "pay", "Costs", "names" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "247cfcbd-582e-4e79-bdac-567ad04fbfb3", + "label" : "Name of party to pay the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2a7dbf0b-4090-4d0b-abcc-fbf38302d11a", + "label" : "Amount of costs", + "welshLabel" : "Swm y costau", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "13405496-927f-422c-9b32-1b8d90fe7ebe", + "label" : "Name of party to receive costs", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68159a17-22a7-4744-815e-7cd539948af1", + "label" : "Payment terms", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f5759650-31a1-11e8-b467-0ed5f89f718b", + "label" : "Money security forfeited", + "shortCode" : "SECMF", + "level" : "O", + "rank" : 42300, + "userGroups" : [ ], + "prompts" : [ { + "id" : "3e124994-31a2-11e8-b467-0ed5f89f718b", + "label" : "Amount forfeited", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4f058bd0-31a2-11e8-b467-0ed5f89f718b", + "label" : "Youth rehabilitation order England / Wales", + "shortCode" : "YRO", + "level" : "O", + "rank" : 42400, + "wordGroups" : [ { + "wordGroup" : [ "youth", "Rehabilitation", "Order" ] + }, { + "wordGroup" : [ "YRO" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label" : "Judge reserves breach proceedings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 700, + "duration" : null, + "wordGroup" : [ "Breach" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label" : "End Date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label" : "Start Date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label" : "Youth offending team to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label" : "Responsible officer", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual" : null, + "reference" : "responsibleOfficer", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label" : "Supervising Court name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "supervisingCourtName", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1141", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "574fb809-4473-4a90-ba0f-519a50cfc9ec", + "label" : "Youth rehabilitation requirement: Activity - specified", + "shortCode" : "YRA1", + "level" : "O", + "rank" : 42600, + "userGroups" : [ ], + "prompts" : [ { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab3c3545-4a09-4a32-b779-33e96763debe", + "label" : "Activity", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3102", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "abb95a52-2a75-40c3-8d3f-a1d75a199c47", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Imprisonment", + "shortCode" : "imp", + "level" : "O", + "rank" : 4900, + "resultWording": "section 12(c)", + "wordGroups" : [ { + "wordGroup" : [ "imp" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "76f15753-1706-42fb-b922-0d56d01e5706", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "imprisonmentPeriod", + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "76f15753-1706-42fb-b922-0d56d01e5706", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "imprisonmentPeriod", + "isAvailableForCourtExtract" : true, + "durationSequence" : 1 + }, { + "id" : "76f15753-1706-42fb-b922-0d56d01e5706", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "imprisonmentPeriod", + "courtExtract" : "N", + "durationSequence" : 1 + }, { + "id" : "76f15753-1706-42fb-b922-0d56d01e5706", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "imprisonmentPeriod", + "isAvailableForCourtExtract" : false, + "durationSequence" : 1 + }, { + "id" : "321c3fd8-ea44-4ccc-b763-bc693ee6be0f", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : "concurrent", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7b5ba551-7adb-4555-93b1-dcb6f027f02f", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : "consecutiveToOffenceNumber", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9637677e-c2d7-4609-a750-ffe90eba9351", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : "whereConsecutiveToAnOffence", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e307f79-d4ca-466e-8c5c-a7d874c89b39", + "label" : "Imprisonment reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : "imprisonmentReasons", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "622aa563-a3db-4102-ba7e-21c21cee0110", + "label" : "The reasons for this", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual" : null, + "reference" : "theReasonForThis", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1002", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "55a1cab9-8aa6-41f6-a116-0345198324e6", + "label" : "Youth rehabilitation requirement: Activity at specified place", + "shortCode" : "YRA2", + "level" : "O", + "rank" : 42700, + "userGroups" : [ ], + "prompts" : [ { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7365f685-e91e-4a5f-8021-34246eb56fcb", + "label" : "Place to attend", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d0e31533-c60f-4b90-a98a-4a9678ecf69e", + "label" : "Person to go to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3102", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", + "label" : "Youth rehabilitation requirement: Activity with residential exercise at a place", + "shortCode" : "YRA3", + "level" : "O", + "rank" : 42800, + "userGroups" : [ ], + "prompts" : [ { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "72a96d2c-d41e-426f-a824-6dffc607ecfc", + "label" : "Residential exercise place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3102", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c5e204ce-9a2d-4911-96f7-e189565f429e", + "label" : "Youth rehabilitation requirement: Activity with residential exercise", + "shortCode" : "YRA4", + "level" : "O", + "rank" : 42900, + "userGroups" : [ ], + "prompts" : [ { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "90bc2885-5f74-4b35-ba58-33da0ef1f1df", + "label" : "Activity", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3102", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", + "label" : "Youth rehabilitation requirement: Activity - engage in activities in accordance with instructions of responsible officer", + "shortCode" : "YRA5", + "level" : "O", + "rank" : 43000, + "userGroups" : [ ], + "prompts" : [ { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "96bd9a5b-005c-42ac-b188-fcb786e53b4a", + "label" : "Responsible officer may require participation in residential exercise for not more than 7 days", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3102", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "191ec139-10b6-4b18-8a2c-1359425244c3", + "label" : "Youth rehabilitation requirement: Activity - engage in residential activity in accordance with instructions of responsible officer", + "shortCode" : "YRA6", + "level" : "O", + "rank" : 43100, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3102", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "536adc8b-1f26-43f0-9659-4bf25e2b42db", + "label" : "Youth rehabilitation requirement: Programme", + "shortCode" : "YRP1", + "level" : "O", + "rank" : 43200, + "userGroups" : [ ], + "prompts" : [ { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", + "label" : "Programme name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7365f685-e91e-4a5f-8021-34246eb56fcb", + "label" : "Place to attend", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3103", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "1819e6a0-b13d-47e0-9027-388819457256", + "label" : "Youth rehabilitation requirement: Programme with residence", + "shortCode" : "YRP2", + "level" : "O", + "rank" : 43300, + "userGroups" : [ ], + "prompts" : [ { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", + "label" : "Programme name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4224806d-6caa-48a7-8f80-5ce1ff6baf5b", + "label" : "Place to reside", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3103", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "27528205-a237-471b-a487-7943e9284c44", + "label" : "Youth rehabilitation requirement: Attendance centre", + "shortCode" : "YRAC1", + "level" : "O", + "rank" : 43400, + "userGroups" : [ ], + "prompts" : [ { + "id" : "f13d59b1-88a1-4ad0-972c-e86a22cdd700", + "label" : "Number of hours", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Hours" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0995a846-ba03-41b0-bb65-e50323296bdb", + "label" : "Attendance Centre name / contact", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "28e2f7e0-8886-4cf6-a828-776849f8d3d4", + "label" : "Additional / concurrent to what", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3111", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d3313cb9-c75e-45e4-b833-8479ff80f9ac", + "label" : "Youth rehabilitation requirement: Prohibited activity for a period", + "shortCode" : "YRPA1", + "level" : "O", + "rank" : 43500, + "userGroups" : [ ], + "prompts" : [ { + "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label" : "Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label" : "Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label" : "Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label" : "Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label" : "Prohibited activities", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3104", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", + "label" : "Youth rehabilitation requirement: Prohibited activity for specified days", + "shortCode" : "YRPA2", + "level" : "O", + "rank" : 43600, + "userGroups" : [ ], + "prompts" : [ { + "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label" : "Prohibited activities", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "939bb78c-6e15-4270-b22b-86fad8021d53", + "label" : "Days of the week", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3104", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "72393fb6-77dd-45b2-98f5-6612966de882", + "label" : "Committed to young offender institution", + "shortCode" : "yoi", + "level" : "O", + "rank" : 5000, + "wordGroups" : [ { + "wordGroup" : [ "yoi" ] + }, { + "wordGroup" : [ "committed", "young", "institution" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d4d8f560-8bf0-4fb3-8bb6-ff90c961c20c", + "label" : "Custody reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "69c444b1-9e98-4d1c-9128-dc856a00d8a0", + "label" : "The reasons for this", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1024", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "fb9fedf8-2b60-496b-8147-168233e81be3", + "label" : "Youth rehabilitation requirement: Supervision", + "shortCode" : "YRS1", + "level" : "O", + "rank" : 43700, + "userGroups" : [ ], + "prompts" : [ { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "1044", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5ab456c8-d272-4082-87ed-cd1f44a0603a", + "label" : "Youth rehabilitation requirement: Unpaid work", + "shortCode" : "YRUP1", + "level" : "O", + "rank" : 43800, + "userGroups" : [ ], + "prompts" : [ { + "id" : "83f27f8b-0d02-4f19-bbde-3619b88c06ac", + "label" : "Number of hours", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Hours", + "wordGroup" : [ "Hours" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "28e2f7e0-8886-4cf6-a828-776849f8d3d4", + "label" : "Additional / concurrent to what", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3101", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "8f979084-dc3b-4e71-bceb-87e30a4fc381", + "label" : "Youth rehabilitation requirement: Residence at a specified place", + "shortCode" : "YRR1", + "level" : "O", + "rank" : 43900, + "userGroups" : [ ], + "prompts" : [ { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null, + "hidden" : false + }, { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null, + "hidden" : false + }, { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null, + "hidden" : false + }, { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0d0b4ec0-1d58-4d53-99aa-96bb0bd12db1", + "label" : "Place to reside at", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd192d80-cf96-403e-9c3b-c0738d5a4a13", + "label" : "Responsible office may approve different address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3107", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", + "label" : "Youth rehabilitation requirement: Residence with an individual", + "shortCode" : "YRR2", + "level" : "O", + "rank" : 44000, + "userGroups" : [ ], + "prompts" : [ { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d611217b-4778-4bec-a056-8c821aa6bc22", + "label" : "Name of person to live with", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3107", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "63f8c00a-2115-46a9-94ff-b30bbad0f287", + "label" : "Youth rehabilitation requirement: Residence in local authority accommodation", + "shortCode" : "YRR3", + "level" : "O", + "rank" : 44100, + "userGroups" : [ ], + "prompts" : [ { + "id" : "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", + "label" : "Period of residence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f63f692f-3bfc-4d0f-8e45-acd99b06431c", + "label" : "Name of local authority", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "eecf7565-8c4a-4059-9a97-b83a7f975e22", + "label" : "Name of person youth must NOT reside with", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3107", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "30bd1b11-5336-486e-aae6-1285ab4c8d65", + "label" : "Youth rehabilitation requirement: Mental health treatment", + "shortCode" : "YRM1", + "level" : "O", + "rank" : 44200, + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label" : "Medical practitioner / Psychologist", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3108", + "adjournment" : false, + "convicted" : true, + "qualifier" : "HG", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", + "label" : "Youth rehabilitation requirement: Mental health treatment residential patient", + "shortCode" : "YRM2", + "level" : "O", + "rank" : 44300, + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label" : "Medical practitioner / Psychologist", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fb580537-9d36-4139-811b-77af09547b0d", + "label" : "Care home / Hospital", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3108", + "adjournment" : false, + "convicted" : true, + "qualifier" : "HE", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", + "label" : "Youth rehabilitation requirement: Mental health treatment non-residential patient", + "shortCode" : "YRM3", + "level" : "O", + "rank" : 44400, + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label" : "Medical practitioner / Psychologist", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3108", + "adjournment" : false, + "convicted" : true, + "qualifier" : "HF", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", + "label" : "Youth rehabilitation requirement: Drug treatment as a resident", + "shortCode" : "YRD1", + "level" : "O", + "rank" : 44500, + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1b625180-fd12-4422-9150-3185ac672151", + "label" : "Name of institution / place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label" : "By or under the direction of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3128", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BM", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", + "label" : "Youth rehabilitation requirement: Drug treatment as a non-resident", + "shortCode" : "YRD2", + "level" : "O", + "rank" : 44600, + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1b625180-fd12-4422-9150-3185ac672151", + "label" : "Name of institution / place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label" : "By or under the direction of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3128", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BS", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4e786114-e1c0-42bb-9c52-64edeffa3a3b", + "label" : "Youth rehabilitation requirement: Drug testing", + "shortCode" : "YRDT1", + "level" : "O", + "rank" : 44700, + "userGroups" : [ ], + "prompts" : [ { + "id" : "da2007ba-6b96-4b88-b518-ca7a27144e2d", + "label" : "Minimum number of occasions a month samples are to be provided", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3129", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BT", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "1e78e819-13fc-4e14-a263-c632e4e3c85e", + "label" : "Youth rehabilitation requirement: Intoxicating substance treatment as a non-resident", + "shortCode" : "YRI1", + "level" : "O", + "rank" : 44800, + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6aaf3645-0806-4917-ada5-b019c6a606c5", + "label" : "Treatment intervals", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1b625180-fd12-4422-9150-3185ac672151", + "label" : "Name of institution / place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label" : "By or under the direction of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3130", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "03a1cbef-e54a-4a00-bcd5-44350f882ced", + "label" : "Youth rehabilitation requirement: Intoxicating substance treatment as a resident", + "shortCode" : "YRI2", + "level" : "O", + "rank" : 44900, + "userGroups" : [ ], + "prompts" : [ { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label" : "Period of treatment", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1b625180-fd12-4422-9150-3185ac672151", + "label" : "Name of institution / place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label" : "By or under the direction of", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3130", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a17f9787-ba56-43d4-be5f-6fc91d29646e", + "label" : "Youth rehabilitation requirement: Education", + "shortCode" : "YRE1", + "level" : "O", + "rank" : 45000, + "userGroups" : [ ], + "prompts" : [ { + "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label" : "Period of education", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label" : "Period of education", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label" : "Period of education", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label" : "Period of education", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6766cc06-f1de-443f-8a6b-2ba64cc222f4", + "label" : "Local Authority", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3131", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b986b6ad-816c-44d6-bdf8-0df189732648", + "label" : "Youth rehabilitation requirement: Exclusion not to enter for a period", + "shortCode" : "YREX1", + "level" : "O", + "rank" : 45100, + "userGroups" : [ ], + "prompts" : [ { + "id" : "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", + "label" : "Period of exclusion", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", + "label" : "Period of exclusion", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", + "label" : "Period of exclusion", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", + "label" : "Place / area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6d322ff1-1d95-4053-ac79-19d1b7874f2d", + "label" : "End date of exclusion", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3106", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a15102d7-a151-425a-a827-0e35bc159049", + "label" : "Youth rehabilitation requirement: Exclusion not to enter with between dates", + "shortCode" : "YREX2", + "level" : "O", + "rank" : 45200, + "userGroups" : [ ], + "prompts" : [ { + "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", + "label" : "Place / area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ac46c9c8-976d-40ef-a913-85c64a6859bc", + "label" : "From date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9e41b95c-c776-4d95-b057-05b7fcb155aa", + "label" : "Until date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3106", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "416684ab-755f-4958-ab83-2795a21d62a3", + "label" : "Youth rehabilitation requirement: Exclusion not to enter for a period with electronic monitoring", + "shortCode" : "YREX3", + "level" : "O", + "rank" : 45300, + "userGroups" : [ ], + "prompts" : [ { + "id" : "e4f5a70e-c140-4993-ba09-e07ae067a758", + "label" : "Exclusion and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e4f5a70e-c140-4993-ba09-e07ae067a758", + "label" : "Exclusion and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e4f5a70e-c140-4993-ba09-e07ae067a758", + "label" : "Exclusion and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", + "label" : "Place / area", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", + "label" : "Start date for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f02e3b28-83e7-4650-a8e1-810bbb464bb4", + "label" : "Start time for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", + "label" : "End date for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "487358be-eccc-46e4-aa8e-e41495638a2c", + "label" : "End time for tag", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label" : "Contractor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : "contractor", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3106", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d79c92bb-c301-491a-b4d2-cb86e473b5af", + "label" : "Youth rehabilitation requirement: Curfew with electronic monitoring", + "shortCode" : "YRC1", + "level" : "O", + "rank" : 45400, + "userGroups" : [ ], + "prompts" : [ { + "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label" : "Curfew and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAndElectricalMonitoringPeriod", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label" : "Curfew and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAndElectricalMonitoringPeriod", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label" : "Curfew and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAndElectricalMonitoringPeriod", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label" : "Start date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f18d4d90-954d-4b27-9e70-f4be9c487b0e", + "label" : "Start time", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startTime", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd6186a4-d928-47f1-abee-2466b9b80ebf", + "label" : "End time", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endTime", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label" : "Curfew address, details and timings", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAddressDetailAndTiming", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label" : "Contractor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : "contractor", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3105", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0f7eade6-3602-486c-8491-45e2bdee9960", + "label" : "Youth rehabilitation requirement: Curfew", + "shortCode" : "YRC2", + "level" : "O", + "rank" : 45500, + "userGroups" : [ ], + "prompts" : [ { + "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", + "label" : "Curfew period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", + "label" : "Curfew period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", + "label" : "Curfew period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label" : "Start date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label" : "Curfew address, details and timings", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAddressDetailAndTiming", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3105", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b8654020-f9ed-4707-8757-8db6efb323b9", + "label" : "Youth rehabilitation requirement: Curfew with second address", + "shortCode" : "YRC3", + "level" : "O", + "rank" : 45600, + "userGroups" : [ ], + "prompts" : [ { + "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label" : "Start date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label" : "Curfew address, details and timings", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAddressDetailAndTiming", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3105", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "49939c7c-750f-403e-9ce1-f82e3e568065", + "label" : "No separate penalty", + "shortCode" : "NSP", + "level" : "O", + "rank" : 5200, + "wordGroups" : [ { + "wordGroup" : [ "NSP" ] + }, { + "wordGroup" : [ "seperate", "penalty" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1057", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "78d6e77c-fb17-46ae-a719-66eacd6281a9", + "label" : "Youth rehabilitation requirement: Curfew waived", + "shortCode" : "YRC4", + "level" : "O", + "rank" : 45700, + "userGroups" : [ ], + "prompts" : [ { + "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label" : "Judge reserves breach proceedings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1200, + "duration" : null, + "wordGroup" : [ "Breach" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "040c7d54-3e56-4ed1-8004-d63ab3cd5128", + "label" : "Date excused", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", + "label" : "Excused time from", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ba3cd0c4-2bd0-4b02-9636-2064e293466b", + "label" : "Excused time to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3a71ea3c-2083-4584-8c73-e7bb0608c468", + "label" : "Excused reason", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e4fb2729-c6e4-4d32-b3f0-24285f625a87", + "label" : "Other curfew requirements", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label" : "End Date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label" : "Start Date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label" : "Youth offending team to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label" : "Responsible officer", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual" : null, + "reference" : "responsibleOfficer", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label" : "Supervising Court name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "supervisingCourtName", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0b5ce679-b262-436d-8f94-aa78de85022a", + "label" : "Youth rehabilitation order with intensive supervision and surveillance England / Wales", + "shortCode" : "YROISS", + "level" : "O", + "rank" : 45800, + "wordGroups" : [ { + "wordGroup" : [ "YROISS" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1142", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ae8c21a9-cf2a-487b-8fae-58d50c7104f0", + "label" : "Youth rehabilitation order with fostering England / Wales", + "shortCode" : "YROF", + "level" : "O", + "rank" : 45900, + "wordGroups" : [ { + "wordGroup" : [ "YROF" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", + "label" : "Period of fostering", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", + "label" : "Period of fostering", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", + "label" : "Period of fostering", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label" : "Judge reserves breach proceedings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 900, + "duration" : null, + "wordGroup" : [ "Breach" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label" : "End Date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label" : "Start Date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9de7d91b-77a2-4de4-bde0-8481d1f5b42e", + "label" : "Name of local authority", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label" : "Youth offending team to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label" : "Responsible officer", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual" : null, + "reference" : "responsibleOfficer", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label" : "Supervising Court name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "supervisingCourtName", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1143", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e9bdae5d-5bec-456c-a361-52d0dae89e11", + "label" : "Youth rehabilitation order Northern Ireland", + "shortCode" : "YRONI", + "level" : "O", + "rank" : 46000, + "userGroups" : [ ], + "prompts" : [ { + "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label" : "Judge reserves breach proceedings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : [ "Breach" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label" : "End Date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label" : "Start Date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2216f87f-7e1c-489e-a481-8c941796db49", + "label" : "Corresponding Northern Ireland order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label" : "Youth offending team to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "555a4eb3-548b-4b1e-84ee-8a000223da2f", + "label" : "Relevant officer", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d8162d74-5d0f-4841-a013-eba02a267ae5", + "label" : "Petty Sessional District in Northern Ireland", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1141", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "7dadfe69-9486-4edc-84ef-7d4f2e13633e", + "label" : "Youth rehabilitation order with intensive supervision and surveillance Northern Ireland", + "shortCode" : "YROINI", + "level" : "O", + "rank" : 46100, + "userGroups" : [ ], + "prompts" : [ { + "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label" : "Judge reserves breach proceedings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : [ "Breach" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label" : "End Date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label" : "Start Date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2216f87f-7e1c-489e-a481-8c941796db49", + "label" : "Corresponding Northern Ireland order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label" : "Youth offending team to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "555a4eb3-548b-4b1e-84ee-8a000223da2f", + "label" : "Relevant officer", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d8162d74-5d0f-4841-a013-eba02a267ae5", + "label" : "Petty Sessional District in Northern Ireland", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1142", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "48646574-8bd7-49f7-9fa1-3aeb60f7c059", + "label" : "Youth rehabilitation requirement: Extended activity - specified", + "shortCode" : "YREA1", + "level" : "O", + "rank" : 46200, + "userGroups" : [ ], + "prompts" : [ { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e0b217c9-73aa-48b2-b168-56dcd5c1e75c", + "label" : "Extended activity", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7365f685-e91e-4a5f-8021-34246eb56fcb", + "label" : "Place to attend", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d0e31533-c60f-4b90-a98a-4a9678ecf69e", + "label" : "Person to go to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3102", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "79deff01-d3b0-4453-b290-ea34c60ce3e9", + "label" : "Youth rehabilitation requirement: Extended activity with residential exercise at a place", + "shortCode" : "YREA2", + "level" : "O", + "rank" : 46300, + "userGroups" : [ ], + "prompts" : [ { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "72a96d2c-d41e-426f-a824-6dffc607ecfc", + "label" : "Residential exercise place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3102", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", + "label" : "Youth rehabilitation requirement: Extended activity with residential exercise", + "shortCode" : "YREA3", + "level" : "O", + "rank" : 46400, + "userGroups" : [ ], + "prompts" : [ { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label" : "Period of residence exercise", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b85e1325-9fc1-436a-82f6-469f7f21de6a", + "label" : "Extended activity", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3102", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", + "label" : "Youth rehabilitation requirement: Extended activity - engage in activities in accordance with instructions of responsible officer", + "shortCode" : "YREA4", + "level" : "O", + "rank" : 46500, + "userGroups" : [ ], + "prompts" : [ { + "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", + "label" : "Number of days", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "96bd9a5b-005c-42ac-b188-fcb786e53b4a", + "label" : "Responsible officer may require participation in residential exercise for not more than 7 days", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3102", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Rehabilitation requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f029c131-16b3-4a6d-895d-00b609d858e9", + "label" : "Referral order", + "shortCode" : "YOP", + "level" : "O", + "rank" : 46600, + "userGroups" : [ ], + "prompts" : [ { + "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", + "label" : "Referral period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", + "label" : "Referral period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1100, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label" : "Total length of contract period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 1400, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label" : "Total length of contract period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 1400, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9a6e65d2-ecbc-471f-8433-5f95d478f650", + "label" : "Youth Offender Panel name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label" : "Youth offending team to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d928400b-8f20-4b9e-aff5-868aafa4cc27", + "label" : "Parent/Guardian's name", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f56d8811-15fb-4f82-b91e-fef8fcce3885", + "label" : "Parent/Guardian's address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c6677a77-7028-4674-85c9-1cbc2f0e0088", + "label" : "This parent / guardian must attend meetings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "29b5ced8-4101-4073-8642-1fa52791098a", + "label" : "This parent / guardian may attend meetings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "701fe552-5edd-477d-9fbf-4ed2c6e931e1", + "label" : "A local authority representative must attend meetings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0c25627d-07d0-406c-9e8e-08081a649cf5", + "label" : "A local authority representative may attend meetings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "848927d6-fcac-4e0d-96f7-92bb4455a162", + "label" : "This is a second referral order", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f1619e53-cdb4-4979-8211-7f92134c38c6", + "label" : "The Court certified the following facts", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", + "label" : "The Court made the following remarks", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1097", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "685cc7e9-8bd1-4559-a05c-d8a7a89f9779", + "label" : "Count to remain on file", + "shortCode" : "cremfile", + "level" : "O", + "rank" : 5300, + "wordGroups" : [ { + "wordGroup" : [ "Lie", "on", "file" ] + }, { + "wordGroup" : [ "cremfile" ] + }, { + "wordGroup" : [ "Count", "remain", "file" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "2008", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "843f1ba4-af62-4b5b-a5f2-51128b08a128", + "label" : "Referral order extended", + "shortCode" : "YOPE", + "level" : "O", + "rank" : 46700, + "userGroups" : [ ], + "prompts" : [ { + "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", + "label" : "Referral period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", + "label" : "Referral period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1000, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label" : "Total length of contract period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 1300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label" : "Total length of contract period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 1300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9a6e65d2-ecbc-471f-8433-5f95d478f650", + "label" : "Youth Offender Panel name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label" : "Youth offending team to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d928400b-8f20-4b9e-aff5-868aafa4cc27", + "label" : "Parent/Guardian's name", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f56d8811-15fb-4f82-b91e-fef8fcce3885", + "label" : "Parent/Guardian's address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c6677a77-7028-4674-85c9-1cbc2f0e0088", + "label" : "This parent / guardian must attend meetings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "29b5ced8-4101-4073-8642-1fa52791098a", + "label" : "This parent / guardian may attend meetings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "701fe552-5edd-477d-9fbf-4ed2c6e931e1", + "label" : "A local authority representative must attend meetings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0c25627d-07d0-406c-9e8e-08081a649cf5", + "label" : "A local authority representative may attend meetings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f1619e53-cdb4-4979-8211-7f92134c38c6", + "label" : "The Court certified the following facts", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", + "label" : "The Court made the following remarks", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1097", + "adjournment" : false, + "convicted" : true, + "qualifier" : "E", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b4cd9c69-ed12-4d23-948c-f35e7386a05f", + "label" : "Committed to prison for refusal to be sworn", + "shortCode" : "RSWN", + "level" : "O", + "rank" : 46800, + "wordGroups" : [ { + "wordGroup" : [ "prison", "refuse", "evidence" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", + "ruleType" : "optional" + } ] + }, { + "id" : "5f938747-a0aa-47b7-84a5-31fe87cfb15b", + "label" : "Committed to prison for refusal to affirm", + "shortCode" : "AFM", + "level" : "O", + "rank" : 46900, + "userGroups" : [ ], + "prompts" : [ { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", + "ruleType" : "optional" + } ] + }, { + "id" : "005c9631-a1f1-4222-9702-88fb9368a17c", + "label" : "Committed to prison for refusal to produce documents", + "shortCode" : "CPRPD", + "level" : "O", + "rank" : 47000, + "userGroups" : [ ], + "prompts" : [ { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "dbb41b1a-a302-485f-96f9-1632c7ce1eff", + "label" : "Documents or items to be produced", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", + "ruleType" : "optional" + } ] + }, { + "id" : "381f97b8-b8c8-45b0-a8d6-ac8f58da5493", + "label" : "Committed to prison for refusal to give evidence and produce documents", + "shortCode" : "EVP", + "level" : "O", + "rank" : 47100, + "userGroups" : [ ], + "prompts" : [ { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "dbb41b1a-a302-485f-96f9-1632c7ce1eff", + "label" : "Documents or items to be produced", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", + "ruleType" : "optional" + } ] + }, { + "id" : "c09416e2-327c-11e8-b467-0ed5f89f718b", + "label" : "Committed to prison for refusal to give evidence", + "shortCode" : "EV", + "level" : "O", + "rank" : 47200, + "userGroups" : [ ], + "prompts" : [ { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "riskFactors", + "courtExtract" : "N", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", + "ruleType" : "optional" + } ] + }, { + "id" : "8c67b30a-418c-11e8-842f-0ed5f89f718b", + "label" : "Defendant's details changed", + "shortCode" : "DDCH", + "level" : "D", + "rank" : 47300, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "4592", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "98138ec8-5dd3-11e8-9c2d-fa7ae01bbebc", + "label" : "Text", + "shortCode" : "TEXT", + "level" : "O", + "rank" : 47400, + "userGroups" : [ ], + "prompts" : [ { + "id" : "b4ac2e46-5dd3-11e8-9c2d-fa7ae01bbebc", + "label" : "Text", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", + "version": "2021-02-25T12:41:15.256Z", + "startDate": "2021-02-26", + "label": "Reserve Terms Lump sum", + "shortCode": "RLSUM", + "level": "D", + "rank": 9000, "wordGroups": [ { "wordGroup": [ - "Order", - "49", - "publicity" + "RLSUM" + ] + }, + { + "wordGroup": [ + "rt", + "ls" + ] + }, + { + "wordGroup": [ + "pay", + "reserve", + "terms", + "lump" + ] + }, + { + "wordGroup": [ + "terms", + "lump", + "sum", + "reserve" ] } ], - "userGroups": [], "prompts": [ { - "id": "8b419e6d-c248-4f9e-8638-470d237022b1", - "label": "Details of reporting restriction", - "welshLabel": null, + "id": "c131cab0-5dd6-11e8-9c2d-fa7ae01bbebc", + "label": "Pay lump sum in full within", + "welshLabel": "Talu cyfandaliad yn llawn o fewn", "resultPromptRule": "mandatory", - "type": "TXT", + "type": "FIXL", "sequence": 100, - "duration": null, - "wordGroup": null, + "financial": "N", + "reference": "LSPW", + "fixedListId": "cd4cc782-5dd6-11e8-9c2d-fa7ae01bbebc", "userGroups": [ - "Court Clerks", - "Legal Advisers" + ], - "fixedListId": null, - "qual": null, - "reference": null, "courtExtract": "Y", - "durationSequence": null + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false } ], - "isAvailableForCourtExtract": true, - "financial": false, - "category": "A", - "cjsCode": "4509", - "adjournment": false, - "convicted": false, + "welshLabel": "Cyfandaliad y Telerau Wrth Gefn", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Payment terms", "postHearingCustodyStatus": "A", - "resultDefinitionGroup": "PressOn", "terminatesOffenceProceedings": false, "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, "publishedAsAPrompt": false, "excludedFromResults": false, - "alwaysPublished": false, + "alwaysPublished": true, + "jurisdiction": "M", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, { + "id" : "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", + "label" : "Reserve Terms Lump sum plus instalments", + "shortCode" : "RLSUMI", + "level" : "C", + "rank" : 47600, + "wordGroups" : [ { + "wordGroup" : [ "pay", "reserve", "terms", "lump", "sum", "instalments" ] + }, { + "wordGroup" : [ "reserve", "terms", "lump", "sum", "instalments" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8e235a65-5ea2-4fff-ba3b-6cdb74195436", + "label" : "Lump sum amount", + "welshLabel" : "Cyfanswm y lwmp swm", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "LSA", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", + "label" : "Instalment amount", + "welshLabel" : "Swm y rhandaliad", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "IAMT", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b487696e-dfc9-4c89-80d3-337a4319e925", + "label" : "Instalment start date", + "welshLabel" : "Dyddiad cychwyn y rhandaliad", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f2a61e80-c13e-4f44-8e91-8ce23e85596b", + "label" : "Payment frequency", + "welshLabel" : "Amlder y taliadau", + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual" : null, + "reference" : "PF", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Lwmp swm a rhandaliadau - Telerau Wrth Gefn", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Payment terms", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2236c06f-ad8e-4620-abbe-0ee214fa885c", + "label" : "Count quashed", + "shortCode" : "CQUASH", + "level" : "O", + "rank" : 5400, + "wordGroups" : [ { + "wordGroup" : [ "Count", "quashed" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", + "label" : "Reserve Terms Instalments only", + "shortCode" : "RINSTL", + "level" : "C", + "rank" : 47700, + "wordGroups" : [ { + "wordGroup" : [ "pay", "reserve", "terms", "instalments" ] + }, { + "wordGroup" : [ "reserve", "terms", "instalments" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", + "label" : "Instalment amount", + "welshLabel" : "Swm y rhandaliad", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "IAMT", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f2a61e80-c13e-4f44-8e91-8ce23e85596b", + "label" : "Payment frequency", + "welshLabel" : "Amlder y taliadau", + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual" : null, + "reference" : "PF", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e091af2e-43d0-495d-b3b0-432010358a45", + "label" : "Instalment start date", + "welshLabel" : "Dyddiad cychwyn y rhandaliad", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "ISTD", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Rhandaliadau yn unig - Telerau Wrth Gefn", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Payment terms", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", + "label" : "Lump sum plus instalments", + "shortCode" : "LUMSI", + "level" : "C", + "rank" : 47800, + "wordGroups" : [ { + "wordGroup" : [ "pay", "lump", "sum", "instalments" ] + }, { + "wordGroup" : [ "lump", "sum", "instalments" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "11ba492a-e2ad-11e8-9f32-f2801f1b9fd1", + "label" : "Lump sum amount", + "welshLabel" : "Cyfanswm y lwmp swm", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "LSA", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", + "label" : "Instalment amount", + "welshLabel" : "Swm y rhandaliad", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "IAMT", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fb4f761c-29d0-4a8e-a947-3debf281dab0", + "label" : "Payment frequency following lump sum", + "welshLabel" : "Amlder y taliadau yn dilyn lwmp swm", + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual" : null, + "reference" : "PF", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e091af2e-43d0-495d-b3b0-432010358a45", + "label" : "Instalment start date", + "welshLabel" : "Dyddiad cychwyn y rhandaliad", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "ISTD", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a9ad5002-ea38-4374-a475-4b352cdfa207", + "label" : "Parent / Guardian to pay", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "PARENT_GAURDIAN_TO_PAY", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", + "label" : "Number of days in default", + "welshLabel" : "Nifer y diwrnodau lle erys y ddyled heb ei thalu", + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "DID", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d0f08c9c-e1e5-46eb-b573-f1728bc51414", + "label" : "Payment card required", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "PAYMENT_CARD_REQUIRED", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Lwmp swm a rhandaliadau", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Payment terms", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", + "label" : "Instalments only", + "shortCode" : "INSTL", + "level" : "C", + "rank" : 47900, + "wordGroups" : [ { + "wordGroup" : [ "pay", "instalments", "only" ] + }, { + "wordGroup" : [ "instalments", "only" ] + }, { + "wordGroup" : [ "INSTL" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", + "label" : "Instalment amount", + "welshLabel" : "Swm y rhandaliad", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "IAMT", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f2a61e80-c13e-4f44-8e91-8ce23e85596b", + "label" : "Payment frequency", + "welshLabel" : "Amlder y taliadau", + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual" : null, + "reference" : "PF", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e091af2e-43d0-495d-b3b0-432010358a45", + "label" : "Instalment start date", + "welshLabel" : "Dyddiad cychwyn y rhandaliad", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "ISTD", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a9ad5002-ea38-4374-a475-4b352cdfa207", + "label" : "Parent / Guardian to pay", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "PARENT_GAURDIAN_TO_PAY", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", + "label" : "Number of days in default", + "welshLabel" : "Nifer y diwrnodau lle erys y ddyled heb ei thalu", + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "DID", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d0f08c9c-e1e5-46eb-b573-f1728bc51414", + "label" : "Payment card required", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "PAYMENT_CARD_REQUIRED", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Rhandaliadau yn unig", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Payment terms", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id": "4871697d-6dd1-4da2-8894-707e6b13c361", + "version": "2021-02-25T12:43:06.714Z", + "startDate": "2021-02-26", + "label": "Reserve Terms", + "shortCode": "RT", + "level": "D", + "rank": 8500, + "userGroups": [ + + ], + "welshLabel": "Telerau Wrth Gefn", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "I", "urgent": false, + "convicted": "N", "d20": false, - "resultDefinitionRules": [] - }, - { - "id": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", - "version": "2021-02-25T12:42:54.190Z", - "startDate": "2021-02-26", - "label": "Account Consolidated", - "shortCode": "ACON", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "jurisdiction": "B", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", + "ruleType": "oneOf" + } + ], + "isAvailableForCourtExtract": false, + "isBooleanResult": false + },{ + "id": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", + "version": "2022-01-10T09:35:43.154Z", + "startDate": "2022-01-11", + "label": "Application made for benefit deductions", + "shortCode": "ABDC", "level": "D", - "rank": 8800, + "rank": 600, "wordGroups": [ { "wordGroup": [ - "ACON" + "application", + "benefit", + "deductions" ] }, { "wordGroup": [ - "consolidated", - "account" + "ABDC" ] } ], "prompts": [ { - "id": "e6861c6e-0de2-4029-ab8c-c89769daea29", - "label": "Account to be consolidated with existing accounts", - "welshLabel": "Cyfrif i’w gyfuno â chyfrifon presennol", - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 200, - "financial": "N", - "reference": "accountToBeConsolidatedWithExistingAccounts", - "wordGroup": [ - "Consolidated" - ], - "userGroups": [ - ], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "d05f476d-a0b9-47c7-bf95-d9cfd591b747", - "label": "Account to be consolidated with existing account number", - "welshLabel": "Cyfrif i’w gyfuno â rhif cyfrif presennol", - "resultPromptRule": "oneOf", + "id": "91687bb9-d0ca-44a7-ada0-b89b71b89b8e", + "label": "DWP AP number", + "welshLabel": "Rhif AP DWP", + "resultPromptRule": "optional", "type": "TXT", - "sequence": 100, + "sequence": 200, "financial": "N", - "reference": "accountToBeConsolidatedWithExistingAccountNumber", - "wordGroup": [ - "Consolidated" - ], + "reference": "dWPAPNumber", "userGroups": [ + "CPS", + "Defence", + "Judiciary", + "NCES", + "Probation", + "Prosecuting Authorities", + "YOTs" ], - "min": "1", - "max": "20", - "courtExtract": "Y", + "min": "0", + "max": "10", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label": "Additional information", - "welshLabel": "Gwybodaeth ychwanegol", + "id": "8273d5ba-680e-11e8-adc0-fa7ae01bbebc", + "label": "Reason", + "welshLabel": "Rheswm", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, + "type": "FIXL", + "sequence": 100, "financial": "N", - "reference": "additionalInformation", + "reference": "reason", + "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", "userGroups": [ + ], - "min": "1", - "max": "1000", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -64361,7 +34861,7 @@ "associatedWithReferenceData": false } ], - "welshLabel": "Cyfrif wedi’i gyfuno", + "welshLabel": "Cais wedi'i wneud am ddidyniadau o fudd-dal", "financial": "N", "unscheduled": false, "adjournment": "N", @@ -64369,6 +34869,7 @@ "urgent": false, "convicted": "N", "d20": false, + "cjsCode": "1514", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, @@ -64377,221 +34878,1059 @@ "publishedAsAPrompt": false, "excludedFromResults": false, "alwaysPublished": true, - "jurisdiction": "B", - "libraCode": "ACON", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "8b1cff00-a456-40da-9ce4-f11c20959084", - "version": "2022-12-08T20:00:45.162Z", - "startDate": "2022-12-09", - "label": "Suspended sentence order - imprisonment", - "shortCode": "SUSPS", - "level": "O", - "rank": 30500, - "wordGroups": [ - { - "wordGroup": [ - "SUSPS" - ] - }, + "jurisdiction": "M", + "resultDefinitionRules": [ { - "wordGroup": [ - "suspended", - "imprisonment" - ] + "childResultDefinitionId": "4871697d-6dd1-4da2-8894-707e6b13c361", + "ruleType": "mandatory" } ], - "prompts": [ + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, { + "id" : "bdb32555-8d55-4dc1-b4b6-580db5132496", + "label" : "Attachment of earnings order", + "shortCode" : "AEOC", + "level" : "C", + "rank" : 48100, + "wordGroups" : [ { + "wordGroup" : [ "attachment", "earnings", "Order" ] + }, { + "wordGroup" : [ "AEOC" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a289b1bd-06c8-4da3-b117-0bae6017857c", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "485f7d22-718c-4f47-bbd5-f8d934417a03", + "label" : "Employer's name", + "welshLabel" : "Enw eich cyflogwr", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "employerName", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "86854563-b404-4cd4-9c05-50f1e61a0bfe", + "label" : "Employer's address Line 1", + "welshLabel" : "Llinell gyntaf cyfeiriad y cyflogwr", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "employerAddress1", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ef87b9fe-1d9d-46a2-b094-ce5ba24a9835", + "label" : "Employer's address Line 2", + "welshLabel" : "Ail linell cyfeiriad y cyflogwr", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "employerAddress2", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "df1d55f8-29dd-42d2-8f99-cb4d369cb38b", + "label" : "Employer's address Line 3", + "welshLabel" : "Trydedd linell cyfeiriad y cyflogwr", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "employerAddress3", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d3d8e5dc-4ced-4d57-bcbb-5de8f91a580a", + "label" : "Employer's address Line 4", + "welshLabel" : "Pedwaredd llinell cyfeiriad y cyflogwr", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "employerAddress4", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a812f1c7-96df-4d8d-9684-25e4e227b2e2", + "label" : "Employer's address Line 5", + "welshLabel" : "Pumed llinell cyfeiriad y cyflogwr", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "employerAddress5", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4ff32fe8-5508-4b7e-8e6f-b3e79763a9fe", + "label" : "Employer's post code", + "welshLabel" : "Cod post cyfeiriad y cyflogwr", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "employerPostCode", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "eb1d0fdc-2e51-4e98-9f6e-ee0daa14c157", + "label" : "Employee reference number", + "welshLabel" : "Cyfeirnod y cyflogai", + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "employerReferenceNumber", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Gorchymyn Atafaelu Enillion", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1511", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "76d43772-0660-4a33-b5c6-8f8ccaf6b4e3", + "label" : "Costs", + "shortCode" : "FCOST", + "level" : "C", + "rank" : 48200, + "wordGroups" : [ { + "wordGroup" : [ "FCOST" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "db261fd9-c6bb-4e10-b93f-9fd98418f7b0", + "label" : "Amount of costs", + "welshLabel" : "Swm y costau", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "AOC", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "22ebf965-8a1c-4229-9894-0df7f8117753", + "label" : "Major creditor name", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "FIXL", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", + "qual" : null, + "reference" : "CREDNAME", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "043faecf-e97c-4daf-9763-4b755d941b45", + "label" : "Minor creditor title", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "202afd61-e9fb-4bc7-aad6-f0a5799406e2", + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", + "label" : "Minor creditor company name", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", + "label" : "Minor creditor surname", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", + "label" : "Minor creditor initials", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "41576571-5573-498b-a9e9-eee24f7a67fa", + "label" : "Minor creditor forename(s)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", + "label" : "Minor creditor address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", + "label" : "Minor creditor postcode", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + } ], + "welshLabel" : "Costau", + "isAvailableForCourtExtract" : true, + "financial" : true, + "category" : "F", + "cjsCode" : "3011", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c514dcec-804c-11e8-adc0-fa7ae01bbebc", + "label" : "Adjournment reason: Equivocal plea", + "shortCode" : "EP", + "level" : "O", + "rank" : 48300, + "wordGroups" : [ { + "wordGroup" : [ "adjournment", "equivocal", "plea" ] + }, { + "wordGroup" : [ "adjournment", "equivocal" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "welshLabel" : "Rheswm dros ohirio: Ple amhendant", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "GC", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Adjournment reasons", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", + "label" : "Adjournment reason: To attend or to return the plea form sent with the summons", + "shortCode" : "AP", + "level" : "O", + "rank" : 48400, + "wordGroups" : [ { + "wordGroup" : [ "adjournment", "return" ] + }, { + "wordGroup" : [ "adjournment", "attend" ] + }, { + "wordGroup" : [ "adjournment", "appear", "proceed", "prove", "Absence" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "welshLabel" : "Rheswm dros ohirio: I fynychu neu i ddychwelyd y ffurflen pledio a anfonwyd gyda'r wŷs", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "DM", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Adjournment reasons", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Next hearing in magistrates' court", + "shortCode" : "NHMC", + "level" : "O", + "rank" : 48500, + "wordGroups" : [ { + "wordGroup" : [ "NHMC" ] + }, { + "wordGroup" : [ "next", "hearing", "magistrates" ] + }, { + "wordGroup" : [ "adjournment", "magistrates" ] + } ], + "userGroups" : [ ], + "resultTextTemplate": "hearing on {HDATE}[ at {timeOfHearing}][ in {HCROOM},] {HCHOUSE~Name}", + "prompts" : [ { + "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label" : "Estimated duration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HEST", + "courtExtract" : "Y", + "durationSequence" : null + },{ + "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", + "label": "Booking reference", + "resultPromptRule": "optional", + "type": "TXT", + "nameEmail": false, + "hidden": true, + "associateToReferenceData": false, + "sequence": 700, + "userGroups": [], + "courtExtract": "N", + "financial": "N", + "jurisdiction": "M", + "min": "1", + "max": "50", + "reference": "bookingReference" + }, { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Years" + "reference": "hCHOUSEAddress1", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine1", + "nameEmail": false, + "associatedWithReferenceData": true + }, { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress2", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine2", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 3", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress3", + "userGroups": [ ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Flynedd", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine3", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 4", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Months" + "reference": "hCHOUSEAddress4", + "userGroups": [ ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Mis", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine4", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Weeks" + "reference": "hCHOUSEAddress5", + "userGroups": [ ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Wythnos", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine5", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Days" + "reference": "hCHOUSEPostCode", + "userGroups": [ ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Niwrnod", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "PostCode", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": "Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)", - "resultPromptRule": "mandatory", + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "welshLabel": "Ystafell Llys", + "resultPromptRule": "optional", "type": "INT", - "sequence": 700, + "sequence": 400, "financial": "N", - "reference": "bailRemandDaysToCountTaggedDays", - "wordGroup": [ - "Tagged days" + "reference": "HCROOM", + "userGroups": [ ], - "userGroups": [], - "min": "0", - "max": "999", - "courtExtract": "N", + "min": "1", + "max": "99", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "referenceDataKey": "HCROOM", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, + { - "id": "746c833a-7d33-4800-a40c-425dbacf7492", - "label": "Concurrent", - "welshLabel": "Cydamserol", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 120, + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "concurrent", - "wordGroup": [ - "Concurrent" + "reference": "hCHOUSEOrganisationName", + "userGroups": [ ], - "userGroups": [], - "qual": "C", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "OrganisationName", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", - "resultPromptRule": "mandatory", - "type": "INT", + "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label" : "Estimated duration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HEST", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label" : "Estimated duration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Hours", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HEST", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label" : "Estimated duration", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Minutes", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HEST", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", + "label" : "Date of hearig", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HDATE", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "dfac671c-5b85-42a1-bb66-9aeee388a08d", + "label" : "Time of hearing", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HTIME", + "courtExtract" : "Y", + "durationSequence" : null + },{ + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "resultPromptRule": "optional", + "type": "TIME", "sequence": 200, - "duration": "Years", - "financial": "N", - "reference": "suspendedPeriod", - "wordGroup": [ - "Years" + "userGroups": [ + "Court Clerks", + "Legal Advisers" ], - "userGroups": [], - "durationSequence": 2, - "welshDuration": "Flynedd", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "timeOfHearing" }, { - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", - "financial": "N", - "reference": "suspendedPeriod", - "wordGroup": [ - "Months" + "id" : "5f507153-6dc9-4ec0-94db-c821eff333f1", + "label" : "Courtroom", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HCROOM", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "66868c04-72c4-46d9-a4fc-860a82107475", + "label" : "Courthouse name", + "welshLabel" : "Enw’r adeilad llys", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HCHOUSE", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c1116d12-dd35-4171-807a-2cb845357d22", + "label" : "Hearing type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HTYPE", + "courtExtract" : "Y", + "durationSequence" : null + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "sequence":15, + "mandatory":false, + "userGroups":[ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" ], - "userGroups": [], - "durationSequence": 2, - "welshDuration": "Mis", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference":"totalCustodialPeriod", + "type":"TXT", + "welshLabel":"TBD" + }, + { + "id":"d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label":"End Date", + "mandatory":false, + "type":"DATE", + "sequence":16, + "userGroups":[ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" + ], + "reference":"endDate", + "welshLabel":"TBD" + }, + { + "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", + "label": "First review date", + "reference": "firstReviewDate", + "mandatory":false, + "type":"DATE", + "sequence":17, + "userGroups":[ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" + ], + "welshLabel":"TBD" }, { - "id": "7784b81d-44d2-43c0-a903-a53b0e73683b", - "label": "Consecutive to offence", + "id" : "c1116d12-dd35-4171-807a-2cb845357d22", + "label" : "Hearing type", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "HTYPE", + "courtExtract" : "Y", + "durationSequence" : null + }, + { + "id": "f622f008-f8e7-4f34-a7df-df85a7ed4d47", + "label": "First review time", + "reference": "firstReviewTime", + "mandatory":false, + "type":"TIME", + "sequence":18, + "userGroups":[ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" + ], + "welshLabel":"TBD" + } + ], + "welshLabel" : "Ni wnaeth y Llys barhau â’r treial yn absenoldeb y diffynnydd", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Next hearing", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d278650c-e429-11e8-9f32-f2801f1b9fd1", + "label" : "Adjournment", + "shortCode" : "A", + "level" : "O", + "rank" : 48600, + "wordGroups" : [ { + "wordGroup" : [ "A" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label" : "Is the defendant excused attendance?", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantExcusedAttendance", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Gohiriad", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "4506", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5ec54bfb-cde0-4ad2-bf87-d266e54fe072", + "label" : "Indictment to remain on file", + "shortCode" : "IREMFILE", + "level" : "O", + "rank" : 5500, + "wordGroups" : [ { + "wordGroup" : [ "indictment", "remain", "file" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "2008", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2852b770-a7ad-11e8-98d0-529269fb1459", + "label" : "Forfeiture and destruction", + "shortCode" : "FDEST", + "level" : "O", + "rank" : 7700, + "wordGroups" : [ { + "wordGroup" : [ "forfeiture", "destruction" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "13efdd20-a7ae-11e8-98d0-529269fb1459", + "label" : "Property to be forfeited and destroyed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7cca9a0e-b11f-4863-9fec-45b9b13f946b", + "label" : "Forfeiture and destruction ordered under", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "26d4c112-a7ae-11e8-98d0-529269fb1459", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4a30821a-a7b6-11e8-98d0-529269fb1459", + "label" : "Responsible for destroying property", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ea26f773-0a91-4526-b4ad-84d07b5bf940", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3135", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Forfeiture and deprivation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", + "version": "2021-02-25T12:41:20.415Z", + "startDate": "2021-02-26", + "label": "Pay by date", + "shortCode": "PDATE", + "level": "D", + "rank": 76700, + "wordGroups": [ + { + "wordGroup": [ + "PDATE" + ] + }, + { + "wordGroup": [ + "PBD", + "pay", + "full", + "date" + ] + } + ], + "prompts": [ + { + "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", + "label": "Parent / Guardian to pay", + "welshLabel": "Rhiant / Gwarcheidwad i dalu", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 140, + "type": "BOOLEAN", + "sequence": 200, "financial": "N", - "reference": "consecutiveToOffenceNumber", - "wordGroup": [ - "Consecutive to" + "reference": "PARENT_GAURDIAN_TO_PAY", + "userGroups": [ + ], - "userGroups": [], - "min": "1", - "max": "99", - "qual": "F", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -64599,108 +35938,6811 @@ "associatedWithReferenceData": false }, { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "welshLabel": "Swyddog cyfrifol", - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 340, + "id": "ee7d253a-c629-11e8-a355-529269fb1459", + "label": "Date to pay in full by", + "welshLabel": "Dyddiad terfyn ar gyfer talu'r swm llawn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, "financial": "N", - "reference": "responsibleOfficer", - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "userGroups": [], - "courtExtract": "N", + "reference": "PBD", + "userGroups": [ + + ], + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "90d17fe3-8f87-43f2-bd96-a4108e4603ae", - "label": "The reasons for this", - "welshLabel": "Y rhesymau dros hyn", + "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", + "label": "Number of days in default", + "welshLabel": "Nifer y diwrnodau y mae'r ddyled heb ei thalu", "resultPromptRule": "optional", - "type": "FIXLOM", + "type": "INT", "sequence": 300, "financial": "N", - "reference": "theReasonsForThis", - "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "M", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "da9c91a6-7090-44f3-8644-b4b184533fc4", - "label": "which is on case number", - "welshLabel": "sydd dan y rhif achos", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 160, - "financial": "N", - "reference": "whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber", - "userGroups": [], + "reference": "DID", + "userGroups": [ + + ], "min": "1", - "max": "20", - "qual": "", + "max": "999", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false + } + ], + "welshLabel": "Dyddiad terfyn ar gyfer talu", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Payment terms", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "M", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, { + "id" : "de946ddc-ad77-44b1-8480-8bbc251cdcfb", + "label" : "Court house detention until court rises", + "shortCode" : "FIDICI", + "level" : "O", + "rank" : 48800, + "wordGroups" : [ { + "wordGroup" : [ "court", "rises", "until", "detention" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "9be231c5-e4e3-4294-872e-e0ad6c9a39a4", + "label" : "Type of detention", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "5769e88c-82c6-457d-9a5e-652a96ec105c", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c92fdcfc-ac7d-4692-a475-de88467f6fcf", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label" : "Total amount enforced", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "TOTENF", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "1509", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5c023b16-e79c-4eb5-9673-e23accbeb35b", + "label" : "Court house detention until time", + "shortCode" : "FIDICTI", + "level" : "O", + "rank" : 48900, + "wordGroups" : [ { + "wordGroup" : [ "court", "Time", "until", "detention" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "0fd18b3d-d55e-4e6c-adfe-e45ad2241e5e", + "label" : "Time of release", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label" : "Total amount enforced", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "TOTENF", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "1509", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0e390ae0-8f3c-4735-8c0d-c16e8962537a", + "label" : "Detention in police station", + "shortCode" : "FIDIPI", + "level" : "O", + "rank" : 49000, + "wordGroups" : [ { + "wordGroup" : [ "detention", "police", "station" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a0e5f5aa-ce4d-41fa-94ba-c2fb293659b4", + "label" : "Time of release (by 8pm)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label" : "Reason for decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6d2296be-3631-4a13-bfef-6be1d950cf20", + "label" : "Police Force providing police station to detain defendant", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label" : "Total amount enforced", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "TOTENF", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "1509", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "61c246d8-f771-4420-9e02-30f34c0305b1", + "label" : "Community order amended - supervising court or end date", + "shortCode" : "COA", + "level" : "O", + "rank" : 49100, + "wordGroups" : [ { + "wordGroup" : [ "Community", "Order", "amended" ] + }, { + "wordGroup" : [ "supervising", "court" ] + }, { + "wordGroup" : [ "end", "date" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "0eba630e-a486-439f-8d76-b49b1363067c", + "label" : "Court that made the original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f5f1f9ac-f624-4d44-9ad0-7c1e586eee3a", + "label" : "Original end date of order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8a4af2f8-ee31-481e-847d-eb295896b975", + "label" : "New supervising court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8bad6b87-9ad5-418f-b3a3-90386d7c2769", + "label" : "Compliance date extended. All requiremets to be completed by", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1032", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4a026ff3-e1aa-407e-aafa-015723c1dbd0", + "label" : "Community order amended", + "shortCode" : "COV", + "level" : "O", + "rank" : 49300, + "wordGroups" : [ { + "wordGroup" : [ "Community", "Order", "amend" ] + }, { + "wordGroup" : [ "Requirement", "cancelled" ] + }, { + "wordGroup" : [ "new", "Requirement" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "0eba630e-a486-439f-8d76-b49b1363067c", + "label" : "Court that made the original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", + "label" : "Date original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "47f34fca-6355-4612-881a-07a2121b86ba", + "label" : "Supervising court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1b12bc7b-dfc7-41b7-9c4e-8c6b53b53274", + "label" : "Community requirements cancelled", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "faef913f-70ae-44cf-81dd-356c6dc41f0c", + "label" : "The court made new community requirement(s)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", + "label" : "The court amended a community requirement(s)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f5e438d5-a7de-4be8-9a7d-3e07b8584f6a", + "label" : "Original community requirements to continue", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "361cee65-0550-4c9a-9fbd-3a234e9431f1", + "label" : "The end date of the order has been changed and the requirements must be complied with by", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06356516-5b1a-4036-afc5-2bb44a446a1a", + "label" : "The end date of the order has not been changed and the requirements must be complied with by", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "27bf0204-a185-4e82-8c34-7317287513c8", + "label" : "Responsible officer for the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", + "label" : "Reason for change", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "40d90a02-53a9-43ef-a96f-da9ad1b476b7", + "label" : "The court made a new or varied an electronic monitoring requirement", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "92566757-ef79-4804-bced-c63ebb0937e7", + "label" : "Electronic monitoring contractor", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "40f05056-4c54-4251-a7a1-666197409f20", + "label" : "This is the first notification to contractor", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c53e274f-ecbf-476e-971c-103a1d5a72d7", + "label" : "This is a variation of an electronic monitoring requirement, the original order date was", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 1500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1933ca78-459c-47f0-b4a9-1a4507e19af6", + "label" : "This is an additional electronic monitoring requirement, the original order date was", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 1600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6be2c968-d9b8-40fe-ba4d-f8d3c06ea129", + "label" : "This is a continuation of an electronic monitoring reequirement", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1030", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "fb1a3668-4675-4541-ad61-7ca3c24ca0cc", + "label" : "Conviction quashed", + "shortCode" : "QC", + "level" : "O", + "rank" : 50000, + "wordGroups" : [ { + "wordGroup" : [ "conviction", "quashed" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "80dd4486-fa86-41f0-b09b-bad84b55f61c", + "label" : "Date appeal heard", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "CADATE", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "55f15ecf-ea80-40f4-848d-29e7b8d73ae2", + "label" : "Sentence varied", + "shortCode" : "SV", + "level" : "O", + "rank" : 50100, + "wordGroups" : [ { + "wordGroup" : [ "sentence", "varied" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "80dd4486-fa86-41f0-b09b-bad84b55f61c", + "label" : "Date appeal heard", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "CADATE", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "02c8aef6-601a-46e8-bbe5-d614e0da764a", + "label" : "Special measures direction: Witness to give evidence by means of a live link", + "shortCode" : "SMLL", + "level" : "C", + "rank" : 50300, + "wordGroups" : [ { + "wordGroup" : [ "special", "measures", "direction", "live", "link" ] + }, { + "wordGroup" : [ "SMD", "live", "link" ] + }, { + "wordGroup" : [ "SMD", "witness" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label" : "Name of witness", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "nameOfWitness", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Special measures", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "2f08896a-07b0-45b9-b7da-f919b8520480", + "label" : "Indictment quashed", + "shortCode" : "IQUASH", + "level" : "O", + "rank" : 5600, + "wordGroups" : [ { + "wordGroup" : [ "indictment", "quashed" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Special measures direction: A video recording be admitted of the evidence in chief of the interview", + "shortCode" : "SMVR", + "level" : "C", + "rank" : 50400, + "wordGroups" : [ { + "wordGroup" : [ "special", "measures", "direction", "video" ] + }, { + "wordGroup" : [ "SMD", "video" ] + }, { + "wordGroup" : [ "SMD", "in", "chief" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", + "label" : "In respect of witness name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "inRespectOfWitnessName", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "79b64864-8c39-4724-be94-e2db853db393", + "label" : "Date of interview", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ef04068f-86d0-42a8-8fcf-ca12f340d57d", + "label" : "The whole of the video recording disclosed to be admitted", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c472c5b7-9e50-4390-ae59-78d6ca607231", + "label" : "Only the following specified part(s) of the video interview to be admitted, namely", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5c2c471c-08a0-46e5-8368-80d819fe4d19", + "label" : "Cross examination of the witness and re-examination of the witness to be recorded by means of a video recording and such recording to be admitted in accordance with section 28 of the Youth Justice and Criminal Evidence Act 1999", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Special measures", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b172d954-5aca-447b-b19e-2c836053b0af", + "label" : "Special measures direction: The recording must be made in the presence of specified person(s)", + "shortCode" : "SMVS", + "level" : "C", + "rank" : 50500, + "wordGroups" : [ { + "wordGroup" : [ "special", "measures", "direction", "recording", "presence" ] + }, { + "wordGroup" : [ "SMD", "recording", "presence" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ef4d6fb2-d61c-4732-9e2c-b1c726be0f93", + "label" : "Name(s)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Special measures", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "41a18cc7-3106-4e84-8f66-ad52fe6dee75", + "label" : "Special measures direction: A video recording is not to be admitted because the requirements for its admission have not been complied with", + "shortCode" : "SMVN", + "level" : "C", + "rank" : 50600, + "wordGroups" : [ { + "wordGroup" : [ "special", "measures", "direction", "video", "recording" ] + }, { + "wordGroup" : [ "SMD", "video", "recording" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", + "label" : "In respect of witness name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "inRespectOfWitnessName", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "79b64864-8c39-4724-be94-e2db853db393", + "label" : "Date of interview", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Special measures", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ee74631f-c144-4a25-8a93-0253b98a7642", + "label" : "Special measures direction: Witness be prevented from seeing the defendant by means of a screen", + "shortCode" : "SMDW", + "level" : "C", + "rank" : 50700, + "wordGroups" : [ { + "wordGroup" : [ "special", "measures", "direction", "screen" ] + }, { + "wordGroup" : [ "SMD", "screen" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label" : "Name of witness", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "nameOfWitness", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Special measures", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "702b365f-dde6-4543-8fb5-1324c6a84ec4", + "label" : "Special measures direction: Witness be prevented from seeing the defendant by specified means", + "shortCode" : "SMSM", + "level" : "C", + "rank" : 50800, + "wordGroups" : [ { + "wordGroup" : [ "special", "measures", "direction", "witness", "prevented" ] + }, { + "wordGroup" : [ "SMD", "witness", "prevented" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label" : "Name of witness", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "nameOfWitness", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "62abea0f-310d-449a-bc9b-632796dec2d6", + "label" : "Specified means", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Special measures", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", + "label" : "Special measures direction: The examination is to be conducted through an intermediary", + "shortCode" : "SMI", + "level" : "C", + "rank" : 50900, + "wordGroups" : [ { + "wordGroup" : [ "special", "measures", "direction", "intermediary" ] + }, { + "wordGroup" : [ "SMD", "intermediary" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", + "label" : "In respect of witness name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "inRespectOfWitnessName", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "eef5d23c-b75e-4601-9196-02d4ec70bb27", + "label" : "Name of intermediary", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Special measures", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", + "label" : "Special measures direction: Witness to give evidence in private", + "shortCode" : "SMP", + "level" : "C", + "rank" : 51000, + "wordGroups" : [ { + "wordGroup" : [ "special", "measures", "direction", "witness", "private" ] + }, { + "wordGroup" : [ "SMD", "witness", "private" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label" : "Name of witness", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "nameOfWitness", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8683b918-c2bd-49da-bc0a-844659e097e2", + "label" : "This direction does not apply to one member of the press, namely", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Special measures", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "52218899-8f26-45cd-ae30-aeff5c189261", + "label" : "Special measures direction: Wigs and gowns shall not be worn for the duration of the evidence of a specified witness", + "shortCode" : "SMWG", + "level" : "C", + "rank" : 51100, + "wordGroups" : [ { + "wordGroup" : [ "special", "measures", "direction", "wigs", "gowns" ] + }, { + "wordGroup" : [ "SMD", "wigs", "gowns" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label" : "Name of witness", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "nameOfWitness", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Special measures", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "633d192a-cc90-484e-aa1d-318816b7d44a", + "label" : "Special measures direction: The accused \"in person\" shall not be permitted to cross-examine a specified witness", + "shortCode" : "SMIP", + "level" : "C", + "rank" : 51200, + "wordGroups" : [ { + "wordGroup" : [ "special", "measures", "direction", "in", "person", "cross", "examine" ] + }, { + "wordGroup" : [ "SMD", "in", "person", "cross", "examine" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label" : "Name of witness", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "nameOfWitness", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca43ea08-3a2b-49cf-bb7f-ac350cc519d6", + "label" : "The court appoints a specified person for the purpose of cross examination of the witness, namely", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Special measures", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "67a91dc8-f4f9-4f80-b644-e219326045cc", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Special measures direction: Witness to be provided with an aid to commumication", + "shortCode" : "SMAC", + "level" : "C", + "rank" : 51300, + "wordGroups" : [ { + "wordGroup" : [ "special", "measures", "direction", "aid" ] + }, { + "wordGroup" : [ "SMD", "aid" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label" : "Name of witness", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "nameOfWitness", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f539367f-b941-4873-9567-a235ffb81d85", + "label" : "Device", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "device", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Special measures", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4850390f-13b3-4aa0-bae5-2dd0427b97eb", + "label" : "Discontinued", + "shortCode" : "disc", + "level" : "O", + "rank" : 5700, + "wordGroups" : [ { + "wordGroup" : [ "disc" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "2053", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", + "label" : "The court directs that evidence relating to the bad character of the defendant be admitted in the proceedings", + "shortCode" : "BCD", + "level" : "C", + "rank" : 51500, + "wordGroups" : [ { + "wordGroup" : [ "bad", "character", "direction", "admitted", "evidence" ] + }, { + "wordGroup" : [ "BCD", "admitted" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bad character", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "fe77f387-ee64-4cef-8e95-c0776b9799e7", + "label" : "The court gives leave for evidence of the bad character of a person to be admitted in the proceedings", + "shortCode" : "BCO", + "level" : "C", + "rank" : 51600, + "wordGroups" : [ { + "wordGroup" : [ "bad", "character", "direction", "leave" ] + }, { + "wordGroup" : [ "BCD", "leave" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "6c27cf1e-8f99-4344-b783-62f527882256", + "label" : "Name of person", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label" : "Reasons for making the direction", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Bad character", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "27bbe7cb-5884-4b68-9c1e-a3373cce6ce6", + "label" : "Suspended sentence order of imprisonment amended - supervising court or operational period or supervision period", + "shortCode" : "SUSPA", + "level" : "O", + "rank" : 51700, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "sentence", "amended", "supervising" ] + }, { + "wordGroup" : [ "SUSPA" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label" : "Period of imprisonment previously imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label" : "Period of imprisonment previously imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label" : "Period of imprisonment previously imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label" : "Period of imprisonment previously imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label" : "Original operational period (time suspended for)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label" : "Original operational period (time suspended for)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label" : "The operational period (period of suspension) is extended to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 600, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label" : "The operational period (period of suspension) is extended to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 600, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", + "label" : "Specify court that made the original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c6d69d3-c5c3-41fd-b078-32439f516f0b", + "label" : "Specify date order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", + "label" : "All community requirements are cancelled", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "27874127-6eee-4dac-b664-bf1796932b59", + "label" : "New supervision period (in full)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8a4af2f8-ee31-481e-847d-eb295896b975", + "label" : "New supervising court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1508", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "280a5606-c70a-432f-bdfe-a9dfd49f18c5", + "label" : "Suspended sentence order of imprisonment amended", + "shortCode" : "SUSPV", + "level" : "O", + "rank" : 51800, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "sentence", "amended" ] + }, { + "wordGroup" : [ "SUSPV" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", + "label" : "Original total imprisonment period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", + "label" : "Original total imprisonment period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", + "label" : "Original total imprisonment period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", + "label" : "Original total imprisonment period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "961da051-d955-4016-b5cc-97f6c157958b", + "label" : "Original or amended supervision period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "961da051-d955-4016-b5cc-97f6c157958b", + "label" : "Original or amended supervision period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "961da051-d955-4016-b5cc-97f6c157958b", + "label" : "Original or amended supervision period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "961da051-d955-4016-b5cc-97f6c157958b", + "label" : "Original or amended supervision period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0eba630e-a486-439f-8d76-b49b1363067c", + "label" : "Court that made the original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2a955180-259b-4492-9567-eec3c5ee6c27", + "label" : "Date the original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "47f34fca-6355-4612-881a-07a2121b86ba", + "label" : "Supervising court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", + "label" : "The original term of imprisonment is consecutive to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c2f5704c-66f6-4323-a893-d4a212f74bc7", + "label" : "Community requirements cancelled", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "faef913f-70ae-44cf-81dd-356c6dc41f0c", + "label" : "The court made new community requirement(s)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", + "label" : "The court amended a community requirement(s)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "02e44066-4850-4a74-8db6-1158f8324eb1", + "label" : "Original community requirements to continue", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "27bf0204-a185-4e82-8c34-7317287513c8", + "label" : "Responsible officer for the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", + "label" : "Reason for change", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "40d90a02-53a9-43ef-a96f-da9ad1b476b7", + "label" : "The court made a new or varied an electronic monitoring requirement", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "92566757-ef79-4804-bced-c63ebb0937e7", + "label" : "Electronic monitoring contractor", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 1400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "40f05056-4c54-4251-a7a1-666197409f20", + "label" : "This is the first notification to contractor", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c53e274f-ecbf-476e-971c-103a1d5a72d7", + "label" : "This is a variation of an electronic monitoring requirement, the original order date was", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 1600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1933ca78-459c-47f0-b4a9-1a4507e19af6", + "label" : "This is an additional electronic monitoring requirement, the original order date was", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 1700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", + "label" : "This is a continuation of an electronic monitoring requirement", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1508", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "fe2670ca-8fe9-4558-86a8-c611a18fd866", + "label" : "Witness summons", + "shortCode" : "SUMWITN", + "level" : "O", + "rank" : 51900, + "wordGroups" : [ { + "wordGroup" : [ "witness", "summons" ] + }, { + "wordGroup" : [ "SUMWITN" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a528bbfd-54b8-45d6-bad0-26a3a95eb274", + "label" : "Date of hearing", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", + "label" : "Time of hearing", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e498ec52-0adf-41cf-89e2-40955a418393", + "label" : "Courthouse name", + "welshLabel" : "Enw’r adeilad llys", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4b7bc1cf-e157-4f2f-9500-04dfa5504ff1", + "label" : "Courthouse address", + "welshLabel" : "Cyfeiriad y llys", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b0a4f0ea-2767-4327-8a49-6949bdf90791", + "label" : "Witness date of birth", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fff16e2a-b141-4659-94f6-edcd9581f127", + "label" : "Parent of witness name and address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0bb65e58-5d55-4f1a-8fb1-5d676b9f4cc3", + "label" : "Parent of witness date of birth", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a85ecb60-5fb4-4a5d-95c4-771de5220f39", + "label" : "Witness is required to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "854089e2-e9e1-45e7-bcf7-44de22bcc81d", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "00dbdd03-5c78-4a15-9787-f3843b90dade", + "label" : "The specified documents or things are", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ed6c7388-9103-41c2-af4f-3fe69d8582e8", + "label" : "Hearsay direction", + "shortCode" : "HD", + "level" : "C", + "rank" : 52000, + "wordGroups" : [ { + "wordGroup" : [ "hearsay", "direction" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "2b04ace9-583f-4d2a-ae84-c3c377070f3c", + "label" : "Hearsay direction", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c5b29640-fb51-4483-a1a9-845b75c7e8a4", + "label" : "Suspended sentence order of detention amended - supervising court or operational period or supervision period", + "shortCode" : "SUSPAD", + "level" : "O", + "rank" : 52100, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "sentence", "amend", "supervising" ] + }, { + "wordGroup" : [ "SUSPAD" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label" : "Period of detention previously imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label" : "Period of detention previously imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label" : "Period of detention previously imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label" : "Period of detention previously imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label" : "Original operational period (time suspended for)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label" : "Original operational period (time suspended for)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label" : "The operational period (period of suspension) is extended to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 600, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label" : "The operational period (period of suspension) is extended to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 600, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", + "label" : "Specify court that made the original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c6d69d3-c5c3-41fd-b078-32439f516f0b", + "label" : "Specify date order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", + "label" : "All community requirements are cancelled", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "27874127-6eee-4dac-b664-bf1796932b59", + "label" : "New supervision period (in full)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8a4af2f8-ee31-481e-847d-eb295896b975", + "label" : "New supervising court", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "726c4beb-9ead-4b6b-bed9-b761b5b43553", + "label" : "Suspended sentence order of detention amended", + "shortCode" : "SUSPVD", + "level" : "O", + "rank" : 52200, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "sentence", "amend" ] + }, { + "wordGroup" : [ "SUSPVD" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", + "label" : "Original total detention period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", + "label" : "Original total detention period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", + "label" : "Original total detention period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", + "label" : "Original total detention period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "961da051-d955-4016-b5cc-97f6c157958b", + "label" : "Original or amended supervision period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "961da051-d955-4016-b5cc-97f6c157958b", + "label" : "Original or amended supervision period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "961da051-d955-4016-b5cc-97f6c157958b", + "label" : "Original or amended supervision period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "961da051-d955-4016-b5cc-97f6c157958b", + "label" : "Original or amended supervision period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0eba630e-a486-439f-8d76-b49b1363067c", + "label" : "Court that made the original order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2a955180-259b-4492-9567-eec3c5ee6c27", + "label" : "Date the original order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "47f34fca-6355-4612-881a-07a2121b86ba", + "label" : "Supervising court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", + "label" : "The original term of imprisonment is consecutive to", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "12bca5a7-6dce-472f-b424-9d9e4a9e973d", + "label" : "Community requirements cancelled", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "faef913f-70ae-44cf-81dd-356c6dc41f0c", + "label" : "The court made new community requirement(s)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", + "label" : "The court amended a community requirement(s)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "02e44066-4850-4a74-8db6-1158f8324eb1", + "label" : "Original community requirements to continue", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "27bf0204-a185-4e82-8c34-7317287513c8", + "label" : "Responsible officer for the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", + "label" : "Reason for change", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "40d90a02-53a9-43ef-a96f-da9ad1b476b7", + "label" : "The court made a new or varied an electronic monitoring requirement", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "92566757-ef79-4804-bced-c63ebb0937e7", + "label" : "Electronic monitoring contractor", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 1400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "40f05056-4c54-4251-a7a1-666197409f20", + "label" : "This is the first notification to contractor", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c53e274f-ecbf-476e-971c-103a1d5a72d7", + "label" : "This is a variation of an electronic monitoring requirement, the original order date was", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 1600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1933ca78-459c-47f0-b4a9-1a4507e19af6", + "label" : "This is an additional electronic monitoring requirement, the original order date was", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 1700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", + "label" : "This is a continuation of an electronic monitoring requirement", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1508", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "3d2c05b3-fcd6-49c2-b5a9-52855be7f90a", + "label" : "Summons on referral to other court", + "shortCode" : "SUMRTO", + "level" : "O", + "rank" : 52300, + "userGroups" : [ ], + "prompts" : [ { + "id" : "a528bbfd-54b8-45d6-bad0-26a3a95eb274", + "label" : "Date of hearing", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", + "label" : "Time of hearing", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f5699b34-f32f-466e-b7d8-40b4173df154", + "label" : "Magistrates' court", + "welshLabel" : "Llys Ynadon", + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "dbbb47c9-2202-4913-9a0d-db0a048bfd5f", + "label" : "Reason for referring to court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c20d50a5-d3f5-4ff7-9366-f0a27b0c95ac", + "label" : "Case re-opened", + "shortCode" : "ROPEN", + "level" : "C", + "rank" : 52400, + "userGroups" : [ ], + "prompts" : [ { + "id" : "dcc576fb-f2ad-486f-b907-43f9db32ae40", + "label" : "Date re-opened", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b40c7eb-2095-4570-b56e-5ebbfe88e49a", + "label" : "Libra account number", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "79aa0f1a-a79b-4923-afbf-29ee3a911ef6", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Total custodial period", + "shortCode" : "TIMP", + "level" : "D", + "rank" : 5800, + "resultWording": "section 13(c)", + "userGroups" : [ ], + "prompts" : [ { + "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label" : "Total imprisonment period", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "totalImprisonmentPeriod", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label" : "Total imprisonment period", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "totalImprisonmentPeriod", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label" : "Total imprisonment period", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "totalImprisonmentPeriod", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label" : "Total imprisonment period", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "totalImprisonmentPeriod", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3a0bf7f8-674f-4b5f-998d-aae0e2b2842e", + "label" : "Sentenced in absence", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 700, + "duration" : null, + "wordGroup" : [ "Absence" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "FH", + "reference" : "sentencedInAbsence", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "19d9d7b4-a55c-4f52-8cca-edf9c63e98e5", + "label" : "Total sentence consecutive to what", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "totalSentenceConsequenceToWhat", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9dbe839c-3804-4c47-bf9e-5be6f9b9b3bb", + "label" : "Total imprisonment period is life", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "totalImprisonmentPeriodInLife", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "21549bc3-5be9-4a91-abc7-57d8ed1b1676", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "reasonForSentenceWithoutPSR", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "266a2bbe-b6b5-4b24-830d-70ceff3e2cac", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "probationPeriodTobeNotified", + "isAvailableForCourtExtract" : false, + "durationSequence" : null + }, { + "id" : "52c9c1f5-2a00-45ee-bca3-024d43626773", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "600edfc3-a584-4f9f-a52e-5bb8a99646c1", + "label" : "Refer for a full court hearing", + "shortCode" : "SUMRCC", + "level" : "O", + "rank" : 52500, + "userGroups" : [ ], + "prompts" : [ { + "id" : "bca4e07c-17e0-48f1-84f4-7b6ff8bab5e2", + "label" : "Reasons for referring to court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "a47a312a-79fe-4f3e-84ab-63a39f52bc75", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f7784e82-20b5-4d2c-b174-6fd57ebf8d7c", + "label" : "Adjourn to a later SJP hearing session", + "shortCode" : "ADJOURNSJP", + "level" : "O", + "rank" : 52600, + "userGroups" : [ ], + "prompts" : [ { + "id" : "185e6a04-8b44-430d-8073-d8d12f69733a", + "label" : "Adjourn to date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0149ab92-5466-11e8-9c2d-fa7ae01bbebc", + "label" : "Referred for resulting in another SJP session", + "shortCode" : "SJPR", + "level" : "C", + "rank" : 52700, + "wordGroups" : [ { + "wordGroup" : [ "SJPR" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "1e96d1a9-9618-4ddd-a925-ca6a0ef86018", + "label" : "Transfer of Fine Order to a Court in England or Wales", + "shortCode" : "TFOUT", + "level" : "D", + "rank" : 52800, + "wordGroups" : [ { + "wordGroup" : [ "transfer", "fine" ] + }, { + "wordGroup" : [ "TFOUT" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "5f589095-2986-4d2b-98fa-30ab00f675d4", + "label" : "Court to which fine is transferred", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "f31eadd5-41d4-4cff-98d8-effd946e7a09", + "label" : "Full bail argument", + "shortCode" : "FBA", + "level" : "O", + "rank" : 52900, + "wordGroups" : [ { + "wordGroup" : [ "full", "argument" ] + }, { + "wordGroup" : [ "FBA" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "78c79d11-a1ba-4c34-89d2-5b25977af957", + "label" : "The court certifies that full argument was heard on", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "474e4dc5-6751-4e31-849f-f03952b5597a", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8d29667b-15df-48af-9e5c-39b740b99d70", + "label" : "New considerations were placed before the court and this change in circumstances was found", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "4532", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4d2fc4cf-970e-49db-83af-2756e43e106e", + "label" : "Unable to proceed with case on the Common Platform, entered into Libra", + "shortCode" : "UNABLE", + "level" : "C", + "rank" : 49200, + "wordGroups" : [ { + "wordGroup" : [ "UNABLE" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d3139b79-696b-4cb7-a39d-7f06fcc24f4a", + "label" : "Discharged", + "shortCode" : "DISCH", + "level" : "O", + "rank" : 49400, + "wordGroups" : [ { + "wordGroup" : [ "not", "guilty", "discharged" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : true, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "19463792-2c34-4c4e-bbbe-fbac0955a314", + "label" : "Anti-social behaviour injunction", + "shortCode" : "ABI", + "level" : "O", + "rank" : 49500, + "wordGroups" : [ { + "wordGroup" : [ "anti", "Social", "behaviour", "injunction" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "a13a81c9-113b-4156-8bf5-77280d5107b7", + "label" : "Duration period for anti-social behaviour injunction", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7f15a291-0e73-4055-8b6c-067f628646da", + "label" : "Power of arrest attached to the following provisions", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1c033a31-1fdd-400d-8277-cf520ef81de6", + "label" : "Power of arrest period ", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0ecac709-0dbe-45a7-ac04-cca8454377cc", + "label" : "Requirement supervisor for the injunction requirements", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "33408f3d-885c-43f4-a4a8-76e37906569f", + "label" : "Police force name (for power of arrest)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2da00d65-6cdc-4149-9d51-df6cb43d9729", + "label" : "Police force address (for power of arrest) line 1", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ceb435f2-3d72-4b5a-929a-ce976881ace7", + "label" : "Police force address (for power of arrest) line 2", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "aa72f5cb-221a-42ce-b1f3-81f110be0e12", + "label" : "Police force address (for power of arrest) line 3", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6516de6a-2998-4ae5-9833-ea37b408558f", + "label" : "Police force address (for power of arrest) line 4", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6dacab3d-a730-4020-aed3-15d442fbdff5", + "label" : "Police force address (for power of arrest) line 5", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4a13b230-a819-4955-87d8-fe1f1318abc1", + "label" : "Anti-social behaviour injunction requirements", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "18266b45-aae2-43b5-8a0b-e647df78e61a", + "label" : "Anti-social behaviour injunction prohibitions", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3516", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "32cc8e43-1d98-4fc9-a11a-265ea5af0715", + "label" : "Credit for time", + "shortCode" : "CREFT", + "level" : "D", + "rank" : 5900, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "3f4f9b75-418f-46ed-a311-230a6dbca6cb", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", + "ruleType" : "atleastOneOf" + } ] + }, { + "id" : "0683d44b-c84f-49e7-b449-242bb6a9c60e", + "label" : "Forfeiture and deprivation", + "shortCode" : "FORAD", + "level" : "O", + "rank" : 7600, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "2852b770-a7ad-11e8-98d0-529269fb1459", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "32177be4-0a1f-4889-9ca2-c729f49d7d85", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "290435b9-cce7-43be-b340-1c7db48c5413", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "e7ef0248-fe71-4733-8749-ff0c23a04f95", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "19026543-7d59-467b-9649-35ddf89b30cc", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "7610d8a1-07fe-4e69-812d-22f821d3f334", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "6532b8f4-7794-420a-9f30-8aced3e41517", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "661bdce3-ce01-4cb6-a152-6424540bbbce", + "ruleType" : "atleastOneOf" + } ] + }, { + "id" : "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "label" : "Adjournment reasons", + "shortCode" : "ADJR", + "level" : "O", + "rank" : 33100, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "welshLabel" : "Rheswm dros ohirio:", + "isAvailableForCourtExtract" : false, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : true, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "c93c5a18-838a-41d3-a017-c203b37f5655", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "4958de15-8a0a-4d2b-9f7e-56e037cf03da", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c2eca548-4511-4023-bbe6-50fe0b679b4a", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "9fd6a4ef-1055-4e54-b035-f1130a524388", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c514dcec-804c-11e8-adc0-fa7ae01bbebc", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", + "ruleType" : "atleastOneOf" + } ] + }, { + "id": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "version": "2022-01-10T09:35:48.476Z", + "startDate": "2022-01-11", + "label": "Payment terms", + "shortCode": "PAYT", + "level": "D", + "rank": 300, + "wordGroups": [ + { + "wordGroup": [ + "PAYT" + ] }, { - "id": "ea957761-0813-4a92-9e7c-b536654325f0", - "label": "Imprisonment reasons", - "welshLabel": "Rhesymau dros garcharu", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "financial": "N", - "reference": "imprisonmentReasons", - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "M", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "wordGroup": [ + "terms", + "payment" + ] + } + ], + "userGroups": [ + + ], + "welshLabel": "Telerau talu", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "jurisdiction": "B", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", + "ruleType": "oneOf" }, { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "welshLabel": "Llys sy’n Goruchwylio", - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 360, - "financial": "N", - "reference": "supervisingCourt", - "userGroups": [], - "min": "1", - "max": "120", + "childResultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "a0b426c1-74b8-43cd-9885-f0f31625352e", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", + "ruleType": "oneOf" + } + ], + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, { + "id" : "874911d0-acf2-4b6f-bcca-cacbb6bb2862", + "label" : "Pre-release bail conditions", + "shortCode" : "PREBC", + "level" : "O", + "rank" : 26900, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : false, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : true, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "4ddda002-526e-4d70-9df7-eeaae75cfab7", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d85486c4-06f1-4813-859b-5495ca578bde", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "bb0a2862-a565-46aa-96ed-1e6f972949d0", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "1ebd5ca1-866d-43a0-ad9a-464e8a228235", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "279fd36e-17c5-42b2-b56b-a6ab27b9b592", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "e5864697-640a-47be-9289-9e6205bbe579", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "4558f9b2-47f8-4430-a0f8-684df5d55761", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b9581c12-81c9-434d-8851-03d9638547fa", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b922e6bd-70a4-4b28-b583-165179af6162", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c51e3522-5363-4af0-b5af-97a5f9eb5462", + "ruleType" : "atleastOneOf" + } ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "userGroups": [], + "resultTextTemplate": "%AllChildText%", + "terminatesOffenceProceedings": false + }, { + "id" : "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Bail conditions", + "shortCode" : "BAIC", + "level" : "O", + "rank" : 400, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : false, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : true, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "525c4660-9a0b-4a86-80fc-0efce539d6a5", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "e073f3ba-2585-4c0d-8c31-e51a1662d143", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "1aa6a828-fedb-43bd-89e8-bc74586d5e85", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "136725da-5b0a-43d3-adac-54f916bcf2bb", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "6889288e-5e4a-4523-be2c-cc993a00af29", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "0649851f-01f8-48fb-928d-6fe100042b2a", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "03edddce-c188-4b38-9832-988d9d1ee802", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "5c02ff4c-6a33-4089-8c9e-f120a688b018", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d45c8150-3095-4cb3-a55e-b4fd094af560", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "922386e1-bdc2-403e-8902-af1da14e1fd8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d34b643e-74d5-4288-a4b9-bce14d0069d5", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "fb9b273e-06c3-4a4a-940c-3c053c559abe", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "481547e6-9099-475e-8028-2bce2c52ff5f", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "dfa19118-e944-43f4-93b2-2ed49df5553f", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c1d490ed-1754-43b8-a485-fdab1a25f8cb", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "90146942-b1b9-4a2e-af2b-141f50d45e5c", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "9da5909e-d715-4f79-a1b8-34780c57acf1", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d709a455-02cc-40d9-b3d2-e4194dc46792", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "3c98b287-fd01-471a-ac34-e0a56d9e95c2", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "4c79ea50-6e14-4c47-8836-c0d0f647e45a", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "834ed20a-d7d8-419b-b72d-61b30db36560", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "46051d94-0e60-4010-b86d-cf65e1a464d8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "a50ad03e-d299-4da7-874c-0f233d7d503d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c18dd89d-e057-42aa-b071-0a91226da3bf", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "795079ed-4b5a-4750-b077-d653180d43ae", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "71efa12c-a68e-4537-ac7d-27ebf91557a6", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "36951b36-de01-45bc-91a7-1c68f5989ed5", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "91141263-7f27-494f-95e9-04a113952974", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", + "ruleType" : "atleastOneOf" + } ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "cacheable": 1, + "userGroups": [], + "resultTextTemplate": "%AllChildText%", + "welshLabel": "Amodau mechnïaeth", + "terminatesOffenceProceedings": false + }, { + "id" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Next hearing", + "shortCode" : "NEXH", + "level" : "O", + "rank" : 300, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "welshLabel" : "Gwrandawiad nesaf", + "isAvailableForCourtExtract" : false, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : true, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "fbed768b-ee95-4434-87c8-e81cbc8d24c8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "ruleType" : "optional" + } ] + }, { + "id" : "d076bd4a-17d5-4720-899a-1c6f96e3b35f", + "label" : "Remand unconditional bail", + "shortCode" : "REMUB", + "level" : "O", + "rank" : 32900, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", + "ruleType" : "mandatory" + }, { + "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType" : "mandatory" + }, { + "childResultDefinitionId" : "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "ruleType" : "optional" + } ] + }, { + "id" : "0056b9e1-7585-4bfa-82ec-f06202670bb1", + "label" : "Remand in custody", + "shortCode" : "REMIC", + "level" : "O", + "rank" : 33200, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "d0a369c9-5a28-40ec-99cb-da7943550b18", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", + "ruleType" : "atleastOneOf" + } ] + }, { + "id" : "d30f1863-f319-49fd-855d-2cf3fa6b3cea", + "label" : "Remand appeal", + "shortCode" : "REMA", + "level" : "O", + "rank" : 33400, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6af22d8d-6157-460e-b641-e6db90d15289", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "7a0932f5-8264-412e-a83c-2b6d1dce1506", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "074124d5-b07a-4b73-8b9a-792e8462138a", + "ruleType" : "atleastOneOf" + } ] + }, { + "id" : "62cd1ba4-9aaf-413b-96b0-238cfc82ef18", + "label" : "Press", + "shortCode" : "PRESS", + "level" : "O", + "rank" : 34100, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "fcbf777d-1a73-47e7-ab9b-7c51091a022c", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "89e3c24b-acbf-42fb-9eee-169b83423035", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c265d589-fcc0-451b-be43-7856e32524ba", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "393c5be8-dadb-484b-ab39-0f1eb57aeae5", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "9647428f-0946-4a09-aec1-7bdfcd324ac6", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "21271525-76f4-4134-9c93-1be012a574c8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d023e3a7-33ef-45b4-a19b-5137afecbf1f", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "2c18aff1-b535-47b6-8415-8841e85eac49", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "335204e2-6b6e-4ea8-ae72-f3341ea75777", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "2e725ba6-0e29-4ffb-a5c7-31b67344c211", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "98366b12-b70a-4e66-b71d-a5bbd39bd595", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b3035ace-15d4-44ca-9d79-c83a57dc0e30", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "84222bcb-05ac-4c67-82df-cc8742a850d1", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "07d8fab1-366d-43c5-bdb4-223f8c1229f5", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "bb90e801-0066-4bdf-85e6-8d64bc683f0c", + "ruleType" : "atleastOneOf" + },{ + "childResultDefinitionId" : "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", + "ruleType" : "atleastOneOf" + }] + }, { + "id" : "3f4f9b75-418f-46ed-a311-230a6dbca6cb", + "label" : "Credit for time remanded on bail", + "shortCode" : "CREDIT", + "level" : "D", + "rank" : 6000, + "wordGroups" : [ { + "wordGroup" : [ "Credit", "remand", "bail" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "N", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Credit for time", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "46bf6aa2-23f3-4c78-8c52-49b567d1193b", + "label" : "Warrants of arrest", + "shortCode" : "WAROA", + "level" : "O", + "rank" : 36200, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "c98cb51f-8639-49c1-91f0-a7e820c34355", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b4f7c223-b9d1-4409-b6d3-039f66eb9645", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "671df737-9901-4fa5-b245-aeff0c4c7495", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c8c962df-e28c-4ea8-8496-721badb77b7b", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "73242763-44db-4d57-a855-44a6cf4f6226", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "9b35f4f5-531e-48b4-858d-d81e15e77c23", + "ruleType" : "atleastOneOf" + } ] + }, { + "id" : "31b29c58-cfd2-41c6-addf-53f5a2c99fdc", + "label" : "Confiscation", + "shortCode" : "CON", + "level" : "O", + "rank" : 38300, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "76b02133-4927-4f21-9f79-1ce361a17b0f", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "733545c5-5612-40b8-bd81-df1a6a154182", + "ruleType" : "atleastOneOf" + } ] + }, { + "id" : "159c3430-fda4-4aea-8adc-62e4b6f07797", + "label" : "Rehabilitation requirement", + "shortCode" : "REHR", + "level" : "O", + "rank" : 42500, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "574fb809-4473-4a90-ba0f-519a50cfc9ec", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "55a1cab9-8aa6-41f6-a116-0345198324e6", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c5e204ce-9a2d-4911-96f7-e189565f429e", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "191ec139-10b6-4b18-8a2c-1359425244c3", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "536adc8b-1f26-43f0-9659-4bf25e2b42db", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "1819e6a0-b13d-47e0-9027-388819457256", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "27528205-a237-471b-a487-7943e9284c44", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d3313cb9-c75e-45e4-b833-8479ff80f9ac", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "fb9fedf8-2b60-496b-8147-168233e81be3", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "5ab456c8-d272-4082-87ed-cd1f44a0603a", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "8f979084-dc3b-4e71-bceb-87e30a4fc381", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "63f8c00a-2115-46a9-94ff-b30bbad0f287", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "30bd1b11-5336-486e-aae6-1285ab4c8d65", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "4e786114-e1c0-42bb-9c52-64edeffa3a3b", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "1e78e819-13fc-4e14-a263-c632e4e3c85e", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "03a1cbef-e54a-4a00-bcd5-44350f882ced", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "a17f9787-ba56-43d4-be5f-6fc91d29646e", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b986b6ad-816c-44d6-bdf8-0df189732648", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "a15102d7-a151-425a-a827-0e35bc159049", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "416684ab-755f-4958-ab83-2795a21d62a3", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d79c92bb-c301-491a-b4d2-cb86e473b5af", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "0f7eade6-3602-486c-8491-45e2bdee9960", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b8654020-f9ed-4707-8757-8db6efb323b9", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "78d6e77c-fb17-46ae-a719-66eacd6281a9", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "48646574-8bd7-49f7-9fa1-3aeb60f7c059", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "79deff01-d3b0-4453-b290-ea34c60ce3e9", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", + "ruleType" : "atleastOneOf" + } ] + }, { + "id" : "0c5824cd-b6db-4c8f-a8c3-92e7e4cc0195", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Special measures", + "shortCode" : "DIRS", + "level" : "C", + "rank" : 50200, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "02c8aef6-601a-46e8-bbe5-d614e0da764a", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b172d954-5aca-447b-b19e-2c836053b0af", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "41a18cc7-3106-4e84-8f66-ad52fe6dee75", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "ee74631f-c144-4a25-8a93-0253b98a7642", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "702b365f-dde6-4543-8fb5-1324c6a84ec4", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "52218899-8f26-45cd-ae30-aeff5c189261", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "633d192a-cc90-484e-aa1d-318816b7d44a", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "67a91dc8-f4f9-4f80-b644-e219326045cc", + "ruleType" : "atleastOneOf" + } ] + }, { + "id" : "92ccea16-370d-42cf-ae54-ed0951eaec95", + "label" : "Bad character", + "shortCode" : "BADC", + "level" : "C", + "rank" : 51400, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "fe77f387-ee64-4cef-8e95-c0776b9799e7", + "ruleType" : "atleastOneOf" + } ] + }, { + "id" : "e7e02d63-46c2-4603-8255-921427f410fe", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Send To Crown Court On Conditional Bail", + "shortCode" : "SendToCCOnCB", + "level" : "O", + "rank" : 53000, + "userGroups" : [ ], + "prompts" : [ { + "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label" : "Is the defendant excused attendance?", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "defendantExcusedAttendance", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", + "label" : "Bail condition reason", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXLM", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual" : null, + "reference" : "bailConditionReason", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "dec5104c-3342-4544-b287-31ea969e0f15", + "label" : "BASS provider", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bassProvider", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label" : "Additional reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalReasons", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4559", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType" : "mandatory" + }, { + "childResultDefinitionId" : "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "ruleType" : "mandatory" + } ] + }, { + "id" : "0118c2ad-9f50-4b0c-8f56-dff14b46b669", + "label" : "Interim Anti-social behaviour injunction", + "shortCode" : "ABII", + "level" : "O", + "rank" : 49600, + "userGroups" : [ ], + "prompts" : [ { + "id" : "2f1308c6-4fbf-4158-809b-5f382a0dafae", + "label" : "Interim Anti-social behaviour injunction made on notice until further order of the court", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "BOOLEAN", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "904e7e42-5cf0-44e3-810f-1bc67d10027c", + "label" : "Power of arrest attached to the following provisions", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "33408f3d-885c-43f4-a4a8-76e37906569f", + "label" : "Police force name (for power of arrest)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2da00d65-6cdc-4149-9d51-df6cb43d9729", + "label" : "Police force address (for power of arrest) line 1", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ceb435f2-3d72-4b5a-929a-ce976881ace7", + "label" : "Police force address (for power of arrest) line 2", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "aa72f5cb-221a-42ce-b1f3-81f110be0e12", + "label" : "Police force address (for power of arrest) line 3", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6516de6a-2998-4ae5-9833-ea37b408558f", + "label" : "Police force address (for power of arrest) line 4", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6dacab3d-a730-4020-aed3-15d442fbdff5", + "label" : "Police force address (for power of arrest) line 5", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4a13b230-a819-4955-87d8-fe1f1318abc1", + "label" : "Anti-social behaviour injunction requirements", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "18266b45-aae2-43b5-8a0b-e647df78e61a", + "label" : "Anti-social behaviour injunction prohibitions", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3516", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "1652f681-8b73-4b35-8982-d418e33e2dca", + "label" : "Anti-social behaviour injunction discharged", + "shortCode" : "ABID", + "level" : "O", + "rank" : 49700, + "userGroups" : [ ], + "prompts" : [ { + "id" : "9e013766-dc6b-4b33-8691-871cd95bbbb2", + "label" : "Date anti-social behaviour injunction made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bacb7dc5-0a23-41c4-9e61-018aa99c7758", + "label" : "Name of court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1eefddf4-76eb-4fe8-89d7-2c517bd6da99", + "label" : "Name of youth on anti-social behaviour injunction", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6b509d44-fb0e-463f-8b7f-675cb6903265", + "label" : "Parent's name", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0be420e0-d53a-4f8e-9b6e-bf32399a8139", + "label" : "Parent's address line 1", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0059a0fb-4c1f-4404-a510-ee62103e0ac3", + "label" : "Parent's address line 2", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e58ccaaf-b086-454c-945c-0e49e1ff3ac2", + "label" : "Parent's address line 3", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "07ca67f2-f61d-43df-b5ba-195c7be45ed4", + "label" : "Parent's address line 4", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5a4bca21-33ab-4676-be4e-47a6345e66bb", + "label" : "Parent's address line 5", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0305f628-85c3-42d6-82b8-7145d7c6087b", + "label" : "Police force address (for removal of power of arrest) Line 1", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "dbae711b-d60f-404c-bdac-323bcc2715d8", + "label" : "Police force address (for removal of power of arrest) Line 2", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "88c1856d-a5d2-46d7-83db-3e6b9611e607", + "label" : "Police station name (for power of arrest removal)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "53060dea-a815-492b-b426-79269ebfaafd", + "label" : "Police force address (for removal of power of arrest) Line 3", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "699e217b-6eef-4536-8bbe-8865e7a6cb1f", + "label" : "Police force address (for removal of power of arrest) Line 4", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "360992fa-96f8-4087-9cfa-fc2d6e23c931", + "label" : "Police force address (for removal of power of arrest) Line 5", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3516", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5c27e390-2656-4117-8104-a41b15b2f01b", + "label" : "Anti-social behaviour injunction detention order", + "shortCode" : "ABIDO", + "level" : "O", + "rank" : 49800, + "userGroups" : [ ], + "prompts" : [ { + "id" : "ec2d9337-782d-4c1a-be49-2c03b52c4788", + "label" : "Duration of detention in youth detention accomodation", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "701580e3-d5ea-4318-a8ad-0ecb00558215", + "label" : "Rreasons why no other power is available to the court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3516", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "311c8e5c-6f22-44a7-8c97-f72324cb05c4", + "label" : "Custody time limit", + "shortCode" : "CTL", + "level" : "O", + "rank" : 53100, + "userGroups" : [ ], + "prompts" : [ { + "id" : "5348fd0e-0670-4811-997f-1baa78b06d62", + "label" : "Custody time limit expires", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "CTLDATE", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4483c255-2761-4549-a70a-314aa311d052", + "label" : "Time spent in custody (in days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "CTLTIME", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", + "label" : "Credit for time in custody in foreign jurisdiction", + "shortCode" : "CREDITF", + "level" : "D", + "rank" : 6100, + "wordGroups" : [ { + "wordGroup" : [ "Credit", "foreign", "custody" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Credit for time", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "66105417-41c8-420d-820f-40b61b507442", + "label" : "Risk or vulnerability factors", + "shortCode" : "vulnarability", + "level" : "D", + "rank" : 900, + "wordGroups" : [ { + "wordGroup" : [ "vulnarability", "risk,vulnerability,factors" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "riskFactors", + "courtExtract" : "N", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5b3a1f08-8008-4a1d-94b1-e0d4e1bd44df", + "label" : "Anti-social behaviour injunction detention order revoked ", + "shortCode" : "ABIDOR", + "level" : "O", + "rank" : 49900, + "userGroups" : [ ], + "prompts" : [ { + "id" : "31305c79-6634-4ed7-8ab1-40af1f34f74e", + "label" : "Date anti-social behaviour injunction detention order made", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "c108853c-bd16-4677-9352-af7a20395f72", + "label" : "Name of youth in detention", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bacb7dc5-0a23-41c4-9e61-018aa99c7758", + "label" : "Name of court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e76673b3-7ca8-4a32-898d-dfa2e6047f24", + "label" : "Date of birth of youth in detention", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6927b6ac-4c85-4532-838d-88ac00ea83f9", + "label" : "Conveyor / custodian name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3516", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4e170564-93b2-4d45-b653-90099acf8313", + "label" : "Engagement and support order", + "shortCode" : "ESO", + "level" : "O", + "rank" : 53200, + "userGroups" : [ ], + "prompts" : [ { + "id" : "7bc1e57b-4cae-4b3d-bd80-50a8d42b3b41", + "label" : "Date by which meetings must take place", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "00f2671f-f825-406c-ad80-75ff13e837f9", + "label" : "Name of supervisor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1e697e74-f38b-4388-a7b5-51d51180d2f2", + "label" : "The Local Justice Area the defendant lives in", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1144", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5e253119-9aab-4d0d-8288-bcdbf3695d86", + "label" : "Order", + "shortCode" : "ORD", + "level" : "O", + "rank" : 53300, + "userGroups" : [ ], + "prompts" : [ { + "id" : "3da00e9f-7638-4f7d-9c98-275e74ac1e0e", + "label" : "Order details", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", + "label" : "Defendant to notify names and home address", + "shortCode" : "DNNH", + "level" : "O", + "rank" : 800, + "userGroups" : [ ], + "prompts" : [ { + "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", + "label" : "Defendant to notify all names and home address within 3 days to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 10, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label" : "Method of notification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 110, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f9d5418b-eb45-4614-bfb6-0e64d6a8e032", + "label" : "Defendant to notify names and home address to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "65f58042-5608-4d48-9aa9-3ba5ea38775e", + "label" : "Method of notification", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ee8a9064-e558-47db-8b18-6818b1c120bf", + "label" : "Slavery and trafficking prevention order", + "shortCode" : "STPO", + "level" : "O", + "rank" : 19600, + "userGroups" : [ ], + "prompts" : [ { + "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label" : "Duration of order", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "11f6a6ca-985b-4aa9-a6f2-de4214fcbe0f", + "label" : "This order lasts until further order", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "56190eb2-0035-44cc-b904-b131f299835c", + "label" : "Prohibitions contained in the order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3285", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", + "ruleType" : "optional" + }, { + "childResultDefinitionId" : "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", + "ruleType" : "optional" + }, { + "childResultDefinitionId" : "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", + "ruleType" : "optional" + } ] + }, { + "id" : "fcb26a5f-28cc-483e-b430-d823fac808df", + "label" : "Excise penalty", + "shortCode" : "excise, penalty", + "level" : "O", + "rank" : 53400, + "wordGroups" : [ { + "wordGroup" : [ "excise, penalty" ] + }, { + "wordGroup" : [ ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "b3dfed9a-efba-4126-a08d-cf37d18b4563", + "label" : "Amount of excise penalty", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "AOF", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1119", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "68720a39-3bf6-4678-9d6b-40386da7d53a", + "label" : "Warrant for arrest for breach of community penalty with bail (dated)", + "shortCode" : "WCPD", + "level" : "O", + "rank" : 53500, + "userGroups" : [ ], + "prompts" : [ { + "id" : "2fa31208-5fed-4f52-a63e-c3a83cc733fa", + "label" : "Reason for arrest is a failure to comply with the", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "24b40430-a75e-44ba-b367-bae3139b4d19", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9405e797-240e-4e71-ab35-43e90e3a8a5b", + "label" : "Reason for the decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", + "label" : "Warrant execution allocated to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "507c4249-d897-43bb-b64d-5c156ef6ba85", + "label" : "Bail to be allowed on these conditions", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4575", + "adjournment" : true, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType" : "mandatory" + } ] + }, { + "id" : "ed34136f-2a13-45a4-8d4f-27075ae3a8a9", + "label" : "Warrant for arrest for breach of community penalty without bail", + "shortCode" : "WCPN", + "level" : "O", + "rank" : 53600, + "userGroups" : [ ], + "prompts" : [ { + "id" : "2fa31208-5fed-4f52-a63e-c3a83cc733fa", + "label" : "Reason for arrest is a failure to comply with the", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "24b40430-a75e-44ba-b367-bae3139b4d19", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9405e797-240e-4e71-ab35-43e90e3a8a5b", + "label" : "Reason for the decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", + "label" : "Warrant execution allocated to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4576", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "664d0c0d-115b-4d54-b137-301c9ed74ef9", + "label" : "Recommended for deportation when released", + "shortCode" : "RDEPD", + "level" : "D", + "rank" : 6200, + "wordGroups" : [ { + "wordGroup" : [ "deportation", "release" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "16bb9f17-d3c3-42f1-a4dc-2d953114a214", + "label" : "Nationality", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2cbae4d2-e4d0-4451-be7c-713c2a1a8974", + "label" : "Residence and reporting restrictions etc", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8c144a05-5804-4478-a419-12bab06748cc", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3006", + "adjournment" : false, + "convicted" : false, + "qualifier" : "CN", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0d1b161b-d6b0-4b1b-ae08-535864e4f631", + "label" : "Warrant for arrest for community penalty breach with bail (undated)", + "shortCode" : "WCPU", + "level" : "O", + "rank" : 53700, + "userGroups" : [ ], + "prompts" : [ { + "id" : "2fa31208-5fed-4f52-a63e-c3a83cc733fa", + "label" : "Reason for arrest is a failure to comply with the", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "24b40430-a75e-44ba-b367-bae3139b4d19", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "9405e797-240e-4e71-ab35-43e90e3a8a5b", + "label" : "Reason for the decision", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", + "label" : "Warrant execution allocated to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "I", + "cjsCode" : "4577", + "adjournment" : true, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : true, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "491e30e9-2508-4e3a-9291-dfaf16d975ab", + "label" : "Sent to Crown Court for trial", + "shortCode" : "SCC", + "level" : "O", + "rank" : 53800, + "userGroups" : [ ], + "prompts" : [ { + "id" : "4362a1a4-aa80-4a68-ae61-f57962709f3d", + "label" : "Sent for trial under", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : "999ecc93-0fd8-47d8-8b2d-9286c0c5d491", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f83671fb-7f2f-4b38-b6f3-71db90768485", + "label" : "Indicated plea", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : "84d620c3-35ca-49ae-879d-95efaaf670af", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d7d2c7b1-f27a-44ed-a227-ea9b917f0229", + "label" : "No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "654fce8c-238a-468a-92db-f7509394cf08", + "label" : "A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "DATE", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5dfec956-547d-4e2b-b1f6-743376511589", + "label" : "Trial issues identified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "49365935-e535-42db-bc41-a18c8fee5258", + "label" : "Directions made", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8", + "label" : "No indication given re victim personal statement", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6", + "label" : "Victim wishes to read victim personal statement to court", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "BOOLEAN", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "583ea6cb-4251-406e-b07a-445fb0dde914", + "label" : "Victim personal statement to be presented to court by prosecutor or other person", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "BOOLEAN", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e2b9a67c-cbd8-4479-89ff-57b2b6632835", + "label" : "Additional details re victim personal statement", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7e657be6-9e6f-410d-ba6a-74cfedb1b3f9", + "label" : "Probation / Youth Offending Team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "05496e53-66f5-47a0-9fff-f31cbd5191a0", + "label" : "Was a PSR ordered?", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "BOOLEAN", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : null, + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ca16bc9f-9d62-4dd3-b8af-a77004ff8002", + "label" : "Recommended for deportation when detained", + "shortCode" : "RDEPN", + "level" : "D", + "rank" : 6300, + "wordGroups" : [ { + "wordGroup" : [ "deportation", "detained" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "16bb9f17-d3c3-42f1-a4dc-2d953114a214", + "label" : "Nationality", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "8c144a05-5804-4478-a419-12bab06748cc", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3006", + "adjournment" : false, + "convicted" : false, + "qualifier" : "CQ", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "e866cd11-6073-4fdf-a229-51c9d694e1d0", + "label" : "Surcharge", + "shortCode" : "FVS", + "level" : "D", + "rank" : 6400, + "wordGroups" : [ { + "wordGroup" : [ "FVS" ] + }, { + "wordGroup" : [ "victim", "surcharge" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "629a971e-9d7a-4526-838d-0a4cb922b5cb", + "label" : "Amount of surcharge", + "welshLabel" : "Swm y gordal", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "AOS", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Gordal", + "isAvailableForCourtExtract" : true, + "financial" : true, + "category" : "A", + "cjsCode" : "3117", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "5eb79085-3035-4a00-a549-6dd24abafe8c", + "label" : "No action taken on breach", + "shortCode" : "NOACT", + "level" : "O", + "rank" : 6500, + "wordGroups" : [ { + "wordGroup" : [ "action", "breach" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "d144ad72-f68a-4b16-a145-ab3c95599dcc", + "label" : "Imposing court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "13cd9c54-228b-4dd0-966b-93f4e9bf3a0b", + "label" : "Date of original imposition", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label" : "Reason", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1087", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + },{ + "id": "969f150c-cd05-46b0-9dd9-30891efcc766", + "version": "2021-02-25T12:38:32.964Z", + "startDate": "2021-02-26", + "label": "Fine", + "shortCode": "FO", + "level": "O", + "rank": 22300, + "canExtendActiveOrder": true, + "wordGroups": [ + { + "wordGroup": [ + "FO", + "fine" + ] + } + ], + "prompts": [ + { + "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", + "label": "Amount of fine", + "welshLabel": "Swm y ddirwy", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "financial": "Y", + "reference": "AOF", + "wordGroup": [ + "Amount" + ], + "userGroups": [ + + ], + "min": "0", + "max": "999999999", + "wording": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "supervisingCourt", - "nameEmail": false, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false, + "activeOrderExtended": true, + "activeOrderNotExtended": false } ], - "welshLabel": "Gorchymyn dedfryd ohiriedig - carcharu", - "financial": "N", + "welshLabel": "Dirwy", + "financial": "Y", "unscheduled": false, "adjournment": "N", "category": "F", "urgent": false, "convicted": "Y", "d20": false, - "dvlaCode": "C", - "cjsCode": "1115", + "resultDefinitionGroup": "Imposition", + "cjsCode": "1015", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, @@ -64710,112 +42752,7653 @@ "excludedFromResults": false, "alwaysPublished": false, "jurisdiction": "B", - "libraCode": "SUSPS", + "libraCode": "FO", + "lCode": "FINE", "resultDefinitionRules": [ { - "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "childResultDefinitionId": "9ea0d845-5096-44f6-9ce0-8ae801141eac", "ruleType": "optional" }, { - "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType": "mandatory" + "childResultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", + "ruleType": "optional" }, { - "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "ruleType": "optional" + "childResultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "ruleType": "oneOf" }, { - "childResultDefinitionId": "859c7729-93bf-4fda-8345-3e56695dddb5", + "childResultDefinitionId": "bdb32555-8d55-4dc1-b4b6-580db5132496", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", "ruleType": "optional" } ], - "canBeSubjectOfBreach": true, - "canBeSubjectOfVariation": true, - "resultTextTemplate": "Committed to prison for {imprisonmentPeriod}[ {concurrent}][ consecutive to offence {consecutiveToOffenceNumber}][ which is on case number {whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber}] suspended. Reason: {imprisonmentReasons}.[ Reason for custody: {theReasonsForThis}.] [The defendant must comply with the requirements (shown below) within the supervision period.%CRS%] %FRHS% In the event of activation of sentence: {bailRemandDaysToCountTaggedDays} bail remand days to count. %STIMP%", - "dependantResultDefinitionGroup": "Community Requirements", "isAvailableForCourtExtract": true, "isBooleanResult": false - }, - { - "id": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "version": "2022-12-08T20:00:45.902Z", - "startDate": "2022-12-09", - "label": "Total suspended custodial period", - "shortCode": "STIMP", + }, { + "id" : "f5d492b8-a09b-4f70-9ceb-aa06c306a7dc", + "rollUpPrompts": false, + "publishedForNows": true, + "label" : "Costs to Crown Prosecution Service", + "shortCode" : "FCPC", + "level" : "C", + "rank" : 6700, + "wordGroups" : [ { + "wordGroup" : [ "Costs", "CPS" ] + }, { + "wordGroup" : [ "FCPC" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f63b0bb5-7d93-4dab-bc3d-b4bd27152871", + "label" : "Amount of costs", + "welshLabel" : "Swm y costau", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "AOC", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Costau i Wasanaeth Erlyn y Goron", + "isAvailableForCourtExtract" : true, + "financial" : true, + "category" : "F", + "cjsCode" : "3011", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ae89b99c-e0e3-47b5-b218-24d4fca3ca53", + "label" : "Compensation", + "shortCode" : "FCOMP", + "level" : "O", + "rank" : 6800, + "wordGroups" : [ { + "wordGroup" : [ "FCOMP" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "26985e5b-fe1f-4d7d-a21a-57207c5966e7", + "label" : "Amount of compensation", + "welshLabel" : "Swm yr iawndal", + "resultPromptRule" : "mandatory", + "type" : "CURR", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "AOCOM", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "af921cf4-06e7-4f6b-a4ea-dcb58aab0dbe", + "label" : "Major creditor name", + "welshLabel" : "Enw’r Prif Gredydwr", + "resultPromptRule" : "oneOf", + "type" : "FIXL", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", + "qual" : null, + "reference" : "CREDNAME", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", + "label" : "Minor creditor company name", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "043faecf-e97c-4daf-9763-4b755d941b45", + "label" : "Minor creditor title", + "welshLabel" : null, + "resultPromptRule" : "oneOf", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "202afd61-e9fb-4bc7-aad6-f0a5799406e2", + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", + "label" : "Minor creditor surname", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", + "label" : "Minor creditor initials", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "41576571-5573-498b-a9e9-eee24f7a67fa", + "label" : "Minor creditor forename(s)", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", + "label" : "Minor creditor address", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", + "label" : "Minor creditor postcode", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "N", + "durationSequence" : null + } ], + "welshLabel" : "Iawndal", + "isAvailableForCourtExtract" : true, + "financial" : true, + "category" : "F", + "cjsCode" : "3012", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "label" : "Community requirement: Electronic monitoring whereabouts", + "shortCode" : "EMW", + "level" : "O", + "rank" : 1400, + "wordGroups" : [ { + "wordGroup" : [ "Electronic", "Monitoring", "Whereabouts", "first", "GPS" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label" : "Start date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f18d4d90-954d-4b27-9e70-f4be9c487b0e", + "label" : "Start time", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startTime", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd6186a4-d928-47f1-abee-2466b9b80ebf", + "label" : "End time", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endTime", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label" : "Contractor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : "contractor", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3148", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ae617390-b41e-46ac-bd63-68a28512676a", + "label" : "Community order Scotland", + "shortCode" : "COS", + "level" : "O", + "rank" : 6900, + "wordGroups" : [ { + "wordGroup" : [ "Community", "Order", "scotland" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label" : "Judge reserves breach proceedings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : [ "Breach" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label" : "End Date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad4f684d-0a83-4ee1-b04f-7864487eb41c", + "label" : "Appropriate Scottish Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5cf339ba-1dd4-4476-99a5-281c833dd134", + "label" : "Locality in Scotland", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "93861000-c4dd-449c-a876-83381beb9719", + "label" : "Corresponding Scottish Order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label" : "Supervising Court name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "supervisingCourtName", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1280d70e-ea43-42d3-8e96-ce72b8933876", + "label" : "Persistent offender previously fined", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1116", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "9bec5977-1796-4645-9b9e-687d4f23d37d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "cc2cbb94-b75a-4a8c-9840-31c5f8007724", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "61ea03c9-c113-446b-a392-402144fcd9e8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "bcf1b451-af1e-4603-9605-586310d0e61e", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "a5aa694e-4729-40f5-814e-60a75d9429e0", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "65a59f46-61ae-4dac-a040-a25fca647cb2", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "1c40353b-a3b8-4437-8691-6b54d5842010", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c1b0dedf-1380-4889-9d31-1816b850e348", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "a19714a0-5d58-4666-bc15-3d9dd2692f77", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "364d3065-0699-4df1-a68f-a69c429d0867", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "99586f43-5b18-45da-87f7-1764ad149985", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d683f73c-488e-4d8e-a685-d37049c2a3e5", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "091cd45b-4312-476e-a122-18cc02fd1699", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "ruleType" : "atleastOneOf" + } ] + }, { + "id" : "66aac609-8987-44cf-a0dc-fb49a7195090", + "label" : "Community order Northern Ireland", + "shortCode" : "CONI", + "level" : "O", + "rank" : 7000, + "wordGroups" : [ { + "wordGroup" : [ "Community", "Order", "ireland" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label" : "Judge reserves breach proceedings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 800, + "duration" : null, + "wordGroup" : [ "Breach" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label" : "End Date", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", + "label" : "Petty Sessions District", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b76491aa-02fe-4c14-80d7-4401cc1105e1", + "label" : "Corresponding Northern Ireland Order", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label" : "Responsible officer", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual" : null, + "reference" : "responsibleOfficer", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label" : "Supervising Court name", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "supervisingCourtName", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "1280d70e-ea43-42d3-8e96-ce72b8933876", + "label" : "Persistent offender previously fined", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1116", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "9bec5977-1796-4645-9b9e-687d4f23d37d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "cc2cbb94-b75a-4a8c-9840-31c5f8007724", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "61ea03c9-c113-446b-a392-402144fcd9e8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "bcf1b451-af1e-4603-9605-586310d0e61e", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "a5aa694e-4729-40f5-814e-60a75d9429e0", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "65a59f46-61ae-4dac-a040-a25fca647cb2", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "1c40353b-a3b8-4437-8691-6b54d5842010", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "c1b0dedf-1380-4889-9d31-1816b850e348", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "a19714a0-5d58-4666-bc15-3d9dd2692f77", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "364d3065-0699-4df1-a68f-a69c429d0867", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "99586f43-5b18-45da-87f7-1764ad149985", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "d683f73c-488e-4d8e-a685-d37049c2a3e5", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "091cd45b-4312-476e-a122-18cc02fd1699", + "ruleType" : "atleastOneOf" + }, { + "childResultDefinitionId" : "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "ruleType" : "atleastOneOf" + } ] + }, { + "id" : "23f2178b-0083-4bd1-a830-d9c7291f02bd", + "label" : "Suspended sentence order Scotland - imprisonment", + "shortCode" : "SUSPSS", + "level" : "O", + "rank" : 7100, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "imprisonment", "scotland" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0f3114e6-b7b2-4281-8b96-168cbbcd064b", + "label" : "Imprisonment reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label" : "The reasons for this", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad4f684d-0a83-4ee1-b04f-7864487eb41c", + "label" : "Appropriate Scottish Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5cf339ba-1dd4-4476-99a5-281c833dd134", + "label" : "Locality in Scotland", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d483e89c-4919-4248-a046-372a6a4532a6", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1115", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType" : "mandatory" + } ] + }, { + "id" : "8fac72a9-3193-47ec-9010-e73158813cfd", + "label" : "Suspended sentence order Northern Ireland - imprisonment", + "shortCode" : "SUSPSNI", + "level" : "O", + "rank" : 7200, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "imprisonment", "ireland" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "0f3114e6-b7b2-4281-8b96-168cbbcd064b", + "label" : "Imprisonment reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label" : "The reasons for this", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", + "label" : "Petty Sessions District", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d483e89c-4919-4248-a046-372a6a4532a6", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1115", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType" : "mandatory" + } ] + }, { + "id" : "9161f3cb-e821-44e5-a9ee-4680b358a037", + "label" : "Guilty plea taken into account", + "shortCode" : "GPTAC", + "level" : "O", + "rank" : 7300, + "wordGroups" : [ { + "wordGroup" : [ "Guility", "plea", "account" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1f413a5a-f385-4264-9e23-1fdc80455091", + "label" : "Comment on discount / reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "554c2622-c1cc-459e-a98d-b7f317ab065c", + "label" : "Conditional discharge", + "shortCode" : "CD", + "level" : "O", + "rank" : 7400, + "wordGroups" : [ { + "wordGroup" : [ "conditional", "discharge" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label" : "Period of conditional discharge", + "welshLabel" : "Cyfnod o ryddhad amodol", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label" : "Period of conditional discharge", + "welshLabel" : "Cyfnod o ryddhad amodol", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label" : "Period of conditional discharge", + "welshLabel" : "Cyfnod o ryddhad amodol", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label" : "Period of conditional discharge", + "welshLabel" : "Cyfnod o ryddhad amodol", + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + } ], + "welshLabel" : "Ryddhad Amodol", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1018", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b9c6047b-fb84-4b12-97a1-2175e4b8bbac", + "label" : "Absolute discharge", + "shortCode" : "AD", + "level" : "O", + "rank" : 7500, + "wordGroups" : [ { + "wordGroup" : [ "absolute", "discharge" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "welshLabel" : "Rhyddhad diamod", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1017", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "32177be4-0a1f-4889-9ca2-c729f49d7d85", + "label" : "Forfeiture order (other than vehicle)", + "shortCode" : "forfov", + "level" : "O", + "rank" : 7800, + "wordGroups" : [ { + "wordGroup" : [ "forfeiture", "destruction", "vehicle" ] + }, { + "wordGroup" : [ "forfov" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8c5aa7f9-326e-4525-803a-63eedc16e4e2", + "label" : "Property to be forfeited", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "98a562ee-7583-405a-ab05-3f922ada4872", + "label" : "Type of forfeiture", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "26d4c112-a7ae-11e8-98d0-529269fb1459", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d5cfcf4-abb5-4449-b9ba-844353fc6035", + "label" : "Destruction / dispose of / deal with / sell", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ba14f9b0-9912-4529-ae63-46eda7708500", + "label" : "Method of disposal etc", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "564e9cd7-5a71-4b8d-b404-211afe28f0ed", + "label" : "Specify who is to destroy etc", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3054", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Forfeiture and deprivation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "290435b9-cce7-43be-b340-1c7db48c5413", + "label" : "Forfeiture order (Vehicle - Section 33C of the Environmental Protection Act 1990)", + "shortCode" : "FORVEPO", + "level" : "O", + "rank" : 7900, + "wordGroups" : [ { + "wordGroup" : [ "forfeiture", "vehicle" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e0aab342-1b85-4942-8efb-232ef97d81d1", + "label" : "Defendant to be deprived of vehicle described as", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b729ae65-ca66-466f-a858-bb33581cd580", + "label" : "Name of enforcement authority", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3138", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Forfeiture and deprivation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", + "label" : "Order for deprivation of the defendant's rights (other than vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", + "shortCode" : "DEPO", + "level" : "O", + "rank" : 8000, + "wordGroups" : [ { + "wordGroup" : [ "deprivation", "not", "vehicle" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "3cfbca15-fd95-4a23-9f57-f60d62f22936", + "label" : "Defendant to be deprived of this property", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3055", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Forfeiture and deprivation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "rollUpPrompts": true, + "publishedForNows": false, + "label" : "Community requirement: Curfew with electronic monitoring", + "shortCode" : "CURE", + "level" : "O", + "rank" : 1600, + "wordGroups" : [ { + "wordGroup" : [ "Electronic", "Monitoring", "Curfew", "first" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label" : "Curfew and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAndElectricalMonitoringPeriod", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label" : "Curfew and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAndElectricalMonitoringPeriod", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label" : "Curfew and electronic monitoring period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAndElectricalMonitoringPeriod", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label" : "Start date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f18d4d90-954d-4b27-9e70-f4be9c487b0e", + "label" : "Start time", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startTime", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd6186a4-d928-47f1-abee-2466b9b80ebf", + "label" : "End time", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endTime", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label" : "Curfew address, details and timings", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAddressDetailAndTiming", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label" : "Contractor", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual" : null, + "reference" : "contractor", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3105", + "adjournment" : false, + "convicted" : true, + "qualifier" : "BA", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", + "label" : "Order for deprivation of rights (vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", + "shortCode" : "DEPV", + "level" : "O", + "rank" : 8100, + "wordGroups" : [ { + "wordGroup" : [ "deprivation", "vehicle" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e0aab342-1b85-4942-8efb-232ef97d81d1", + "label" : "Defendant to be deprived of vehicle described as", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "3055", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Forfeiture and deprivation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", + "label" : "Forfeiture order (land vehicle - Modern Slavery Act 2015)", + "shortCode" : "FORFMS", + "level" : "O", + "rank" : 8200, + "wordGroups" : [ { + "wordGroup" : [ "forfeiture", "slavery" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "e0aab342-1b85-4942-8efb-232ef97d81d1", + "label" : "Defendant to be deprived of vehicle described as", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3138", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Forfeiture and deprivation", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "cfbe83c8-935b-4410-a68c-49452519f2d3", + "label" : "Mandatory life imprisonment", + "shortCode" : "MLI", + "level" : "O", + "rank" : 8300, + "wordGroups" : [ { + "wordGroup" : [ "mandatory", "Life", "imprisonment" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label" : "Minimum term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label" : "Early release provisions apply", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Early", "release" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label" : "Early release provisions do not apply", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : [ "Early", "not", "release" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1002", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : true, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "96349367-2d04-4265-978f-6c6b417497fd", + "label" : "Mandatory custody for life", + "shortCode" : "MCL", + "level" : "O", + "rank" : 8400, + "wordGroups" : [ { + "wordGroup" : [ "Mandotory", "custody", "Life" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label" : "Minimum term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label" : "Early release provisions apply", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Early", "release" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label" : "Early release provisions do not apply", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : [ "Early", "not", "release" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1024", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AB", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : true, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "3f608dba-20ad-4710-bebc-d78b4b3ff08d", + "label" : "Custody for life", + "shortCode" : "CFL", + "level" : "O", + "rank" : 8500, + "wordGroups" : [ { + "wordGroup" : [ "custody", "Life" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label" : "Minimum term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label" : "Early release provisions apply", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Early", "release" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label" : "Early release provisions do not apply", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : [ "Early", "not", "release" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1024", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : true, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "d65f3285-f5f0-4ab1-b703-0c95f0f6ed89", + "label" : "Life imprisonment for second listed offence", + "shortCode" : "LIMP2", + "level" : "O", + "rank" : 8600, + "wordGroups" : [ { + "wordGroup" : [ "Life", "imprisonment", "second" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label" : "Minimum term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1002", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AC", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : true, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "d844cdd8-c110-4bb8-b8f2-1a8bd5fdc0c7", + "label" : "Custody for life for second listed offence", + "shortCode" : "LIMPS2O", + "level" : "O", + "rank" : 8700, + "wordGroups" : [ { + "wordGroup" : [ "Life", "custody", "second" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label" : "Minimum term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1002", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AC", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : true, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "cf70d7ed-8049-4fe2-b02f-5a23b5e39184", + "label" : "Life imprisonment for serious offence (S.225)", + "shortCode" : "LIMPSO", + "level" : "O", + "rank" : 8800, + "wordGroups" : [ { + "wordGroup" : [ "Life", "imprisonment", "serious" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label" : "Minimum term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1002", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "6e42d694-a785-4cbf-a4a8-09f2d1802d4d", + "label" : "Custody for life for serious offence  (S.255)", + "shortCode" : "CFLS", + "level" : "O", + "rank" : 8900, + "wordGroups" : [ { + "wordGroup" : [ "Life", "custody", "serious" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label" : "Minimum term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1024", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "4f640ea6-88d4-4a3a-b816-ff5a79eaaa14", + "label" : "Special custodial sentence of imprisonment for offender of particular concern", + "shortCode" : "SPECC", + "level" : "O", + "rank" : 9000, + "wordGroups" : [ { + "wordGroup" : [ "special", "custody", "concern" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label" : "Term of sentence of imprisonment (aggregate)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label" : "Term of sentence of imprisonment (aggregate)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label" : "Term of sentence of imprisonment (aggregate)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label" : "Term of sentence of imprisonment (aggregate)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1002", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "label" : "Community requirement: Curfew", + "shortCode" : "CUR", + "level" : "O", + "rank" : 1500, + "wordGroups" : [ { + "wordGroup" : [ "Curfew", "Requirement" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", + "label" : "Curfew period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", + "label" : "Curfew period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", + "label" : "Curfew period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label" : "Start date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label" : "Curfew address, details and timings", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAddressDetailAndTiming", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3105", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "a920be42-b376-420b-ace9-d2d0634559b0", + "label" : "Extended sentence of imprisonment for violent or sexual offence (21 and over)(S.226A)", + "shortCode" : "EXTIVS", + "level" : "O", + "rank" : 9100, + "wordGroups" : [ { + "wordGroup" : [ "extended", "imprisonment", "violent", "sexual", "over", "21" ] + }, { + "wordGroup" : [ "extended", "imprisonment" ] + }, { + "wordGroup" : [ "EXTIVS" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label" : "Extended sentence of imprisonment term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label" : "Extended sentence of imprisonment term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label" : "Extended sentence of imprisonment term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label" : "Extended sentence of imprisonment term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 500, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", + "label" : "Reason for significant risk to public of serious harm", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1002", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AF", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "optional" + } ] + }, { + "id" : "752aab8f-ba5f-45a8-80c8-4df7770e70e4", + "label" : "Extended sentence of detention for violent or sexual offence (18-20)(S.226A)", + "shortCode" : "EXTDVS", + "level" : "O", + "rank" : 9200, + "wordGroups" : [ { + "wordGroup" : [ "extended", "detention", "violent", "sexual", "over", "18" ] + }, { + "wordGroup" : [ "detained", "extended", "over" ] + }, { + "wordGroup" : [ "EXTDVS" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label" : "Extended sentence of detention term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label" : "Extended sentence of detention term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label" : "Extended sentence of detention term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label" : "Extended sentence of detention term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 500, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", + "label" : "Reason for significant risk to public of serious harm", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1024", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AF", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "1dd2e245-a9af-4d04-84b6-92f64dc312fe", + "label" : "Extended sentence of detention for violent or sexual offence (under 18)(S.226B)", + "shortCode" : "EXTDVSU", + "level" : "O", + "rank" : 9300, + "wordGroups" : [ { + "wordGroup" : [ "detained", "extended", "under" ] + }, { + "wordGroup" : [ "extended", "detention", "violent", "sexual", "under", "18" ] + }, { + "wordGroup" : [ "EXTDVSU" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label" : "Extended sentence of detention term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label" : "Extended sentence of detention term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label" : "Extended sentence of detention term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label" : "Extended sentence of detention term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label" : "Appropriate custodial term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label" : "Extension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 400, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 500, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", + "label" : "Reason for significant risk to public of serious harm", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1007", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AF", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "892de3ce-1e80-454e-8c72-44e694b06e93", + "label" : "Detained at Her Majesty's pleasure (under 18)(S.90)", + "shortCode" : "DETMP", + "level" : "O", + "rank" : 9400, + "wordGroups" : [ { + "wordGroup" : [ "detained", "pleasure", "under", "18" ] + }, { + "wordGroup" : [ "detained", "majesty" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label" : "Minimum term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1003", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "optional" + } ] + }, { + "id" : "70fe7114-b511-4d9b-a550-2c040b9a8d34", + "label" : "Detained for specified period for serious offence (under 18)(S.91)", + "shortCode" : "DETSO", + "level" : "O", + "rank" : 9500, + "wordGroups" : [ { + "wordGroup" : [ "detained", "Period", "serious", "under", "18" ] + }, { + "wordGroup" : [ "detained", "Period" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ab6cc1f6-011b-4744-accc-bba181614188", + "label" : "Detention Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab6cc1f6-011b-4744-accc-bba181614188", + "label" : "Detention Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab6cc1f6-011b-4744-accc-bba181614188", + "label" : "Detention Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ab6cc1f6-011b-4744-accc-bba181614188", + "label" : "Detention Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "746c833a-7d33-4800-a40c-425dbacf7492", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : "concurrent", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "7784b81d-44d2-43c0-a903-a53b0e73683b", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : "consecutiveToOffenceNumber", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "da9c91a6-7090-44f3-8644-b4b184533fc4", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "8115982c-af5c-4439-b6ff-c9c6303a6292", + "label" : "Detention reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1007", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "7f410e16-bda3-4bca-944e-ef88832e41b5", + "label" : "Minimum sentence of detention in young offender institution for drug trafficking", + "shortCode" : "MINDDT", + "level" : "O", + "rank" : 9600, + "wordGroups" : [ { + "wordGroup" : [ "minimum", "detention", "yoi", "Drug" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label" : "Custody period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label" : "Custody period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label" : "Custody period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label" : "Custody period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1024", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AD", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "1bcdae76-37f8-4331-9076-fd46dbd4b1fc", + "label" : "Minimum sentence of detention in young offender institution for domestic burglary", + "shortCode" : "MINDDB", + "level" : "O", + "rank" : 9700, + "wordGroups" : [ { + "wordGroup" : [ "minimum", "detention", "yoi", "domestic" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label" : "Custody Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label" : "Custody Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label" : "Custody Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label" : "Custody Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1024", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AE", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "47f143eb-7961-4e85-834b-1aa5e47cb3ef", + "label" : "Minimum sentence of Imprisonment for drug trafficking", + "shortCode" : "MINIDT", + "level" : "O", + "rank" : 9800, + "wordGroups" : [ { + "wordGroup" : [ "Miniumum", "imprisonment", "Drug" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1002", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AD", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "97fdae65-37a0-4156-912f-a35363e26f31", + "label" : "Minimum sentence of Imprisonment for domestic burglary", + "shortCode" : "MINIDB", + "level" : "O", + "rank" : 9900, + "wordGroups" : [ { + "wordGroup" : [ "minimum", "imprisonment", "domestic" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label" : "Imprisonment Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label" : "Bail remand days to count (tagged days)", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "bailRemandDaysToCount", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label" : "Number of days in custody in foreign jurisdiction to count", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1002", + "adjournment" : false, + "convicted" : true, + "qualifier" : "AE", + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType" : "mandatory" + } ] + }, { + "id" : "5679e5b7-0ca8-4d2a-ba80-7a50025fb589", + "label" : "Suspended sentence order - detention in a young offender institution", + "shortCode" : "SUSPSD", + "level" : "O", + "rank" : 10000, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "detention", "yoi" ] + }, { + "wordGroup" : [ "suspended", "detention" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label" : "Custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label" : "Custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label" : "Custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label" : "Custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "31e2a7a7-03fc-472b-97ad-67d5aae41a70", + "label" : "Custody reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label" : "The reasons for this", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label" : "Responsible officer", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "FIXL", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual" : null, + "reference" : "responsibleOfficer", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label" : "Supervising Court name", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "supervisingCourtName", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d483e89c-4919-4248-a046-372a6a4532a6", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1134", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType" : "mandatory" + } ] + }, { + "id" : "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "label" : "Community requirement: Curfew with second address", + "shortCode" : "CURA", + "level" : "O", + "rank" : 1700, + "wordGroups" : [ { + "wordGroup" : [ "Curfew", "Additional" ] + }, { + "wordGroup" : [ "Curfew", "second" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label" : "Start date", + "welshLabel" : "Dyddiad cychwyn", + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "startDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label" : "This order lasts until", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "endDate", + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label" : "Curfew address, details and timings", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "curfewAddressDetailAndTiming", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3105", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "06f0ddcd-30d5-49ac-9500-3d66daeeda9b", + "label" : "Suspended sentence order Scotland - detention in a young offender institution", + "shortCode" : "SUSPSDS", + "level" : "O", + "rank" : 10100, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "detention", "yoi", "scotland" ] + }, { + "wordGroup" : [ "suspended", "detention", "scotland" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label" : "Judge reserves breach proceedings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1100, + "duration" : null, + "wordGroup" : [ "Breach" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "31e2a7a7-03fc-472b-97ad-67d5aae41a70", + "label" : "Custody reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label" : "The reasons for this", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ad4f684d-0a83-4ee1-b04f-7864487eb41c", + "label" : "Appropriate Scottish Court", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5cf339ba-1dd4-4476-99a5-281c833dd134", + "label" : "Locality in Scotland", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d483e89c-4919-4248-a046-372a6a4532a6", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1134", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType" : "optional" + } ] + }, { + "id" : "a78b50cc-0777-403d-8e51-5458e1ee3513", + "label" : "Suspended sentence order Northern Ireland - detention in a young offender institution", + "shortCode" : "SUSPSDNI", + "level" : "O", + "rank" : 10200, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "detention", "yoi", "ireland" ] + }, { + "wordGroup" : [ "suspended", "detention", "ireland" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "95b20a96-8863-46e4-8779-b870ab74a385", + "label" : "Custodial Period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : 1 + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 200, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label" : "Judge reserves breach proceedings", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1000, + "duration" : null, + "wordGroup" : [ "Breach" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "31e2a7a7-03fc-472b-97ad-67d5aae41a70", + "label" : "Custody reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXL", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label" : "The reasons for this", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "FIXLM", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", + "label" : "Petty Sessions District", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d483e89c-4919-4248-a046-372a6a4532a6", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1134", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ { + "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType" : "optional" + } ] + }, { + "id" : "d4490cde-3f85-4f51-9545-e2648e458a13", + "label" : "Suspended sentence of imprisonment activated unaltered", + "shortCode" : "SSI", + "level" : "O", + "rank" : 10300, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "imprisonment", "activate" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2395831b-5044-451f-acaf-259d00e01bea", + "label" : "Sentenced in absence", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1100, + "duration" : null, + "wordGroup" : [ "Absence" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "FH", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label" : "Name of court that imposed suspended sentence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label" : "Date suspended sentence imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "riskFactors", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label" : "Total sentence consecutive to what", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d483e89c-4919-4248-a046-372a6a4532a6", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1507", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "8847f470-7bf6-4d7f-aad3-efb31104f337", + "label" : "Suspended sentence of imprisonment activated with lesser term", + "shortCode" : "SSIV", + "level" : "O", + "rank" : 10400, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "imprisonment", "activate", "lesser" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label" : "Lesser term imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label" : "Lesser term imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label" : "Lesser term imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label" : "Lesser term imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 900, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 900, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 900, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 900, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2395831b-5044-451f-acaf-259d00e01bea", + "label" : "Sentenced in absence", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1200, + "duration" : null, + "wordGroup" : [ "Absence" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "FH", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label" : "Name of court that imposed suspended sentence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label" : "Date suspended sentence imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "riskFactors", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label" : "Total sentence consecutive to what", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d483e89c-4919-4248-a046-372a6a4532a6", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1507", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "1f9c69f6-8fb6-478e-95ba-4501974c3c00", + "label" : "Suspended sentence of detention in a young offender institution activated unaltered", + "shortCode" : "SSID", + "level" : "O", + "rank" : 10500, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "detention", "activate" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2395831b-5044-451f-acaf-259d00e01bea", + "label" : "Sentenced in absence", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1100, + "duration" : null, + "wordGroup" : [ "Absence" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "FH", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label" : "Name of court that imposed suspended sentence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label" : "Date suspended sentence imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 800, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "riskFactors", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label" : "Total sentence consecutive to what", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d483e89c-4919-4248-a046-372a6a4532a6", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1507", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "01c907a7-6035-40d0-9b90-e25799797dda", + "label" : "Suspended sentence of detention in a young offender institution activated with lesser term", + "shortCode" : "SSIVD", + "level" : "O", + "rank" : 10600, + "wordGroups" : [ { + "wordGroup" : [ "suspended", "detention", "activate", "lesser" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label" : "Original custody term", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 100, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", + "label" : "Original suspension period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 200, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label" : "Concurrent", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 300, + "duration" : null, + "wordGroup" : [ "Concurrent" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "C", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label" : "Lesser term imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label" : "Lesser term imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label" : "Lesser term imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label" : "Lesser term imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 800, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 900, + "duration" : "Years", + "wordGroup" : [ "Years" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 900, + "duration" : "Months", + "wordGroup" : [ "Months" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 900, + "duration" : "Weeks", + "wordGroup" : [ "Weeks" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", + "label" : "Total custodial period", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "INT", + "sequence" : 900, + "duration" : "Days", + "wordGroup" : [ "Days" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2395831b-5044-451f-acaf-259d00e01bea", + "label" : "Sentenced in absence", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "BOOLEAN", + "sequence" : 1200, + "duration" : null, + "wordGroup" : [ "Absence" ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "FH", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label" : "Consecutive to offence number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "INT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label" : "Where consecutive to an offence on another case - specify that case number", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : "F", + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label" : "Name of court that imposed suspended sentence", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 600, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label" : "Date suspended sentence imposed", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 700, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label" : "Prison", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 900, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "prison", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label" : "Risk or vulnerability factors", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "riskFactors", + "courtExtract" : "N", + "durationSequence" : null + }, { + "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label" : "Total sentence consecutive to what", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1000, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "d483e89c-4919-4248-a046-372a6a4532a6", + "label" : "Reason for sentence without PSR", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label" : "Probation team to be notified", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label" : "Reasons", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 1400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "F", + "cjsCode" : "1507", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c93c5a18-838a-41d3-a017-c203b37f5655", + "label" : "Adjournment reason: At request of the defence", + "shortCode" : "DEF", + "level" : "O", + "rank" : 10700, + "wordGroups" : [ { + "wordGroup" : [ "adjournment", "request", "defence" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalInformation", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Rheswm dros ohirio: Ar gais yr amddiffyniad", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "DB", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Adjournment reasons", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "4958de15-8a0a-4d2b-9f7e-56e037cf03da", + "label" : "Adjournment reason: For the trial to take place", + "shortCode" : "TRIAL", + "level" : "O", + "rank" : 10800, + "wordGroups" : [ { + "wordGroup" : [ "adjournment", "trial" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "welshLabel" : "Rheswm dros ohirio: Er mwyn cynnal y treial", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "GC", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Adjournment reasons", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", + "label" : "Adjournment reason: At request of the prosecution", + "shortCode" : "PROS", + "level" : "O", + "rank" : 10900, + "wordGroups" : [ { + "wordGroup" : [ "adjournment", "request", "prosecution" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label" : "Additional information", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : "additionalInformation", + "courtExtract" : "Y", + "durationSequence" : null + } ], + "welshLabel" : "Rheswm dros ohirio: Ar gais yr erlyniad", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "DC", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Adjournment reasons", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "c2eca548-4511-4023-bbe6-50fe0b679b4a", + "label" : "Adjournment reason: To plead guilty or not guilty to the offence(s)", + "shortCode" : "PLEA", + "level" : "O", + "rank" : 11000, + "wordGroups" : [ { + "wordGroup" : [ "adjournment", "plea" ] + } ], + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "prompts" : [ ], + "welshLabel" : "Rheswm dros ohirio: I bledio’n euog neu’n ddieuog i'r trosedd(au)", + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "adjournment" : false, + "convicted" : false, + "qualifier" : "DM", + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Adjournment reasons", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : true, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + }, { + "id" : "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "label" : "Community requirement: Curfew waived", + "shortCode" : "CURW", + "level" : "O", + "rank" : 1800, + "wordGroups" : [ { + "wordGroup" : [ "Curfew", "waived" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "040c7d54-3e56-4ed1-8004-d63ab3cd5128", + "label" : "Date excused", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "DATE", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", + "label" : "Excused time from", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 200, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "ba3cd0c4-2bd0-4b02-9636-2064e293466b", + "label" : "Excused time to", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TIME", + "sequence" : 300, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "3a71ea3c-2083-4584-8c73-e7bb0608c468", + "label" : "Excused reason", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 400, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + }, { + "id" : "e4fb2729-c6e4-4d32-b3f0-24285f625a87", + "label" : "Other curfew requirements", + "welshLabel" : null, + "resultPromptRule" : "optional", + "type" : "TXT", + "sequence" : 500, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "3105", + "adjournment" : false, + "convicted" : true, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "Community Requirement", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : true, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + },{ + "id" : "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", + "label" : "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity", + "shortCode" : "D49", + "level" : "O", + "rank" : 60000, + "wordGroups" : [ { + "wordGroup" : [ "Order", "49", "publicity" ] + } ], + "userGroups" : [ ], + "prompts" : [ { + "id" : "8b419e6d-c248-4f9e-8638-470d237022b1", + "label" : "Details of reporting restriction", + "welshLabel" : null, + "resultPromptRule" : "mandatory", + "type" : "TXT", + "sequence" : 100, + "duration" : null, + "wordGroup" : null, + "userGroups" : [ "Court Clerks", "Legal Advisers" ], + "fixedListId" : null, + "qual" : null, + "reference" : null, + "courtExtract" : "Y", + "durationSequence" : null + } ], + "isAvailableForCourtExtract" : true, + "financial" : false, + "category" : "A", + "cjsCode" : "4509", + "adjournment" : false, + "convicted" : false, + "postHearingCustodyStatus" : "A", + "resultDefinitionGroup" : "PressOn", + "terminatesOffenceProceedings" : false, + "lifeDuration" : false, + "publishedAsAPrompt" : false, + "excludedFromResults" : false, + "alwaysPublished" : false, + "urgent" : false, + "d20" : false, + "resultDefinitionRules" : [ ] + },{ + "id": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", + "version": "2021-02-25T12:42:54.190Z", + "startDate": "2021-02-26", + "label": "Account Consolidated", + "shortCode": "ACON", "level": "D", - "rank": 29200, + "rank": 8800, "wordGroups": [ { "wordGroup": [ - "STIMP" + "ACON" ] }, { "wordGroup": [ - "SSO", - "suspended", - "custodial", - "imprisonment", - "period", - "Total" + "consolidated", + "account" ] } ], "prompts": [ { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "financial": "N", - "reference": "totalCustodialPeriod", - "wordGroup": [ - "Years" - ], - "userGroups": [], - "welshDuration": "Flynedd", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", + "id": "e6861c6e-0de2-4029-ab8c-c89769daea29", + "label": "Account to be consolidated with existing accounts", + "welshLabel": "Cyfrif i’w gyfuno â chyfrifon presennol", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 200, "financial": "N", - "reference": "totalCustodialPeriod", + "reference": "accountToBeConsolidatedWithExistingAccounts", "wordGroup": [ - "Months" + "Consolidated" ], - "userGroups": [], - "welshDuration": "Mis", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "financial": "N", - "reference": "totalCustodialPeriod", - "wordGroup": [ - "Weeks" + "userGroups": [ + ], - "userGroups": [], - "welshDuration": "Wythnos", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -64823,59 +50406,22 @@ "associatedWithReferenceData": false }, { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", + "id": "d05f476d-a0b9-47c7-bf95-d9cfd591b747", + "label": "Account to be consolidated with existing account number", + "welshLabel": "Cyfrif i’w gyfuno â rhif cyfrif presennol", + "resultPromptRule": "oneOf", + "type": "TXT", "sequence": 100, - "duration": "Days", - "financial": "N", - "reference": "totalCustodialPeriod", - "wordGroup": [ - "Days" - ], - "userGroups": [], - "welshDuration": "Niwrnod", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", - "label": "Judge reserves breach proceedings", - "welshLabel": "Barnwr yn neilltuo achos torri amodau", - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1600, "financial": "N", - "reference": "judgeReservesBreachProceedings", + "reference": "accountToBeConsolidatedWithExistingAccountNumber", "wordGroup": [ - "reserved" + "Consolidated" ], - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "C", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", - "resultPromptRule": "optional", - "type": "INT", - "sequence": 500, - "duration": "Years", - "financial": "N", - "reference": "supervisionPeriod", - "wordGroup": [ - "Years" + "userGroups": [ + ], - "userGroups": [], - "welshDuration": "Flynedd", + "min": "1", + "max": "20", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -64883,83 +50429,84 @@ "associatedWithReferenceData": false }, { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", + "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label": "Additional information", + "welshLabel": "Gwybodaeth ychwanegol", "resultPromptRule": "optional", - "type": "INT", - "sequence": 500, - "duration": "Months", + "type": "TXT", + "sequence": 300, "financial": "N", - "reference": "supervisionPeriod", - "wordGroup": [ - "Months" + "reference": "additionalInformation", + "userGroups": [ + ], - "userGroups": [], - "welshDuration": "Mis", + "min": "1", + "max": "1000", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false - }, + } + ], + "welshLabel": "Cyfrif wedi’i gyfuno", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "B", + "libraCode": "ACON", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "8b1cff00-a456-40da-9ce4-f11c20959084", + "version": "2022-12-08T20:00:45.162Z", + "startDate": "2022-12-09", + "label": "Suspended sentence order - imprisonment", + "shortCode": "SUSPS", + "level": "O", + "rank": 30500, + "wordGroups": [ { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", - "resultPromptRule": "optional", - "type": "INT", - "sequence": 500, - "duration": "Weeks", - "financial": "N", - "reference": "supervisionPeriod", "wordGroup": [ - "Weeks" - ], - "userGroups": [], - "welshDuration": "Wythnos", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "SUSPS" + ] }, { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", - "resultPromptRule": "optional", - "type": "INT", - "sequence": 500, - "duration": "Days", - "financial": "N", - "reference": "supervisionPeriod", "wordGroup": [ - "Days" - ], - "userGroups": [], - "welshDuration": "Niwrnod", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, + "suspended", + "imprisonment" + ] + } + ], + "prompts": [ { - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 200, + "sequence": 100, "duration": "Years", "financial": "N", - "reference": "suspendedPeriod", + "reference": "imprisonmentPeriod", "wordGroup": [ "Years" ], "userGroups": [], - "durationSequence": 2, + "durationSequence": 1, "welshDuration": "Flynedd", "courtExtract": "Y", "jurisdiction": "B", @@ -64968,20 +50515,20 @@ "associatedWithReferenceData": false }, { - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 200, + "sequence": 100, "duration": "Months", "financial": "N", - "reference": "suspendedPeriod", + "reference": "imprisonmentPeriod", "wordGroup": [ "Months" ], "userGroups": [], - "durationSequence": 2, + "durationSequence": 1, "welshDuration": "Mis", "courtExtract": "Y", "jurisdiction": "B", @@ -64990,224 +50537,21 @@ "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedOrganisationName", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "OrganisationName", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 1", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress1", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress2", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 3", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress3", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine3", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 4", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress4", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine4", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 5", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress5", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine5", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified post code", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedPostCode", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "PostCode", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress1", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress2", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "0ccd9da5-d611-4f9e-92ff-02375be8bb11", - "label": "Total sentence consecutive to", - "welshLabel": "Y ddedfryd gyfan yn dilyn y", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", "financial": "N", - "reference": "totalSentenceConsecutiveTo", + "reference": "imprisonmentPeriod", + "wordGroup": [ + "Weeks" + ], "userGroups": [], - "min": "1", - "max": "150", + "durationSequence": 1, + "welshDuration": "Wythnos", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -65215,744 +50559,742 @@ "associatedWithReferenceData": false }, { - "id": "3e7dab34-bb9d-46df-9a45-139113ee0b09", - "label": "which was imposed by", - "welshLabel": "a orfodwyd gan", - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 400, + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", "financial": "N", - "reference": "whichWasImpBy", + "reference": "imprisonmentPeriod", + "wordGroup": [ + "Days" + ], "userGroups": [], + "durationSequence": 1, + "welshDuration": "Niwrnod", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "whichWasImpBy", "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "21549bc3-5be9-4a91-abc7-57d8ed1b1676", - "label": "Reason for sentence without PSR", - "welshLabel": "Rheswm dros ddedfryd heb PSR", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": "Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, "financial": "N", - "reference": "reasonForSentenceWithoutPSR", + "reference": "bailRemandDaysToCountTaggedDays", + "wordGroup": [ + "Tagged days" + ], "userGroups": [], - "min": "1", - "max": "1000", - "courtExtract": "Y", + "min": "0", + "max": "999", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "850439de-16ca-4282-b0f1-0ce6bf418f4e", - "label": "The custodial sentence has been suspended because", - "welshLabel": "Mae'r ddedfryd o garchar wedi'i gohirio oherwydd", + "id": "746c833a-7d33-4800-a40c-425dbacf7492", + "label": "Concurrent", + "welshLabel": "Cydamserol", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, + "type": "BOOLEAN", + "sequence": 120, "financial": "N", - "reference": "theCustodialSentenceHasBeenSuspendedBecause", + "reference": "concurrent", + "wordGroup": [ + "Concurrent" + ], "userGroups": [], - "min": "1", - "max": "500", + "qual": "C", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + },{ + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "financial": "N", + "reference": "suspendedPeriod", + "wordGroup": [ + "Years" + ], + "userGroups": [], + "durationSequence": 2, + "welshDuration": "Flynedd", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false - } - ], - "welshLabel": "Cyfanswm y cyfnod gohiriedig yn y ddalfa", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "Y", - "d20": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": true, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "resultTextTemplate": "Total custodial period {totalCustodialPeriod} suspended for {suspendedPeriod} [Total sentence consecutive to {totalSentenceConsecutiveTo}][ which was imposed by {whichWasImpBy}]. [Supervision period {supervisionPeriod}.][ The custodial sentence has been suspended because {theCustodialSentenceHasBeenSuspendedBecause}.][ Reason for sentence without PSR {reasonForSentenceWithoutPSR}.]", - "isAvailableForCourtExtract": true, - "isBooleanResult": false, - "resultDefinitionGroup": "Community Requirements" - }, - { - "id": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "version": "2022-07-07T11:34:43.558Z", - "startDate": "2022-07-08", - "label": "Community requirements", - "shortCode": "CRS", - "level": "O", - "rank": 101200, - "userGroups": [], - "welshLabel": "Gofynion cymunedol", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Community Requirements, ABC", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "ruleType": "atleastOneOf" }, { - "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "ruleType": "atleastOneOf" + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "financial": "N", + "reference": "suspendedPeriod", + "wordGroup": [ + "Months" + ], + "userGroups": [], + "durationSequence": 2, + "welshDuration": "Mis", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", - "ruleType": "atleastOneOf" + "id": "7784b81d-44d2-43c0-a903-a53b0e73683b", + "label": "Consecutive to offence", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 140, + "financial": "N", + "reference": "consecutiveToOffenceNumber", + "wordGroup": [ + "Consecutive to" + ], + "userGroups": [], + "min": "1", + "max": "99", + "qual": "F", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "ruleType": "atleastOneOf" + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": "Swyddog cyfrifol", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 340, + "financial": "N", + "reference": "responsibleOfficer", + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", - "ruleType": "atleastOneOf" + "id": "90d17fe3-8f87-43f2-bd96-a4108e4603ae", + "label": "The reasons for this", + "welshLabel": "Y rhesymau dros hyn", + "resultPromptRule": "optional", + "type": "FIXLOM", + "sequence": 300, + "financial": "N", + "reference": "theReasonsForThis", + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "M", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", - "ruleType": "atleastOneOf" + "id": "da9c91a6-7090-44f3-8644-b4b184533fc4", + "label": "which is on case number", + "welshLabel": "sydd dan y rhif achos", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 160, + "financial": "N", + "reference": "whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber", + "userGroups": [], + "min": "1", + "max": "20", + "qual": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "ruleType": "atleastOneOf" + "id": "ea957761-0813-4a92-9e7c-b536654325f0", + "label": "Imprisonment reasons", + "welshLabel": "Rhesymau dros garcharu", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "financial": "N", + "reference": "imprisonmentReasons", + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "M", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "761fa811-cf01-41b5-8630-55485205f8d9", - "ruleType": "atleastOneOf" + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "welshLabel": "Llys sy’n Goruchwylio", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 360, + "financial": "N", + "reference": "supervisingCourt", + "userGroups": [], + "min": "1", + "max": "120", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "referenceDataKey": "supervisingCourt", + "nameEmail": false, + "cacheable": 2, + "associatedWithReferenceData": true } ], - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "version": "2022-07-07T11:37:58.943Z", - "startDate": "2022-07-08", - "label": "Is electronic monitoring required", - "shortCode": "EMREQ", - "level": "O", - "rank": 32900, - "userGroups": [], + "welshLabel": "Gorchymyn dedfryd ohiriedig - carcharu", "financial": "N", "unscheduled": false, "adjournment": "N", - "category": "I", + "category": "F", "urgent": false, - "convicted": "N", + "convicted": "Y", "d20": false, - "resultDefinitionGroup": "", + "dvlaCode": "C", + "cjsCode": "1115", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, - "rollUpPrompts": false, + "rollUpPrompts": true, "publishedForNows": false, "publishedAsAPrompt": false, - "excludedFromResults": true, + "excludedFromResults": false, "alwaysPublished": false, "jurisdiction": "B", + "libraCode": "SUSPS", "resultDefinitionRules": [ { - "childResultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "859c7729-93bf-4fda-8345-3e56695dddb5", + "ruleType": "optional" } ], - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": false, - "isBooleanResult": true + "canBeSubjectOfBreach": true, + "canBeSubjectOfVariation": true, + "resultTextTemplate": "Committed to prison for {imprisonmentPeriod}[ {concurrent}][ consecutive to offence {consecutiveToOffenceNumber}][ which is on case number {whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber}] suspended. Reason: {imprisonmentReasons}.[ Reason for custody: {theReasonsForThis}.] [The defendant must comply with the requirements (shown below) within the supervision period.%CRS%] %FRHS% In the event of activation of sentence: {bailRemandDaysToCountTaggedDays} bail remand days to count. %STIMP%", + "dependantResultDefinitionGroup": "Community Requirements", + "isAvailableForCourtExtract": true, + "isBooleanResult": false }, { - "id": "859c7729-93bf-4fda-8345-3e56695dddb5", - "version": "2022-12-08T20:05:27.835Z", + "id": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "version": "2022-12-08T20:00:45.902Z", "startDate": "2022-12-09", - "label": "First Review Hearing - Suspended", - "shortCode": "FRHS", + "label": "Total suspended custodial period", + "shortCode": "STIMP", "level": "D", - "rank": 2800, + "rank": 29200, + "wordGroups": [ + { + "wordGroup": [ + "STIMP" + ] + }, + { + "wordGroup": [ + "SSO", + "suspended", + "custodial", + "imprisonment", + "period", + "Total" + ] + } + ], "prompts": [ { - "id": "34f900f3-132c-4baa-a9d3-b7fd5c7b24d0", - "label": "Judge reserves review hearing", - "welshLabel": "Barnwr yn neilltuo gwrandawiad adolygu", - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "financial": "N", + "reference": "totalCustodialPeriod", + "wordGroup": [ + "Years" + ], + "userGroups": [], + "welshDuration": "Flynedd", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", "financial": "N", - "reference": "judgeReservesReviewHearing", + "reference": "totalCustodialPeriod", "wordGroup": [ - "Review" + "Months" ], "userGroups": [], + "welshDuration": "Mis", "courtExtract": "Y", - "jurisdiction": "C", + "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse organisation name", + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 300, + "type": "INT", + "sequence": 100, + "duration": "Weeks", "financial": "N", - "reference": "hCHOUSEOrganisationName", + "reference": "totalCustodialPeriod", + "wordGroup": [ + "Weeks" + ], "userGroups": [], - "min": "", - "max": "", + "welshDuration": "Wythnos", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "OrganisationName", "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 1", + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 300, + "type": "INT", + "sequence": 100, + "duration": "Days", "financial": "N", - "reference": "hCHOUSEAddress1", + "reference": "totalCustodialPeriod", + "wordGroup": [ + "Days" + ], "userGroups": [], - "min": "", - "max": "", + "welshDuration": "Niwrnod", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine1", "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 2", + "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", + "label": "Judge reserves breach proceedings", + "welshLabel": "Barnwr yn neilltuo achos torri amodau", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, + "type": "BOOLEAN", + "sequence": 1600, "financial": "N", - "reference": "hCHOUSEAddress2", + "reference": "judgeReservesBreachProceedings", + "wordGroup": [ + "reserved" + ], "userGroups": [], - "min": "", - "max": "", "courtExtract": "Y", - "jurisdiction": "B", + "jurisdiction": "C", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine2", "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 3", + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, + "type": "INT", + "sequence": 500, + "duration": "Years", "financial": "N", - "reference": "hCHOUSEAddress3", + "reference": "supervisionPeriod", + "wordGroup": [ + "Years" + ], "userGroups": [], - "min": "", - "max": "", + "welshDuration": "Flynedd", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine3", "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 4", + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, + "type": "INT", + "sequence": 500, + "duration": "Months", "financial": "N", - "reference": "hCHOUSEAddress4", + "reference": "supervisionPeriod", + "wordGroup": [ + "Months" + ], "userGroups": [], - "min": "", - "max": "", + "welshDuration": "Mis", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine4", "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 5", + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, + "type": "INT", + "sequence": 500, + "duration": "Weeks", "financial": "N", - "reference": "hCHOUSEAddress5", + "reference": "supervisionPeriod", + "wordGroup": [ + "Weeks" + ], "userGroups": [], - "min": "", - "max": "", + "welshDuration": "Wythnos", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine5", "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse post code", + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, + "type": "INT", + "sequence": 500, + "duration": "Days", "financial": "N", - "reference": "hCHOUSEPostCode", + "reference": "supervisionPeriod", + "wordGroup": [ + "Days" + ], "userGroups": [], - "min": "", - "max": "", + "welshDuration": "Niwrnod", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "PostCode", "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse email address 1", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", "financial": "N", - "reference": "hCHOUSEEmailAddress1", + "reference": "suspendedPeriod", + "wordGroup": [ + "Years" + ], "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", + "durationSequence": 2, + "welshDuration": "Flynedd", + "courtExtract": "Y", "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "EmailAddress1", + "hidden": false, "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse email address 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 300, + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", "financial": "N", - "reference": "hCHOUSEEmailAddress2", + "reference": "suspendedPeriod", + "wordGroup": [ + "Months" + ], "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", + "durationSequence": 2, + "welshDuration": "Mis", + "courtExtract": "Y", "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "EmailAddress2", + "hidden": false, "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", - "label": "First review date", - "welshLabel": "Dyddiad yr adolygiad cyntaf", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, + "type": "NAMEADDRESS", + "sequence": 700, "financial": "N", - "reference": "firstReviewDate", + "reference": "probationteamtobenotifiedOrganisationName", "userGroups": [], - "courtExtract": "Y", + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "OrganisationName", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", - "label": "Time of hearing", - "welshLabel": "Amser y gwrandawiad", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 1", "resultPromptRule": "mandatory", - "type": "TIME", - "sequence": 200, + "type": "NAMEADDRESS", + "sequence": 700, "financial": "N", - "reference": "timeOfHearing", + "reference": "probationteamtobenotifiedAddress1", "userGroups": [], - "courtExtract": "Y", + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "welshLabel": "Ystafell Llys", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, "financial": "N", - "reference": "HCROOM", + "reference": "probationteamtobenotifiedAddress2", "userGroups": [], - "min": "1", - "max": "99", - "courtExtract": "Y", + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "HCROOM", - "nameEmail": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine2", + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "978001b1-47d5-4cda-a1b6-b6c3a2e4975d", - "label": "Review frequency", - "welshLabel": "Amlder yr adolygiadau", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 500, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 3", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, "financial": "N", - "reference": "reviewFrequency", + "reference": "probationteamtobenotifiedAddress3", "userGroups": [], - "min": "1", - "max": "50", - "courtExtract": "Y", + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine3", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "fe774a35-5353-4e4f-adef-44b7a8717dc6", - "label": "Defendant to attend review", - "welshLabel": "Diffynnydd i fynychu adolygiad", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 4", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 600, + "type": "NAMEADDRESS", + "sequence": 700, "financial": "N", - "reference": "defendantToAttendReview", + "reference": "probationteamtobenotifiedAddress4", "userGroups": [], - "courtExtract": "Y", + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - } - ], - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "First Review Hearing", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "resultTextTemplate": "This order is to be reviewed {reviewFrequency} starting on {firstReviewDate} [at {timeOfHearing}] at {HCHOUSE~Name}. [{defendantToAttendReview}.]", - "triggeredApplicationCode": "CJ03518", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "65a59f46-61ae-4dac-a040-a25fca647cb2", - "version": "2022-12-08T20:00:36.385Z", - "startDate": "2022-12-09", - "label": "Residence", - "shortCode": "RR", - "level": "O", - "rank": 31800, - "wordGroups": [ - { - "wordGroup": [ - "RR", - "residence" - ] - } - ], - "prompts": [ + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine4", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Years", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, "financial": "N", - "reference": "periodOfResidence", - "wordGroup": [ - "Years" - ], + "reference": "probationteamtobenotifiedAddress5", "userGroups": [], - "welshDuration": "Flynedd", - "courtExtract": "Y", + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine5", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Months", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, "financial": "N", - "reference": "periodOfResidence", - "wordGroup": [ - "Months" - ], + "reference": "probationteamtobenotifiedPostCode", "userGroups": [], - "welshDuration": "Mis", - "courtExtract": "Y", + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "PostCode", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", + "type": "NAMEADDRESS", + "sequence": 700, "financial": "N", - "reference": "periodOfResidence", - "wordGroup": [ - "Weeks" - ], + "reference": "probationteamtobenotifiedEmailAddress1", "userGroups": [], - "welshDuration": "Wythnos", - "courtExtract": "Y", + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Days", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, "financial": "N", - "reference": "periodOfResidence", - "wordGroup": [ - "Days" - ], + "reference": "probationteamtobenotifiedEmailAddress2", "userGroups": [], - "welshDuration": "Niwrnod", - "courtExtract": "Y", + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", - "label": "Address", - "welshLabel": "Cyfeiriad", - "resultPromptRule": "mandatory", + "id": "0ccd9da5-d611-4f9e-92ff-02375be8bb11", + "label": "Total sentence consecutive to", + "welshLabel": "Y ddedfryd gyfan yn dilyn y", + "resultPromptRule": "optional", "type": "TXT", - "sequence": 200, + "sequence": 300, "financial": "N", - "reference": "address", - "wordGroup": [ - "Address" - ], + "reference": "totalSentenceConsecutiveTo", "userGroups": [], + "min": "1", + "max": "150", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -65960,34 +51302,34 @@ "associatedWithReferenceData": false }, { - "id": "b7591fa7-9605-431f-b94e-19cd0fe3e04e", - "label": "Name of place", - "welshLabel": "Enw’r lleoliad", + "id": "3e7dab34-bb9d-46df-9a45-139113ee0b09", + "label": "which was imposed by", + "welshLabel": "a orfodwyd gan", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, + "type": "FIXL", + "sequence": 400, "financial": "N", - "reference": "nameOfPlace", + "reference": "whichWasImpBy", "userGroups": [], - "min": "1", - "max": "50", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "referenceDataKey": "whichWasImpBy", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "fd192d80-cf96-403e-9c3b-c0738d5a4a13", - "label": "Responsible officer may approve different address", + "id": "21549bc3-5be9-4a91-abc7-57d8ed1b1676", + "label": "Reason for sentence without PSR", + "welshLabel": "Rheswm dros ddedfryd heb PSR", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 400, + "type": "TXT", + "sequence": 800, "financial": "N", - "reference": "responsibleOfficeMayApproveDifferentAddress", + "reference": "reasonForSentenceWithoutPSR", "userGroups": [], "min": "1", - "max": "1", + "max": "1000", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -65995,17 +51337,17 @@ "associatedWithReferenceData": false }, { - "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", - "label": "Additional information", - "welshLabel": "Gwybodaeth ychwanegol", + "id": "850439de-16ca-4282-b0f1-0ce6bf418f4e", + "label": "The custodial sentence has been suspended because", + "welshLabel": "Mae'r ddedfryd o garchar wedi'i gohirio oherwydd", "resultPromptRule": "optional", "type": "TXT", - "sequence": 500, + "sequence": 600, "financial": "N", - "reference": "additionalInformation", + "reference": "theCustodialSentenceHasBeenSuspendedBecause", "userGroups": [], "min": "1", - "max": "250", + "max": "500", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -66013,2580 +51355,2190 @@ "associatedWithReferenceData": false } ], - "welshLabel": "Preswylio", + "welshLabel": "Cyfanswm y cyfnod gohiriedig yn y ddalfa", "financial": "N", "unscheduled": false, "adjournment": "N", "category": "A", "urgent": false, - "convicted": "N", + "convicted": "Y", "d20": false, - "resultDefinitionGroup": "Community Requirement", - "cjsCode": "3107", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, + "rollUpPrompts": true, + "publishedForNows": true, "publishedAsAPrompt": false, "excludedFromResults": false, - "alwaysPublished": true, + "alwaysPublished": false, "jurisdiction": "B", "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "resultTextTemplate": "Residence Requirement: Live at[ {nameOfPlace},] {address} for {periodOfResidence}.[ {responsibleOfficerMayApproveDifferentAddress}.] {additionalInformation}", + "resultTextTemplate": "Total custodial period {totalCustodialPeriod} suspended for {suspendedPeriod} [Total sentence consecutive to {totalSentenceConsecutiveTo}][ which was imposed by {whichWasImpBy}]. [Supervision period {supervisionPeriod}.][ The custodial sentence has been suspended because {theCustodialSentenceHasBeenSuspendedBecause}.][ Reason for sentence without PSR {reasonForSentenceWithoutPSR}.]", "isAvailableForCourtExtract": true, - "isBooleanResult": false + "isBooleanResult": false, + "resultDefinitionGroup":"Community Requirements" }, { - "id": "9bec5977-1796-4645-9b9e-687d4f23d37d", - "version": "2022-12-08T20:00:31.000Z", - "startDate": "2022-12-09", - "label": "Unpaid work", - "shortCode": "UPWR", + "id": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "version": "2022-07-07T11:34:43.558Z", + "startDate": "2022-07-08", + "label": "Community requirements", + "shortCode": "CRS", "level": "O", - "rank": 32000, - "wordGroups": [ + "rank": 101200, + "userGroups": [], + "welshLabel": "Gofynion cymunedol", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Community Requirements, ABC", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "jurisdiction": "B", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "ruleType": "atleastOneOf" + }, { - "wordGroup": [ - "UPWR" - ] + "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "ruleType": "atleastOneOf" }, { - "wordGroup": [ - "Unpaid", - "work" - ] - } - ], - "prompts": [ + "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "ruleType": "atleastOneOf" + }, { - "id": "72413aef-ecb9-4e9b-a143-31d1e9c11584", - "label": "Number of hours", - "welshLabel": "Nifer yr oriau", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Hours", - "financial": "N", - "reference": "numberOfHours", - "wordGroup": [ - "Hours" - ], - "userGroups": [], - "min": "1", - "max": "999", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", + "ruleType": "atleastOneOf" }, { - "id": "17fd32a7-344f-4a0e-a3ae-5b7868f11bcd", - "label": "Additional / concurrent to what", - "welshLabel": "Yn ogystal â / yn gydamserol â beth", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "financial": "N", - "reference": "additionalConcurrentToWhat", - "userGroups": [], - "min": "1", - "max": "200", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "ruleType": "atleastOneOf" }, { - "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", - "label": "Additional information", - "welshLabel": "Gwybodaeth ychwanegol", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "financial": "N", - "reference": "additionalInformation", - "userGroups": [], - "min": "1", - "max": "250", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "761fa811-cf01-41b5-8630-55485205f8d9", + "ruleType": "atleastOneOf" } ], - "welshLabel": "Gwaith di-dâl", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "version": "2022-07-07T11:37:58.943Z", + "startDate": "2022-07-08", + "label": "Is electronic monitoring required", + "shortCode": "EMREQ", + "level": "O", + "rank": 32900, + "userGroups": [], "financial": "N", "unscheduled": false, "adjournment": "N", - "category": "A", + "category": "I", "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "Community Requirement", - "cjsCode": "3101", + "resultDefinitionGroup": "", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, "rollUpPrompts": false, "publishedForNows": false, "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, + "excludedFromResults": true, + "alwaysPublished": false, "jurisdiction": "B", - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "resultTextTemplate": "Unpaid Work Requirement: Carry out unpaid work for {numberOfHours}[ Additional / concurrent to {additionalConcurrentToWhat}] within the next twelve months. This work will be supervised by the responsible officer. {additionalInformation}", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "dada120c-160a-49a9-b040-e8b6b7128d67", - "version": "2022-12-08T20:04:19.900Z", - "startDate": "2022-12-09", - "label": "Notification of electronic monitoring order (requirement)", - "shortCode": "NORDRC", - "level": "O", - "rank": 5900, - "wordGroups": [ + "resultDefinitionRules": [ { - "wordGroup": [ - "NORDRC" - ] + "childResultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "ruleType": "mandatory" } ], - "prompts": [ - { - "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", - "label": "Continuation of electronic monitoring", - "welshLabel": "Parhau gyda monitro electronig", - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 500, - "financial": "N", - "reference": "continuationOfElectronicMonitoring", - "wordGroup": [ - "continuation" - ], - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor organisation name", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorOrganisationName", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "OrganisationName", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 1", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress1", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress2", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 3", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress3", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine3", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 4", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress4", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine4", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": false, + "isBooleanResult": true + }, + { + "id": "859c7729-93bf-4fda-8345-3e56695dddb5", + "version": "2022-12-08T20:05:27.835Z", + "startDate": "2022-12-09", + "label": "First Review Hearing - Suspended", + "shortCode": "FRHS", + "level": "D", + "rank": 2800, + "prompts": [ { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 5", + "id": "34f900f3-132c-4baa-a9d3-b7fd5c7b24d0", + "label": "Judge reserves review hearing", + "welshLabel": "Barnwr yn neilltuo gwrandawiad adolygu", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, + "type": "BOOLEAN", + "sequence": 700, "financial": "N", - "reference": "electronicmonitoringcontractorAddress5", + "reference": "judgeReservesReviewHearing", + "wordGroup": [ + "Review" + ], "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", + "courtExtract": "Y", + "jurisdiction": "C", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine5", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor post code", - "resultPromptRule": "optional", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "resultPromptRule": "mandatory", "type": "NAMEADDRESS", - "sequence": 100, + "sequence": 300, "financial": "N", - "reference": "electronicmonitoringcontractorPostCode", + "reference": "hCHOUSEOrganisationName", "userGroups": [], - "courtExtract": "N", + "min": "", + "max": "", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "PostCode", - "nameEmail": true, - "cacheable": 2, + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "OrganisationName", + "nameEmail": false, "associatedWithReferenceData": true }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor email address 1", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", "resultPromptRule": "mandatory", "type": "NAMEADDRESS", - "sequence": 100, + "sequence": 300, "financial": "N", - "reference": "electronicmonitoringcontractorEmailAddress1", + "reference": "hCHOUSEAddress1", "userGroups": [], - "courtExtract": "N", + "min": "", + "max": "", + "courtExtract": "Y", "jurisdiction": "B", - "hidden": true, + "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "EmailAddress1", - "nameEmail": true, - "cacheable": 2, + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine1", + "nameEmail": false, "associatedWithReferenceData": true }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor email address 2", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 100, + "sequence": 300, "financial": "N", - "reference": "electronicmonitoringcontractorEmailAddress2", + "reference": "hCHOUSEAddress2", "userGroups": [], - "courtExtract": "N", + "min": "", + "max": "", + "courtExtract": "Y", "jurisdiction": "B", - "hidden": true, + "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "EmailAddress2", - "nameEmail": true, - "cacheable": 2, + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine2", + "nameEmail": false, "associatedWithReferenceData": true }, { - "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label": "Special needs", - "welshLabel": "Anghenion arbennig", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 3", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1100, - "financial": "N", - "reference": "specialNeeds", - "userGroups": [], - "min": "1", - "max": "120", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "f6ca6307-bdab-42d3-968b-44485824b535", - "label": "Are there any additional requirements as well?", - "welshLabel": "A oes unrhyw ofynion ychwanegol hefyd?", - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 600, - "financial": "N", - "reference": "areThereAnyAdditionalRequirementsAsWell", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", - "label": "Does the offender have any special needs?", - "welshLabel": "A oes gan y troseddwr unrhyw anghenion arbennig?", - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 1000, - "financial": "N", - "reference": "doesTheOffenderHaveAnySpecialNeeds", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "5ce30920-b300-471c-8fd7-67f3a193476a", - "label": "First notification of electronic monitoring", - "welshLabel": "Hysbysiad cyntaf o fonitro electronig", - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 200, + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "firstNotificationOfElectronicMonitoring", + "reference": "hCHOUSEAddress3", "userGroups": [], - "courtExtract": "N", + "min": "", + "max": "", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine3", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "c7d508e9-1ea0-4a41-9961-703a5d164b6f", - "label": "Language", - "welshLabel": "Iaith", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 4", "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 900, + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "language", + "reference": "hCHOUSEAddress4", "userGroups": [], - "min": "1", - "max": "60", - "courtExtract": "N", + "min": "", + "max": "", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "language", + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine4", "nameEmail": false, "associatedWithReferenceData": true }, { - "id": "9cae4974-5cf4-4701-ae3a-74f8d586b16d", - "label": "Additional notification of electronic monitoring. Date and case reference of original order", - "welshLabel": "Hysbysiad ychwanegol o fonitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 400, + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "additionalNotificationOfElectronicMonitoringDateOfOriginalOrder", + "reference": "hCHOUSEAddress5", "userGroups": [], - "courtExtract": "N", + "min": "", + "max": "", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine5", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "efffc361-7cca-40a5-a436-a1fdb590e8be", - "label": "Variation of electronic monitoring. Date and case reference of original order", - "welshLabel": "Amrywio monitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", - "resultPromptRule": "oneOf", - "type": "TXT", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", "sequence": 300, "financial": "N", - "reference": "variationOfElectronicMonitoringDateOfOriginalOrder", + "reference": "hCHOUSEPostCode", "userGroups": [], - "courtExtract": "N", + "min": "", + "max": "", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "PostCode", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", - "label": "Was an interpreter used?", - "welshLabel": "A oedd cyfieithydd yn bresennol?", - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 800, + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse email address 1", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "wasAnInterpreterUsed", + "reference": "hCHOUSEEmailAddress1", "userGroups": [], + "min": "", + "max": "", "courtExtract": "N", "jurisdiction": "B", - "hidden": false, + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "EmailAddress1", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label": "Defendant's mobile number", - "welshLabel": "Rhif ffôn symudol y diffynnydd", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse email address 2", "resultPromptRule": "optional", - "type": "INT", - "sequence": 700, + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "defendantsMobileNumber", + "reference": "hCHOUSEEmailAddress2", "userGroups": [], - "min": "1", - "max": "20", + "min": "", + "max": "", "courtExtract": "N", "jurisdiction": "B", - "hidden": false, + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "EmailAddress2", "nameEmail": false, - "cacheable": 2, - "cacheDataPath": "personDefendant.personDetails.contact.mobile", - "associatedWithReferenceData": false - } - ], - "welshLabel": "Hysbysiad o orchymyn monitro electronig (gofyniad)", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Community requirements,ELMON", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": true, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": false, - "isBooleanResult": false - }, - { - "id": "b2d06bbc-e90e-4df8-8851-6e4a70894828", - "label": "Obligatory disqualification", - "shortCode": "DDO", - "level": "O", - "rank": 67200, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, - "financial": "N", - "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": true, - "publishedForNows": false, - "lifeDuration": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "429fb553-4fb3-45eb-a700-7e5e69d1ca29", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "ea1ee5a4-be13-48dc-8411-78f22e01c236", - "ruleType": "optional" - } - ], - "wordGroups": [ - { - "wordGroup": [ - "DDO", - "obligatory", - "disqualification" - ] + "associatedWithReferenceData": true }, { - "wordGroup": [ - "DDO" - ] - } - ], - "adjournment": "N", - "category": "A", - "urgent": true, - "convicted": "Y", - "d20": true, - "cjsCode": "3070", - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "libraCode": "DDO", - "lCode": "DDO", - "resultTextTemplate": "Disqualified for holding or obtaining a driving licence for {disqualificationPeriod}.[ %DOID%.] Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988.[ This includes an extension period of {extensionPeriodSection35AImmediateCustodialSentence} in accordance with section 35A (immediate custodial sentence).][ This includes an extension period of {extensionPeriodSection35BEffectOfCustodialSentenceNoted} in accordance with section 35B (effect of custodial sentence noted).]", - "resultWording": "Disqualified for holding or obtaining a driving licence. Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988", - "welshResultWording": "Gwahardd rhag dal neu gael trwydded yrru. Gwaharddiad yn orfodol ar gyfer y trosedd. Cofnod gyrru wedi’i ardystio. Adran 34(1) Deddf Troseddwyr Traffig Ffyrdd 1988", - "terminatesOffenceProceedings": false, - "prompts": [ - { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", + "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", + "label": "First review date", + "welshLabel": "Dyddiad yr adolygiad cyntaf", "resultPromptRule": "mandatory", - "type": "INT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, + "type": "DATE", "sequence": 100, - "duration": "Years", - "welshDuration": "Flynedd", + "financial": "N", + "reference": "firstReviewDate", "userGroups": [], - "wordGroup": [ - "Years" - ], "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "reference": "disqualificationPeriod", - "welshLabel": "Cyfnod gwahardd", - "durationSequence": 1 + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "welshLabel": "Amser y gwrandawiad", "resultPromptRule": "mandatory", - "type": "INT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "duration": "Months", - "welshDuration": "Mis", + "type": "TIME", + "sequence": 200, + "financial": "N", + "reference": "timeOfHearing", "userGroups": [], - "wordGroup": [ - "months" - ], "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "reference": "disqualificationPeriod", - "welshLabel": "Cyfnod gwahardd", - "durationSequence": 1 + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "welshLabel": "Ystafell Llys", "resultPromptRule": "mandatory", "type": "INT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "duration": "Days", - "welshDuration": "Niwrnod", - "userGroups": [], - "wordGroup": [ - "Days" - ], - "courtExtract": "Y", - "financial": "N", - "jurisdiction": "B", - "reference": "disqualificationPeriod", - "welshLabel": "Cyfnod gwahardd", - "durationSequence": 1 - }, - { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", - "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, "sequence": 400, + "financial": "N", + "reference": "HCROOM", "userGroups": [], + "min": "1", + "max": "99", "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "min": "1", - "max": "50", - "reference": "extensionPeriodSection35BEffectOfCustodialSentenceNoted", - "welshLabel": "Cyfnod estyniad adran 35B (effaith dedfryd o garchar wedi’i nodi)" + "hidden": false, + "referenceDataKey": "HCROOM", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", - "resultPromptRule": "optional", + "id": "978001b1-47d5-4cda-a1b6-b6c3a2e4975d", + "label": "Review frequency", + "welshLabel": "Amlder yr adolygiadau", + "resultPromptRule": "mandatory", "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, "sequence": 500, - "userGroups": [ - "CPS", - "Defence", - "NCES", - "Probation", - "Judiciary", - "Prosecuting Authorities", - "YOTs" - ], - "courtExtract": "N", "financial": "N", - "cacheable": 2, - "cacheDataPath": "personDefendant.driverNumber", - "jurisdiction": "B", - "min": "0", - "max": "16", - "reference": "defendantDrivingLicenceNumber", - "welshLabel": "Rhif trwydded yrru'r Diffynnydd" + "reference": "reviewFrequency", + "userGroups": [], + "min": "1", + "max": "50", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", + "id": "fe774a35-5353-4e4f-adef-44b7a8717dc6", + "label": "Defendant to attend review", + "welshLabel": "Diffynnydd i fynychu adolygiad", "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 300, + "type": "BOOLEAN", + "sequence": 600, + "financial": "N", + "reference": "defendantToAttendReview", "userGroups": [], "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "min": "1", - "max": "50", - "reference": "extensionPeriodSection35AImmediateCustodialSentence", - "welshLabel": "Cyfnod estyniad adran 35A (dedfryd o garchar ar unwaith)" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false } - ] - }, - { - "id": "f666fd58-36c5-493f-aa11-89714faee6e6", - "label": "Remand in care of Local Authority with bail direction", - "shortCode": "RILAB", - "level": "O", - "rank": 116200, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, + ], "financial": "N", "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "First Review Hearing", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": false, "publishedAsAPrompt": false, "excludedFromResults": false, "alwaysPublished": false, - "rollUpPrompts": true, - "publishedForNows": true, - "lifeDuration": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "5dc70e17-6095-4bd8-8597-36186e7eaba1", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "874911d0-acf2-4b6f-bcca-cacbb6bb2862", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", - "ruleType": "optional" - } - ], + "jurisdiction": "B", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "This order is to be reviewed {reviewFrequency} starting on {firstReviewDate} [at {timeOfHearing}] at {HCHOUSE~Name}. [{defendantToAttendReview}.]", + "triggeredApplicationCode": "CJ03518", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "65a59f46-61ae-4dac-a040-a25fca647cb2", + "version": "2022-12-08T20:00:36.385Z", + "startDate": "2022-12-09", + "label": "Residence", + "shortCode": "RR", + "level": "O", + "rank": 31800, "wordGroups": [ { "wordGroup": [ - "RILAB" - ] - }, - { - "wordGroup": [ - "authority", - "bail", - "care", - "direction", - "LA", - "local", - "remand" + "RR", + "residence" ] } ], - "adjournment": "Y", - "category": "I", - "urgent": true, - "convicted": "N", - "d20": false, - "cjsCode": "4029", - "postHearingCustodyStatus": "L", - "jurisdiction": "B", - "libraCode": "RILAB", - "resultTextTemplate": "Remanded until %NEXH% in accommodation provided by the local authority for {nameOfLocalAuthority}[ subject to the following requirements: {requirementsImposedOnLocalAuthority}].[ Further requirements: {furtherReq}.] Basis: {remandBasis}.[ Adjournment reason: %ADJR%.] Directed to be bailed to {bailDate} at {bailTime} upon satisfying the following conditions: %PREBC%[ and subject to the following conditions: %BAIC%].[ Conditions imposed on the defendant: %LACOND%]", - "terminatesOffenceProceedings": false, "prompts": [ { - "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label": "Remand basis", + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", "resultPromptRule": "mandatory", - "type": "FIXL", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "type": "INT", + "sequence": 300, + "duration": "Years", + "financial": "N", + "reference": "periodOfResidence", + "wordGroup": [ + "Years" + ], "userGroups": [], + "welshDuration": "Flynedd", "courtExtract": "Y", - "financial": "N", - "cacheable": 1, "jurisdiction": "B", - "reference": "remandBasis", - "welshLabel": "Sail remand" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "15f8330b-9554-4ea6-b75b-7e192724ca06", - "label": "Further requirements", - "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 700, + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "financial": "N", + "reference": "periodOfResidence", + "wordGroup": [ + "Months" + ], "userGroups": [], + "welshDuration": "Mis", "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "min": "1", - "max": "1000", - "reference": "furtherReq", - "welshLabel": "Gofynion pellach" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "f63f692f-3bfc-4d0f-8e45-acd99b06431c", - "label": "Local Authority", + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", "resultPromptRule": "mandatory", - "type": "FIXL", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "financial": "N", + "reference": "periodOfResidence", + "wordGroup": [ + "Weeks" + ], + "userGroups": [], + "welshDuration": "Wythnos", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, "nameEmail": false, - "referenceDataKey": "nameOfLocalAuthority", + "associatedWithReferenceData": false + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "financial": "N", + "reference": "periodOfResidence", + "wordGroup": [ + "Days" + ], + "userGroups": [], + "welshDuration": "Niwrnod", + "courtExtract": "Y", + "jurisdiction": "B", "hidden": false, - "associateToReferenceData": true, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", + "label": "Address", + "welshLabel": "Cyfeiriad", + "resultPromptRule": "mandatory", + "type": "TXT", "sequence": 200, + "financial": "N", + "reference": "address", + "wordGroup": [ + "Address" + ], "userGroups": [], "courtExtract": "Y", - "financial": "N", - "cacheable": 2, "jurisdiction": "B", - "min": "", - "max": "", - "reference": "nameOfLocalAuthority", - "welshLabel": "Awdurdod Lleol" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "b275cca5-58a6-415c-9b67-b4277c7f7e6e", - "label": "Requirements imposed on Local Authority", + "id": "b7591fa7-9605-431f-b94e-19cd0fe3e04e", + "label": "Name of place", + "welshLabel": "Enw’r lleoliad", "resultPromptRule": "optional", "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 600, + "sequence": 100, + "financial": "N", + "reference": "nameOfPlace", "userGroups": [], + "min": "1", + "max": "50", "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "min": "1", - "max": "1000", - "reference": "requirementsImposedOnLocalAuthority", - "welshLabel": "Gofynion a osodir ar Awdurdod Lleol" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "9ecac6aa-a205-481f-b67d-e2425ad074cf", - "label": "Bail date", - "resultPromptRule": "mandatory", - "type": "DATE", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, + "id": "fd192d80-cf96-403e-9c3b-c0738d5a4a13", + "label": "Responsible officer may approve different address", + "resultPromptRule": "optional", + "type": "BOOLEAN", "sequence": 400, + "financial": "N", + "reference": "responsibleOfficeMayApproveDifferentAddress", "userGroups": [], + "min": "1", + "max": "1", "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "reference": "bailDate" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "e200e964-628a-4284-bd4e-fab9c819f7f1", - "label": "Bail time", - "resultPromptRule": "mandatory", - "type": "TIME", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, + "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", + "label": "Additional information", + "welshLabel": "Gwybodaeth ychwanegol", + "resultPromptRule": "optional", + "type": "TXT", "sequence": 500, + "financial": "N", + "reference": "additionalInformation", "userGroups": [], + "min": "1", + "max": "250", "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "reference": "bailTime" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false } - ] - }, - { - "id": "5dc70e17-6095-4bd8-8597-36186e7eaba1", - "label": "Remand to care conditions imposed on the defendant", - "shortCode": "LACOND", - "level": "O", - "rank": 700, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, + ], + "welshLabel": "Preswylio", "financial": "N", "unscheduled": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Community Requirement", + "cjsCode": "3107", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "B", "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "671c65dc-8406-4923-bff2-e193a7fbd489", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7c54ceff-9b16-448e-995a-053c6d47854c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6f2e2861-0ad4-4721-b0d2-65b1d5f16895", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "3b06d7a2-03e7-460d-8ce9-c8a48bc96040", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d4bc7ce5-ad94-43dc-a3d6-558049380a6c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "e101f583-9ead-4c87-a1a4-d631d43517d3", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c34f6cd8-60b2-4ca8-a150-c1aa88fb0bfa", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "db5e2bc8-13b4-4dd2-b1a0-aa130e62b4f0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6a84ebbd-d1e9-43cc-a3c3-a3b459d8cb5a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "8bc69b99-359e-48a2-a353-66fe009b5507", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "bd77f0bc-11a5-4e08-abe5-697e27c9201e", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "4dcb9901-6539-4a4f-b894-f62b3ff51862", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f68c277a-4f7d-4da5-bd8a-396e6671e05c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "dffdac97-7b67-4ca7-b72b-7ea417e931c8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a65e4db1-e02a-489f-9f4e-2e38f77807c6", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "eb0260f2-c923-48c9-91e9-f4c97c9d37fe", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "5c7db83b-bfb4-4d0d-8c63-aa2513e756bb", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "30ff00bf-583d-48e4-ab13-34e4445443fb", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "35f46562-ebb6-423a-99e2-1dd65c2e5f97", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f2cab905-935b-49e5-9f82-badcfb6c6c60", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b1c731d5-a54c-4b9a-9c76-ad3dec4240ac", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "e363cb46-0e5c-479a-956f-c29acbb5b6ca", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "66017606-d552-4e06-a835-c0a1af03467a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6f8051e0-02fd-4c12-a229-a74e8a15076c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "2751bd8f-897a-4aa0-b26d-b7bf7b18acff", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "241746c2-1565-4de9-9915-bd65deda1453", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6656b25a-de49-4722-b21f-acebe07d4d1c", - "ruleType": "atleastOneOf" - }, + "resultTextTemplate": "Residence Requirement: Live at[ {nameOfPlace},] {address} for {periodOfResidence}.[ {responsibleOfficerMayApproveDifferentAddress}.] {additionalInformation}", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "version": "2022-12-08T20:00:31.000Z", + "startDate": "2022-12-09", + "label": "Unpaid work", + "shortCode": "UPWR", + "level": "O", + "rank": 32000, + "wordGroups": [ { - "childResultDefinitionId": "b258561d-ec34-42a6-9c8d-93ab64b59589", - "ruleType": "atleastOneOf" + "wordGroup": [ + "UPWR" + ] }, { - "childResultDefinitionId": "47fe1304-9772-43c2-bc3c-90a73b55a2d0", - "ruleType": "atleastOneOf" + "wordGroup": [ + "Unpaid", + "work" + ] } ], - "wordGroups": [ + "prompts": [ { + "id": "72413aef-ecb9-4e9b-a143-31d1e9c11584", + "label": "Number of hours", + "welshLabel": "Nifer yr oriau", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Hours", + "financial": "N", + "reference": "numberOfHours", "wordGroup": [ - "LACOND" - ] + "Hours" + ], + "userGroups": [], + "min": "1", + "max": "999", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "17fd32a7-344f-4a0e-a3ae-5b7868f11bcd", + "label": "Additional / concurrent to what", + "welshLabel": "Yn ogystal â / yn gydamserol â beth", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "financial": "N", + "reference": "additionalConcurrentToWhat", + "userGroups": [], + "min": "1", + "max": "200", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "wordGroup": [ - "conditions", - "imposed" - ] + "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", + "label": "Additional information", + "welshLabel": "Gwybodaeth ychwanegol", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "financial": "N", + "reference": "additionalInformation", + "userGroups": [], + "min": "1", + "max": "250", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false } ], + "welshLabel": "Gwaith di-dâl", + "financial": "N", + "unscheduled": false, "adjournment": "N", "category": "A", "urgent": false, "convicted": "N", "d20": false, + "resultDefinitionGroup": "Community Requirement", + "cjsCode": "3101", "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "resultTextTemplate": "%AllChildText%.[ Reasons for Conditions: {reasonsForTheConditionsImposedOnTheDefendant}.]", - "welshLabel": "Remand i amodau gofal a osodir ar y diffynnydd", "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "B", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "Unpaid Work Requirement: Carry out unpaid work for {numberOfHours}[ Additional / concurrent to {additionalConcurrentToWhat}] within the next twelve months. This work will be supervised by the responsible officer. {additionalInformation}", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "dada120c-160a-49a9-b040-e8b6b7128d67", + "version": "2022-12-08T20:04:19.900Z", + "startDate": "2022-12-09", + "label": "Notification of electronic monitoring order (requirement)", + "shortCode": "NORDRC", + "level": "O", + "rank": 5900, + "wordGroups": [ + { + "wordGroup": [ + "NORDRC" + ] + } + ], "prompts": [ { - "id": "46026657-e495-4b4c-a47e-466fe49dfe2e", - "label": "Reasons for the conditions imposed on the defendant", - "resultPromptRule": "mandatory", - "type": "FIXLM", + "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", + "label": "Continuation of electronic monitoring", + "welshLabel": "Parhau gyda monitro electronig", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 500, + "financial": "N", + "reference": "continuationOfElectronicMonitoring", + "wordGroup": [ + "continuation" + ], + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor organisation name", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 100, + "financial": "N", + "reference": "electronicmonitoringcontractorOrganisationName", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", "hidden": false, - "associateToReferenceData": false, + "nameAddressType": "Organisation", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", + "partName": "OrganisationName", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", "sequence": 100, - "fixedListId": "8faf795a-5f70-418f-8104-f62e7b7f8e52", + "financial": "N", + "reference": "electronicmonitoringcontractorAddress1", "userGroups": [], - "courtExtract": "Y", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", + "partName": "AddressLine1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 100, "financial": "N", + "reference": "electronicmonitoringcontractorAddress2", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "reference": "reasonsForTheConditionsImposedOnTheDefendant", - "welshLabel": "Rhesymau dros yr amodau a osodwyd ar y diffynnydd" - } - ] - }, - { - "id": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", - "label": "Electronic monitoring details", - "shortCode": "ELMONDET", - "level": "O", - "rank": 48800, - "isAvailableForCourtExtract": false, - "financial": "N", - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "lifeDuration": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "terminatesOffenceProceedings": false, - "prompts": [ + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", + "partName": "AddressLine2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, { - "id": "2d56a2cf-6159-40e6-b6c2-13b8192bcf62", - "label": "Defendant's mobile number", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 3", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], + "type": "NAMEADDRESS", + "sequence": 100, + "financial": "N", + "reference": "electronicmonitoringcontractorAddress3", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", + "partName": "AddressLine3", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 4", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 100, + "financial": "N", + "reference": "electronicmonitoringcontractorAddress4", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", + "partName": "AddressLine4", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 100, + "financial": "N", + "reference": "electronicmonitoringcontractorAddress5", + "userGroups": [], "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", + "partName": "AddressLine5", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 100, "financial": "N", + "reference": "electronicmonitoringcontractorPostCode", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "min": "6", - "max": "15" + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", + "partName": "PostCode", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Electronic Monitoring Contractor responsible officer", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 1", "resultPromptRule": "mandatory", - "type": "FIXL", + "type": "NAMEADDRESS", "sequence": 100, - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], + "financial": "N", + "reference": "electronicmonitoringcontractorEmailAddress1", + "userGroups": [], "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", + "partName": "EmailAddress1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 100, "financial": "N", - "jurisdiction": "B" + "reference": "electronicmonitoringcontractorEmailAddress2", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", + "partName": "EmailAddress2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "52056247-a158-4b8b-b2d7-0f92bab219e0", - "label": "Interpreter used - language", - "resultPromptRule": "oneOf", + "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label": "Special needs", + "welshLabel": "Anghenion arbennig", + "resultPromptRule": "optional", "type": "TXT", - "sequence": 300, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "sequence": 1100, "financial": "N", - "jurisdiction": "B", + "reference": "specialNeeds", + "userGroups": [], "min": "1", - "max": "60" + "max": "120", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "6bc228a4-7e28-4b93-a1e9-96432137c696", - "label": "Interpreter not used", - "resultPromptRule": "oneOf", + "id": "f6ca6307-bdab-42d3-968b-44485824b535", + "label": "Are there any additional requirements as well?", + "welshLabel": "A oes unrhyw ofynion ychwanegol hefyd?", + "resultPromptRule": "mandatory", "type": "BOOLEAN", - "sequence": 400, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "sequence": 600, "financial": "N", - "jurisdiction": "B" + "reference": "areThereAnyAdditionalRequirementsAsWell", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "4415f5e3-35bc-49ee-8ce4-acb36b91667c", + "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", "label": "Does the offender have any special needs?", + "welshLabel": "A oes gan y troseddwr unrhyw anghenion arbennig?", "resultPromptRule": "mandatory", "type": "BOOLEAN", - "sequence": 500, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "sequence": 1000, "financial": "N", - "jurisdiction": "B" - }, - { - "id": "8e29f329-28d3-442c-8470-2a215521b60a", - "label": "Description of special needs", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 600, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], + "reference": "doesTheOffenderHaveAnySpecialNeeds", + "userGroups": [], "courtExtract": "N", - "financial": "N", "jurisdiction": "B", - "min": "1", - "max": "1000" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "13058f22-0324-415a-8cdf-f11b64488167", - "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are addtional requirements as well", - "resultPromptRule": "optional", + "id": "5ce30920-b300-471c-8fd7-67f3a193476a", + "label": "First notification of electronic monitoring", + "welshLabel": "Hysbysiad cyntaf o fonitro electronig", + "resultPromptRule": "oneOf", "type": "BOOLEAN", - "sequence": 700, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "sequence": 200, "financial": "N", - "jurisdiction": "B" + "reference": "firstNotificationOfElectronicMonitoring", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "c024016d-b79e-4bbe-8c15-b7a2acadca9e", - "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are NO addtional requirements", + "id": "c7d508e9-1ea0-4a41-9961-703a5d164b6f", + "label": "Language", + "welshLabel": "Iaith", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "type": "FIXL", + "sequence": 900, "financial": "N", - "jurisdiction": "B" - } - ] - }, - { - "id": "7c54ceff-9b16-448e-995a-053c6d47854c", - "label": "Must stay indoors at home address (or at any other address allowed by the court) between the times specified and present him/herself to a police officer between these times", - "shortCode": "STAYDS", - "level": "O", - "rank": 118200, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, - "financial": "N", - "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, - "wordGroups": [ - { - "wordGroup": [ - "STAYDS" - ] + "reference": "language", + "userGroups": [], + "min": "1", + "max": "60", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "referenceDataKey": "language", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "wordGroup": [ - "address", - "home", - "indoors", - "police", - "present", - "stay" - ] - } - ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "ConditionsImposedOnDefendant", - "qualifier": "JE", - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "resultTextTemplate": "Must stay indoors at home address (or at any other address allowed by the court) between {excusedTimeFrom} and {and} {frequencyOfCurfew}[. Additional Information: {additionalInformation}]", - "welshLabel": "Rhaid aros y tu fewn yn y cyfeiriad cartref (neu mewn unrhyw gyfeiriad arall a ganiateir gan y llys) rhwng yr amseroedd a nodwyd a'i gyflwyno ei hun i swyddog heddlu rhwng yr amseroedd hyn", - "terminatesOffenceProceedings": false, - "prompts": [ - { - "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label": "And", - "resultPromptRule": "mandatory", - "type": "TIME", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 200, - "userGroups": [], - "courtExtract": "Y", + "id": "9cae4974-5cf4-4701-ae3a-74f8d586b16d", + "label": "Additional notification of electronic monitoring. Date and case reference of original order", + "welshLabel": "Hysbysiad ychwanegol o fonitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 400, "financial": "N", + "reference": "additionalNotificationOfElectronicMonitoringDateOfOriginalOrder", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "reference": "and", - "welshLabel": "Ac" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "6e27fcf9-1bf0-4e27-9ed5-6cdd1bf1ca68", - "label": "Frequency of curfew", - "resultPromptRule": "mandatory", + "id": "efffc361-7cca-40a5-a436-a1fdb590e8be", + "label": "Variation of electronic monitoring. Date and case reference of original order", + "welshLabel": "Amrywio monitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", + "resultPromptRule": "oneOf", "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, "sequence": 300, - "userGroups": [], - "courtExtract": "Y", "financial": "N", + "reference": "variationOfElectronicMonitoringDateOfOriginalOrder", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "min": "1", - "max": "30", - "reference": "frequencyOfCurfew", - "welshLabel": "Amledd cyrffyw" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", - "label": "Between", + "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", + "label": "Was an interpreter used?", + "welshLabel": "A oedd cyfieithydd yn bresennol?", "resultPromptRule": "mandatory", - "type": "TIME", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "userGroups": [], - "courtExtract": "Y", + "type": "BOOLEAN", + "sequence": 800, "financial": "N", + "reference": "wasAnInterpreterUsed", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "reference": "excusedTimeFrom", - "welshLabel": "Rhwng" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label": "Additional information", + "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label": "Defendant's mobile number", + "welshLabel": "Rhif ffôn symudol y diffynnydd", "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 400, - "userGroups": [], - "courtExtract": "Y", + "type": "INT", + "sequence": 700, "financial": "N", - "jurisdiction": "B", + "reference": "defendantsMobileNumber", + "userGroups": [], "min": "1", - "max": "1000", - "reference": "additionalInformation", - "welshLabel": "Gwybodaeth ychwanegol" + "max": "20", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "cacheable": 2, + "cacheDataPath": "personDefendant.personDetails.contact.mobile", + "associatedWithReferenceData": false } - ] - }, - { - "id": "69ff04d5-84e8-4a61-8478-82c2999c1969", - "label": "To attend or a warrant to issue", - "shortCode": "AWI", - "level": "O", - "rank": 22600, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, + ], + "welshLabel": "Hysbysiad o orchymyn monitro electronig (gofyniad)", "financial": "N", "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, - "wordGroups": [ - { - "wordGroup": [ - "AWI" - ] - }, - { - "wordGroup": [ - "warrant", - "attend" - ] - } - ], "adjournment": "N", "category": "A", "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "Adjournment reasons", - "qualifier": "GE", + "resultDefinitionGroup": "Community requirements,ELMON", "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": true, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, "jurisdiction": "B", - "userGroups": [], - "resultTextTemplate": "%ResultLabel%", - "resultWording": "", - "welshLabel": "Codi neu gyhoeddi gwarant", - "terminatesOffenceProceedings": false + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": false, + "isBooleanResult": false }, { - "id": "3c98b287-fd01-471a-ac34-e0a56d9e95c2", - "label": "Exclusion - not to sit in the front seat of any motor vehicle", - "shortCode": "PORE10", + "id": "b2d06bbc-e90e-4df8-8851-6e4a70894828", + "label": "Obligatory disqualification", + "shortCode": "DDO", "level": "O", - "rank": 88300, + "rank": 67200, "isBooleanResult": false, "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "publishedAsAPrompt": true, + "publishedAsAPrompt": false, "excludedFromResults": false, "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, + "rollUpPrompts": true, + "publishedForNows": false, "lifeDuration": false, - "wordGroups": [ + "resultDefinitionRules": [ { - "wordGroup": [ - "PORE10" - ] + "childResultDefinitionId": "429fb553-4fb3-45eb-a700-7e5e69d1ca29", + "ruleType": "mandatory" }, { - "wordGroup": [ - "front", - "seat", - "Exclusion" - ] + "childResultDefinitionId": "ea1ee5a4-be13-48dc-8411-78f22e01c236", + "ruleType": "optional" } ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Bail conditions", - "qualifier": "RD", - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "userGroups": [], - "resultTextTemplate": "%ResultLabel%", - "welshLabel": "Gwahardd - i beidio ag eistedd yn sedd flaen unrhyw gerbyd modur", - "terminatesOffenceProceedings": false - }, - { - "id": "3c03001c-56b3-4c64-bc0f-a3c57c3f424f", - "version": "2023-04-15T22:07:30.368Z", - "startDate": "2023-04-16", - "label": "Committed to Crown Court for sentence on unconditional bail", - "shortCode": "CCSU", - "level": "O", - "rank": 104500, "wordGroups": [ { "wordGroup": [ - "CCSU" + "DDO", + "obligatory", + "disqualification" ] }, { "wordGroup": [ - "Committed", - "sentence", - "unconditional" + "DDO" ] } ], + "adjournment": "N", + "category": "A", + "urgent": true, + "convicted": "Y", + "d20": true, + "cjsCode": "3070", + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "libraCode": "DDO", + "lCode": "DDO", + "resultTextTemplate": "Disqualified for holding or obtaining a driving licence for {disqualificationPeriod}.[ %DOID%.] Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988.[ This includes an extension period of {extensionPeriodSection35AImmediateCustodialSentence} in accordance with section 35A (immediate custodial sentence).][ This includes an extension period of {extensionPeriodSection35BEffectOfCustodialSentenceNoted} in accordance with section 35B (effect of custodial sentence noted).]", + "resultWording": "Disqualified for holding or obtaining a driving licence. Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988", + "welshResultWording": "Gwahardd rhag dal neu gael trwydded yrru. Gwaharddiad yn orfodol ar gyfer y trosedd. Cofnod gyrru wedi’i ardystio. Adran 34(1) Deddf Troseddwyr Traffig Ffyrdd 1988", + "terminatesOffenceProceedings": false, "prompts": [ { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": "Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)", + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 200, - "financial": "N", - "reference": "bailRemandDaysToCountTaggedDays", - "wordGroup": [ - "Tagged days" - ], - "userGroups": [], - "min": "0", - "max": "999", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "654fce8c-238a-468a-92db-f7509394cf08", - "label": "A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on", - "welshLabel": "Gwnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999 ar", - "resultPromptRule": "optional", - "type": "DATE", - "sequence": 400, - "financial": "N", - "reference": "aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn", + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, + "duration": "Years", + "welshDuration": "Flynedd", + "userGroups": [], "wordGroup": [ - "Reporting", - "Restriction" + "Years" ], - "userGroups": [], "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "disqualificationPeriod", + "welshLabel": "Cyfnod gwahardd", + "durationSequence": 1 }, { - "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", - "label": "Probation / YOT to be notified organisation name", + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 900, - "financial": "N", - "reference": "probationyottobenotifiedOrganisationName", + "type": "INT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, + "duration": "Months", + "welshDuration": "Mis", "userGroups": [], - "courtExtract": "N", + "wordGroup": [ + "months" + ], + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation / YOT to be notified", - "fixListLabel": "Select Probation / YOT to be notified", - "referenceDataKey": "probationyottobenotified", - "partName": "OrganisationName", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "reference": "disqualificationPeriod", + "welshLabel": "Cyfnod gwahardd", + "durationSequence": 1 }, { - "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", - "label": "Probation / YOT to be notified address line 1", + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 900, - "financial": "N", - "reference": "probationyottobenotifiedAddress1", + "type": "INT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, + "duration": "Days", + "welshDuration": "Niwrnod", "userGroups": [], - "courtExtract": "N", + "wordGroup": [ + "Days" + ], + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation / YOT to be notified", - "fixListLabel": "Select Probation / YOT to be notified", - "referenceDataKey": "probationyottobenotified", - "partName": "AddressLine1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "reference": "disqualificationPeriod", + "welshLabel": "Cyfnod gwahardd", + "durationSequence": 1 }, { - "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", - "label": "Probation / YOT to be notified address line 2", + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 900, - "financial": "N", - "reference": "probationyottobenotifiedAddress2", + "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 400, "userGroups": [], - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation / YOT to be notified", - "fixListLabel": "Select Probation / YOT to be notified", - "referenceDataKey": "probationyottobenotified", - "partName": "AddressLine2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "min": "1", + "max": "50", + "reference": "extensionPeriodSection35BEffectOfCustodialSentenceNoted", + "welshLabel": "Cyfnod estyniad adran 35B (effaith dedfryd o garchar wedi’i nodi)" }, { - "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", - "label": "Probation / YOT to be notified address line 3", + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 900, - "financial": "N", - "reference": "probationyottobenotifiedAddress3", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", + "type": "TXT", + "nameEmail": false, "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation / YOT to be notified", - "fixListLabel": "Select Probation / YOT to be notified", - "referenceDataKey": "probationyottobenotified", - "partName": "AddressLine3", - "nameEmail": true, + "associateToReferenceData": false, + "sequence": 500, + "userGroups": [ + "CPS", + "Defence", + "NCES", + "Probation", + "Judiciary", + "Prosecuting Authorities", + "YOTs" + ], + "courtExtract": "N", + "financial": "N", "cacheable": 2, - "associatedWithReferenceData": true + "cacheDataPath": "personDefendant.driverNumber", + "jurisdiction": "B", + "min": "0", + "max": "16", + "reference": "defendantDrivingLicenceNumber", + "welshLabel": "Rhif trwydded yrru'r Diffynnydd" }, { - "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", - "label": "Probation / YOT to be notified address line 4", + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 900, - "financial": "N", - "reference": "probationyottobenotifiedAddress4", + "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 300, "userGroups": [], - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation / YOT to be notified", - "fixListLabel": "Select Probation / YOT to be notified", - "referenceDataKey": "probationyottobenotified", - "partName": "AddressLine4", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "min": "1", + "max": "50", + "reference": "extensionPeriodSection35AImmediateCustodialSentence", + "welshLabel": "Cyfnod estyniad adran 35A (dedfryd o garchar ar unwaith)" + } + ] + }, + { + "id": "f666fd58-36c5-493f-aa11-89714faee6e6", + "label": "Remand in care of Local Authority with bail direction", + "shortCode": "RILAB", + "level": "O", + "rank": 116200, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, + "financial": "N", + "unscheduled": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": true, + "publishedForNows": true, + "lifeDuration": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "5dc70e17-6095-4bd8-8597-36186e7eaba1", + "ruleType": "optional" }, { - "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", - "label": "Probation / YOT to be notified address line 5", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 900, - "financial": "N", - "reference": "probationyottobenotifiedAddress5", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation / YOT to be notified", - "fixListLabel": "Select Probation / YOT to be notified", - "referenceDataKey": "probationyottobenotified", - "partName": "AddressLine5", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "ruleType": "optional" }, { - "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", - "label": "Probation / YOT to be notified post code", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 900, - "financial": "N", - "reference": "probationyottobenotifiedPostCode", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation / YOT to be notified", - "fixListLabel": "Select Probation / YOT to be notified", - "referenceDataKey": "probationyottobenotified", - "partName": "PostCode", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "ruleType": "optional" }, { - "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", - "label": "Probation / YOT to be notified email address 1", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 900, - "financial": "N", - "reference": "probationyottobenotifiedEmailAddress1", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation / YOT to be notified", - "fixListLabel": "Select Probation / YOT to be notified", - "referenceDataKey": "probationyottobenotified", - "partName": "EmailAddress1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "874911d0-acf2-4b6f-bcca-cacbb6bb2862", + "ruleType": "mandatory" }, { - "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", - "label": "Probation / YOT to be notified email address 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 900, - "financial": "N", - "reference": "probationyottobenotifiedEmailAddress2", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation / YOT to be notified", - "fixListLabel": "Select Probation / YOT to be notified", - "referenceDataKey": "probationyottobenotified", - "partName": "EmailAddress2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" }, { - "id": "f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6", - "label": "Victim wishes to read victim personal statement to court", - "welshLabel": "Dioddefwr yn dymuno darllen datganiad personol dioddefwyr i'r llys", - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 600, - "financial": "N", - "reference": "victimWishesToReadVictimPersonalStatementToCourt", + "childResultDefinitionId": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ], + "wordGroups": [ + { + "wordGroup": [ + "RILAB" + ] + }, + { + "wordGroup": [ + "authority", + "bail", + "care", + "direction", + "LA", + "local", + "remand" + ] + } + ], + "adjournment": "Y", + "category": "I", + "urgent": true, + "convicted": "N", + "d20": false, + "cjsCode": "4029", + "postHearingCustodyStatus": "L", + "jurisdiction": "B", + "libraCode": "RILAB", + "resultTextTemplate": "Remanded until %NEXH% in accommodation provided by the local authority for {nameOfLocalAuthority}[ subject to the following requirements: {requirementsImposedOnLocalAuthority}].[ Further requirements: {furtherReq}.] Basis: {remandBasis}.[ Adjournment reason: %ADJR%.] Directed to be bailed to {bailDate} at {bailTime} upon satisfying the following conditions: %PREBC%[ and subject to the following conditions: %BAIC%].[ Conditions imposed on the defendant: %LACOND%]", + "terminatesOffenceProceedings": false, + "prompts": [ + { + "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label": "Remand basis", + "resultPromptRule": "mandatory", + "type": "FIXL", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, + "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", "userGroups": [], "courtExtract": "Y", + "financial": "N", + "cacheable": 1, "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "remandBasis", + "welshLabel": "Sail remand" }, { - "id": "ed26a92b-0850-435b-a4c7-2c77baaea4b3", - "label": "PSR ordered", - "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 800, - "financial": "N", - "reference": "pSROrdered", + "id": "15f8330b-9554-4ea6-b75b-7e192724ca06", + "label": "Further requirements", + "resultPromptRule": "optional", + "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 700, "userGroups": [], "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, + "min": "1", + "max": "1000", + "reference": "furtherReq", + "welshLabel": "Gofynion pellach" + }, + { + "id": "f63f692f-3bfc-4d0f-8e45-acd99b06431c", + "label": "Local Authority", + "resultPromptRule": "mandatory", + "type": "FIXL", "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "583ea6cb-4251-406e-b07a-445fb0dde914", - "label": "Victim personal statement to be presented to court by prosecutor or other person", - "welshLabel": "Datganiad personol i ddioddefwyr i'w gyflwyno i'r llys gan erlynydd neu unigolyn arall", - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 500, - "financial": "N", - "reference": "victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson", + "referenceDataKey": "nameOfLocalAuthority", + "hidden": false, + "associateToReferenceData": true, + "sequence": 200, "userGroups": [], "courtExtract": "Y", + "financial": "N", + "cacheable": 2, "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "", + "max": "", + "reference": "nameOfLocalAuthority", + "welshLabel": "Awdurdod Lleol" }, { - "id": "e2b9a67c-cbd8-4479-89ff-57b2b6632835", - "label": "Additional considerations re victim personal statement", - "welshLabel": "Ystyriaethau ychwanegol mewn perthynas â datganiad personol dioddefwyr", + "id": "b275cca5-58a6-415c-9b67-b4277c7f7e6e", + "label": "Requirements imposed on Local Authority", "resultPromptRule": "optional", "type": "TXT", - "sequence": 750, - "financial": "N", - "reference": "additionalDetailsReVictimPersonalStatement", - "userGroups": [], - "min": "1", - "max": "250", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8", - "label": "No indication given re victim personal statement", - "welshLabel": "Ni roddwyd unrhyw arwydd o ddatganiad personol dioddefwyr", - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 700, - "financial": "N", - "reference": "noIndicationGivenReVictimPersonalStatement", + "hidden": false, + "associateToReferenceData": false, + "sequence": 600, "userGroups": [], "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "1000", + "reference": "requirementsImposedOnLocalAuthority", + "welshLabel": "Gofynion a osodir ar Awdurdod Lleol" }, { - "id": "d7d2c7b1-f27a-44ed-a227-ea9b917f0229", - "label": "No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made", - "welshLabel": "Ni wnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999", - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 300, - "financial": "N", - "reference": "noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade", + "id": "9ecac6aa-a205-481f-b67d-e2425ad074cf", + "label": "Bail date", + "resultPromptRule": "mandatory", + "type": "DATE", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 400, "userGroups": [], "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "bailDate" }, { - "id": "5e9f69e4-299d-41e0-93ef-b7523df86954", - "label": "Committed", - "welshLabel": "Traddodwyd", + "id": "e200e964-628a-4284-bd4e-fab9c819f7f1", + "label": "Bail time", "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 50, - "financial": "N", - "reference": "committed", - "fixedListId": "bf4e33b1-8b6b-4de8-9b1b-e83cb4f3d6d7", + "type": "TIME", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 500, "userGroups": [], "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "bailTime" } - ], - "welshLabel": "Traddodi i Lys y Goron ar gyfer dedfryd ar fechnïaeth ddiamod", + ] + }, + { + "id": "5dc70e17-6095-4bd8-8597-36186e7eaba1", + "label": "Remand to care conditions imposed on the defendant", + "shortCode": "LACOND", + "level": "O", + "rank": 700, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, - "adjournment": "Y", - "category": "I", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "CommittedToCC", - "cjsCode": "4014", - "postHearingCustodyStatus": "U", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": true, - "publishedAsAPrompt": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "publishedAsAPrompt": true, "excludedFromResults": false, "alwaysPublished": false, - "jurisdiction": "M", - "libraCode": "CCSU", + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, "resultDefinitionRules": [ { - "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType": "mandatory" - } - ], - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "resultTextTemplate": "Committed {committed} for %NEXH%. Bail remand days to count (tagged days): {bailRemandDaysToCountTaggedDays}.[ {noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade}.][ A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on {aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn}.][ {victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson}.][ {victimWishesToReadVictimPersonalStatementToCourt}.][ {noIndicationGivenReVictimPersonalStatement}.][ Additional considerations re victim personal statement: {additionalDetailsReVictimPersonalStatement}.] {pSROrdered}", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "c36fed37-b635-4303-b514-2273e9e2594d", - "version": "2023-04-15T22:05:45.733Z", - "startDate": "2023-04-16", - "label": "Entered in error", - "shortCode": "ERR", - "level": "O", - "rank": 97500, - "wordGroups": [ + "childResultDefinitionId": "671c65dc-8406-4923-bff2-e193a7fbd489", + "ruleType": "atleastOneOf" + }, { - "wordGroup": [ - "ERR" - ] + "childResultDefinitionId": "7c54ceff-9b16-448e-995a-053c6d47854c", + "ruleType": "atleastOneOf" }, { - "wordGroup": [ - "error", - "entered" - ] - } - ], - "prompts": [ + "childResultDefinitionId": "6f2e2861-0ad4-4721-b0d2-65b1d5f16895", + "ruleType": "atleastOneOf" + }, { - "id": "af38d17b-46de-4dbb-a5c7-14ac36905c89", - "label": "Reason", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 100, - "financial": "N", - "reference": "reason", - "userGroups": [], - "min": "1", - "max": "250", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - } - ], - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "N", - "d20": false, - "cjsCode": "4583", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "lCode": "ERR\nERRF", - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "resultTextTemplate": "[Reason: {reason}]", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "fbed768b-ee95-4434-87c8-e81cbc8d24c9", - "version": "2023-04-15T22:05:25.054Z", - "startDate": "2023-04-16", - "label": "Next hearing in Crown Court", - "shortCode": "NHCCS", - "level": "O", - "rank": 18500, - "wordGroups": [ + "childResultDefinitionId": "3b06d7a2-03e7-460d-8ce9-c8a48bc96040", + "ruleType": "atleastOneOf" + }, { - "wordGroup": [ - "NHCCS" - ] - } - ], - "prompts": [ + "childResultDefinitionId": "d4bc7ce5-ad94-43dc-a3d6-558049380a6c", + "ruleType": "atleastOneOf" + }, { - "id": "46257d78-1cbf-42b0-a24b-206826fecfb9", - "label": "Date and time to be fixed", - "welshLabel": "Dyddiad ac amser i’w bennu", - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 100, - "financial": "N", - "reference": "dateToBeFixed", - "wordGroup": [ - "Date to be fixed" - ], - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "e101f583-9ead-4c87-a1a4-d631d43517d3", + "ruleType": "atleastOneOf" }, { - "id": "bbc84e23-2543-4211-858f-59ae97800f5a", - "label": "Reserved Judiciary", - "welshLabel": "Y Farnwriaeth wrth gefn", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1000, - "financial": "N", - "reference": "reservedJudiciary", - "wordGroup": [ - "Reserved" - ], - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "c34f6cd8-60b2-4ca8-a150-c1aa88fb0bfa", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "db5e2bc8-13b4-4dd2-b1a0-aa130e62b4f0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6a84ebbd-d1e9-43cc-a3c3-a3b459d8cb5a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "8bc69b99-359e-48a2-a353-66fe009b5507", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bd77f0bc-11a5-4e08-abe5-697e27c9201e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "4dcb9901-6539-4a4f-b894-f62b3ff51862", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f68c277a-4f7d-4da5-bd8a-396e6671e05c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dffdac97-7b67-4ca7-b72b-7ea417e931c8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a65e4db1-e02a-489f-9f4e-2e38f77807c6", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "eb0260f2-c923-48c9-91e9-f4c97c9d37fe", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5c7db83b-bfb4-4d0d-8c63-aa2513e756bb", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "30ff00bf-583d-48e4-ab13-34e4445443fb", + "ruleType": "atleastOneOf" }, { - "id": "3e7ae7bd-f736-4729-ab06-82bf966bc72f", - "label": "Week Commencing", - "welshLabel": "Wythnos yn dechrau", - "resultPromptRule": "oneOf", - "type": "DATE", - "sequence": 300, - "financial": "N", - "reference": "weekCommencing", - "wordGroup": [ - "week commencing" - ], - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "C", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "35f46562-ebb6-423a-99e2-1dd65c2e5f97", + "ruleType": "atleastOneOf" }, { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": "Amcangyfrif amser", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Weeks", - "financial": "N", - "reference": "HEST", - "userGroups": [], - "welshDuration": "Wythnos", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "f2cab905-935b-49e5-9f82-badcfb6c6c60", + "ruleType": "atleastOneOf" }, { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": "Amcangyfrif amser", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Days", - "financial": "N", - "reference": "HEST", - "userGroups": [], - "welshDuration": "Niwrnod", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "b1c731d5-a54c-4b9a-9c76-ad3dec4240ac", + "ruleType": "atleastOneOf" }, { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": "Amcangyfrif amser", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Hours", - "financial": "N", - "reference": "HEST", - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "e363cb46-0e5c-479a-956f-c29acbb5b6ca", + "ruleType": "atleastOneOf" }, { - "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label": "Estimated duration", - "welshLabel": "Amcangyfrif amser", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 800, - "duration": "Minutes", - "financial": "N", - "reference": "HEST", - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "66017606-d552-4e06-a835-c0a1af03467a", + "ruleType": "atleastOneOf" }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse organisation name", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 500, - "financial": "N", - "reference": "hCHOUSEOrganisationName", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "OrganisationName", - "nameEmail": false, - "associatedWithReferenceData": true + "childResultDefinitionId": "6f8051e0-02fd-4c12-a229-a74e8a15076c", + "ruleType": "atleastOneOf" }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 1", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 500, - "financial": "N", - "reference": "hCHOUSEAddress1", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine1", - "nameEmail": false, - "associatedWithReferenceData": true + "childResultDefinitionId": "2751bd8f-897a-4aa0-b26d-b7bf7b18acff", + "ruleType": "atleastOneOf" }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 500, - "financial": "N", - "reference": "hCHOUSEAddress2", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine2", - "nameEmail": false, - "associatedWithReferenceData": true + "childResultDefinitionId": "241746c2-1565-4de9-9915-bd65deda1453", + "ruleType": "atleastOneOf" }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 3", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 500, - "financial": "N", - "reference": "hCHOUSEAddress3", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine3", - "nameEmail": false, - "associatedWithReferenceData": true + "childResultDefinitionId": "6656b25a-de49-4722-b21f-acebe07d4d1c", + "ruleType": "atleastOneOf" }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 4", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 500, - "financial": "N", - "reference": "hCHOUSEAddress4", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine4", - "nameEmail": false, - "associatedWithReferenceData": true + "childResultDefinitionId": "b258561d-ec34-42a6-9c8d-93ab64b59589", + "ruleType": "atleastOneOf" }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 5", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 500, - "financial": "N", - "reference": "hCHOUSEAddress5", + "childResultDefinitionId": "47fe1304-9772-43c2-bc3c-90a73b55a2d0", + "ruleType": "atleastOneOf" + } + ], + "wordGroups": [ + { + "wordGroup": [ + "LACOND" + ] + }, + { + "wordGroup": [ + "conditions", + "imposed" + ] + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "resultTextTemplate": "%AllChildText%.[ Reasons for Conditions: {reasonsForTheConditionsImposedOnTheDefendant}.]", + "welshLabel": "Remand i amodau gofal a osodir ar y diffynnydd", + "terminatesOffenceProceedings": false, + "prompts": [ + { + "id": "46026657-e495-4b4c-a47e-466fe49dfe2e", + "label": "Reasons for the conditions imposed on the defendant", + "resultPromptRule": "mandatory", + "type": "FIXLM", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, + "fixedListId": "8faf795a-5f70-418f-8104-f62e7b7f8e52", "userGroups": [], - "min": "", - "max": "", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "AddressLine5", - "nameEmail": false, - "associatedWithReferenceData": true - }, + "reference": "reasonsForTheConditionsImposedOnTheDefendant", + "welshLabel": "Rhesymau dros yr amodau a osodwyd ar y diffynnydd" + } + ] + }, + { + "id": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", + "label": "Electronic monitoring details", + "shortCode": "ELMONDET", + "level": "O", + "rank": 48800, + "isAvailableForCourtExtract": false, + "financial": "N", + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "lifeDuration": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "terminatesOffenceProceedings": false, + "prompts": [ { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse post code", + "id": "2d56a2cf-6159-40e6-b6c2-13b8192bcf62", + "label": "Defendant's mobile number", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 500, + "type": "TXT", + "sequence": 200, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "courtExtract": "N", "financial": "N", - "reference": "hCHOUSEPostCode", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "PostCode", - "nameEmail": false, - "associatedWithReferenceData": true + "min": "6", + "max": "15" }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse email address 1", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 500, - "financial": "N", - "reference": "hCHOUSEEmailAddress1", - "userGroups": [], - "min": "", - "max": "", + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Electronic Monitoring Contractor responsible officer", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "EmailAddress1", - "nameEmail": false, - "associatedWithReferenceData": true + "financial": "N", + "jurisdiction": "B" }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse email address 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 500, - "financial": "N", - "reference": "hCHOUSEEmailAddress2", - "userGroups": [], - "min": "", - "max": "", + "id": "52056247-a158-4b8b-b2d7-0f92bab219e0", + "label": "Interpreter used - language", + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", + "financial": "N", "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "EmailAddress2", - "nameEmail": false, - "associatedWithReferenceData": true + "min": "1", + "max": "60" }, { - "id": "aea2ee79-47b4-4023-9a95-1b327e6e03d5", - "label": "Fixed Date", - "welshLabel": "Dyddiad Penodol", + "id": "6bc228a4-7e28-4b93-a1e9-96432137c696", + "label": "Interpreter not used", "resultPromptRule": "oneOf", - "type": "DATE", - "sequence": 200, + "type": "BOOLEAN", + "sequence": 400, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "courtExtract": "N", "financial": "N", - "reference": "fixedDate", - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "C", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "jurisdiction": "B" }, { - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "Hearing type", - "welshLabel": "Math o wrandawiad", + "id": "4415f5e3-35bc-49ee-8ce4-acb36b91667c", + "label": "Does the offender have any special needs?", "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 700, + "type": "BOOLEAN", + "sequence": 500, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "courtExtract": "N", "financial": "N", - "reference": "HTYPE", - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "jurisdiction": "B" }, { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "welshLabel": "Ystafell Llys", + "id": "8e29f329-28d3-442c-8470-2a215521b60a", + "label": "Description of special needs", "resultPromptRule": "optional", - "type": "INT", + "type": "TXT", "sequence": 600, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "courtExtract": "N", "financial": "N", - "reference": "HCROOM", - "userGroups": [], - "min": "1", - "max": "99", - "courtExtract": "Y", "jurisdiction": "B", - "hidden": false, - "referenceDataKey": "HCROOM", - "nameEmail": false, - "associatedWithReferenceData": true + "min": "1", + "max": "1000" }, { - "id": "a0ec3e68-5210-422f-9959-73c1c7ce495a", - "label": "Existing Hearing Id", - "welshLabel": "ID Gwrandawiad Presennol", + "id": "13058f22-0324-415a-8cdf-f11b64488167", + "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are addtional requirements as well", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 900, - "financial": "N", - "reference": "existingHearingId", - "userGroups": [], + "type": "BOOLEAN", + "sequence": 700, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameEmail": false, - "associatedWithReferenceData": false + "financial": "N", + "jurisdiction": "B" }, { - "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", - "label": "Time of hearing", - "welshLabel": "Amser y gwrandawiad", + "id": "c024016d-b79e-4bbe-8c15-b7a2acadca9e", + "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are NO addtional requirements", "resultPromptRule": "optional", - "type": "TIME", - "sequence": 400, + "type": "BOOLEAN", + "sequence": 800, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "courtExtract": "N", "financial": "N", - "reference": "timeOfHearing", - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "jurisdiction": "B" + } + ] + }, + { + "id": "7c54ceff-9b16-448e-995a-053c6d47854c", + "label": "Must stay indoors at home address (or at any other address allowed by the court) between the times specified and present him/herself to a police officer between these times", + "shortCode": "STAYDS", + "level": "O", + "rank": 118200, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, + "financial": "N", + "unscheduled": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, + "wordGroups": [ + { + "wordGroup": [ + "STAYDS" + ] }, { - "id": "6fac63f7-60f0-4453-910e-e27700722d31", - "label": "Booking Type", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1300, + "wordGroup": [ + "address", + "home", + "indoors", + "police", + "present", + "stay" + ] + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "ConditionsImposedOnDefendant", + "qualifier": "JE", + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "resultTextTemplate": "Must stay indoors at home address (or at any other address allowed by the court) between {excusedTimeFrom} and {and} {frequencyOfCurfew}[. Additional Information: {additionalInformation}]", + "welshLabel": "Rhaid aros y tu fewn yn y cyfeiriad cartref (neu mewn unrhyw gyfeiriad arall a ganiateir gan y llys) rhwng yr amseroedd a nodwyd a'i gyflwyno ei hun i swyddog heddlu rhwng yr amseroedd hyn", + "terminatesOffenceProceedings": false, + "prompts": [ + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "And", + "resultPromptRule": "mandatory", + "type": "TIME", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 200, + "userGroups": [], + "courtExtract": "Y", "financial": "N", - "reference": "bookingtype", - "userGroups": [], - "courtExtract": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "and", + "welshLabel": "Ac" }, { - "id": "b861ca8e-04fa-41f2-8f05-1b5b0c1df286", - "label": "Booking Priority", - "resultPromptRule": "optional", + "id": "6e27fcf9-1bf0-4e27-9ed5-6cdd1bf1ca68", + "label": "Frequency of curfew", + "resultPromptRule": "mandatory", "type": "TXT", - "sequence": 1200, - "financial": "N", - "reference": "bookingpriority", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 300, "userGroups": [], - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "30", + "reference": "frequencyOfCurfew", + "welshLabel": "Amledd cyrffyw" }, { - "id": "c81aba5d-282a-4ef6-93d0-3c5e7dd810fd", - "label": "Slot booking reference", - "welshLabel": "", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 1100, - "financial": "N", - "reference": "hmiSlots", + "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", + "label": "Between", + "resultPromptRule": "mandatory", + "type": "TIME", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, "userGroups": [], - "min": "1", - "max": "6000", - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": true, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "excusedTimeFrom", + "welshLabel": "Rhwng" }, { - "id": "aecf6dd0-82fa-4520-bbb3-af0f8ea91ca7", - "label": "Special Requirements", + "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label": "Additional information", "resultPromptRule": "optional", "type": "TXT", - "sequence": 1400, - "financial": "N", - "reference": "SpecialRequirements", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 400, "userGroups": [], + "courtExtract": "Y", + "financial": "N", + "jurisdiction": "B", "min": "1", - "max": "100", - "courtExtract": "N", - "jurisdiction": "C", - "hidden": true, - "nameEmail": false, - "associatedWithReferenceData": false + "max": "1000", + "reference": "additionalInformation", + "welshLabel": "Gwybodaeth ychwanegol" } - ], - "welshLabel": "Bydd y gwrandawiad nesaf yn Llys y Goron", + ] + }, + { + "id": "69ff04d5-84e8-4a61-8478-82c2999c1969", + "label": "To attend or a warrant to issue", + "shortCode": "AWI", + "level": "O", + "rank": 22600, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Next hearing", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": true, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, "publishedAsAPrompt": true, "excludedFromResults": false, "alwaysPublished": false, - "jurisdiction": "B", - "resultWording": "", - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "resultTextTemplate": "hearing[ on a {dateToBeFixed}][ on {fixedDate}][ week commencing {weekCommencing}][ at {timeOfHearing}][ in {HCROOM}], {HCHOUSE~Name}", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "cfa66730-f81c-4768-a36e-581791cb0270", - "version": "2023-02-01T12:15:50.792Z", - "startDate": "2023-02-02", - "label": "Has a collection order been made?", - "shortCode": "COLLOM", - "level": "D", - "rank": 14100, - "userGroups": [ + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, + "wordGroups": [ + { + "wordGroup": [ + "AWI" + ] + }, + { + "wordGroup": [ + "warrant", + "attend" + ] + } ], - "financial": "N", - "unscheduled": false, "adjournment": "N", "category": "A", "urgent": false, "convicted": "N", "d20": false, + "resultDefinitionGroup": "Adjournment reasons", + "qualifier": "GE", "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": true, - "alwaysPublished": false, "jurisdiction": "B", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "9ea0d845-5096-44f6-9ce0-8ae801141eac", - "ruleType": "mandatory" - } - ], - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": false, - "isBooleanResult": true + "userGroups": [], + "resultTextTemplate": "%ResultLabel%", + "resultWording": "", + "welshLabel": "Codi neu gyhoeddi gwarant", + "terminatesOffenceProceedings": false }, { - "id": "3d742a7e-37a6-453c-bb6f-5e023bb19453", - "version": "2024-08-12T13:32:30.525Z", - "startDate": "2024-08-13", - "label": "Payment Method", - "shortCode": "PM", - "level": "D", - "rank": 30600, - "userGroups": [], + "id": "3c98b287-fd01-471a-ac34-e0a56d9e95c2", + "label": "Exclusion - not to sit in the front seat of any motor vehicle", + "shortCode": "PORE10", + "level": "O", + "rank": 88300, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": true, - "alwaysPublished": false, - "jurisdiction": "B", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "bdb32555-8d55-4dc1-b4b6-580db5132496", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", - "ruleType": "oneOf" - } - ], "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": false, - "isBooleanResult": false - }, - { - "id": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", - "version": "2020-09-25T13:28:35.893Z", - "startDate": "2020-09-26", - "label": "Reserve Terms Lump sum", - "shortCode": "RLSUM", - "level": "D", - "rank": 6300, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, "wordGroups": [ { "wordGroup": [ - "RLSUM" - ] - }, - { - "wordGroup": [ - "rt", - "ls" - ] - }, - { - "wordGroup": [ - "pay", - "reserve", - "terms", - "lump" + "PORE10" ] }, { "wordGroup": [ - "terms", - "lump", - "sum", - "reserve" + "front", + "seat", + "Exclusion" ] } ], - "prompts": [ - { - "id": "c131cab0-5dd6-11e8-9c2d-fa7ae01bbebc", - "label": "Pay lump sum in full within", - "welshLabel": "Talu cyfandaliad yn llawn o fewn", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "financial": "N", - "reference": "LSPW", - "fixedListId": "cd4cc782-5dd6-11e8-9c2d-fa7ae01bbebc", - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - } - ], - "welshLabel": "Cyfandaliad y Telerau Wrth Gefn", - "financial": "N", - "unscheduled": false, "adjournment": "N", - "category": "F", + "category": "A", "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "Payment terms", + "resultDefinitionGroup": "Bail conditions", + "qualifier": "RD", "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "M", - "isAvailableForCourtExtract": true, - "endDate": "2020-10-30" + "jurisdiction": "B", + "userGroups": [], + "resultTextTemplate": "%ResultLabel%", + "welshLabel": "Gwahardd - i beidio ag eistedd yn sedd flaen unrhyw gerbyd modur", + "terminatesOffenceProceedings": false }, - {"id":"dbf9f59c-eee5-4285-8a1c-4fefe4508581","version":"2024-04-09T14:35:37.347Z","startDate":"2024-04-10","label":"To produce motor insurance documents or test certificates (not driving licence)","shortCode":"DOC","level":"O","rank":32100,"userGroups":[],"financial":"N","unscheduled":false,"adjournment":"N","category":"A","urgent":false,"convicted":"N","d20":false,"resultDefinitionGroup":"Adjournment reasons","qualifier":"DO","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":false,"publishedForNows":true,"publishedAsAPrompt":true,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","resultWording":"","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"%ResultLabel%","isAvailableForCourtExtract":true,"isBooleanResult":false}, - {"id":"2b3f7c20-8fc1-4fad-9076-df196c24b27e","version":"2023-02-01T12:13:19.901Z","startDate":"2023-02-02","label":"Granted","shortCode":"G","level":"O","rank":98500,"wordGroups":[{"wordGroup":["G","granted"]}],"userGroups":[],"financial":"N","unscheduled":false,"adjournment":"N","category":"F","urgent":false,"convicted":"N","d20":false,"postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":false,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"isAvailableForCourtExtract":true,"isBooleanResult":false} + {"id":"3c03001c-56b3-4c64-bc0f-a3c57c3f424f","version":"2023-04-15T22:07:30.368Z","startDate":"2023-04-16","label":"Committed to Crown Court for sentence on unconditional bail","shortCode":"CCSU","level":"O","rank":104500,"wordGroups":[{"wordGroup":["CCSU"]},{"wordGroup":["Committed","sentence","unconditional"]}],"prompts":[{"id":"4d10cd4b-fb39-40dd-88e1-2397832bc914","label":"Bail remand days to count (tagged days)","welshLabel":"Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)","resultPromptRule":"mandatory","type":"INT","sequence":200,"financial":"N","reference":"bailRemandDaysToCountTaggedDays","wordGroup":["Tagged days"],"userGroups":[],"min":"0","max":"999","courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"654fce8c-238a-468a-92db-f7509394cf08","label":"A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on","welshLabel":"Gwnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999 ar","resultPromptRule":"optional","type":"DATE","sequence":400,"financial":"N","reference":"aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn","wordGroup":["Reporting","Restriction"],"userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified organisation name","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedOrganisationName","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"OrganisationName","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 1","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress1","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine1","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress2","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine2","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 3","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress3","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine3","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 4","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress4","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine4","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 5","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress5","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine5","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified post code","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedPostCode","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"PostCode","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified email address 1","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedEmailAddress1","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"EmailAddress1","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified email address 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedEmailAddress2","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"EmailAddress2","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6","label":"Victim wishes to read victim personal statement to court","welshLabel":"Dioddefwr yn dymuno darllen datganiad personol dioddefwyr i'r llys","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":600,"financial":"N","reference":"victimWishesToReadVictimPersonalStatementToCourt","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"ed26a92b-0850-435b-a4c7-2c77baaea4b3","label":"PSR ordered","resultPromptRule":"mandatory","type":"BOOLEAN","sequence":800,"financial":"N","reference":"pSROrdered","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"583ea6cb-4251-406e-b07a-445fb0dde914","label":"Victim personal statement to be presented to court by prosecutor or other person","welshLabel":"Datganiad personol i ddioddefwyr i'w gyflwyno i'r llys gan erlynydd neu unigolyn arall","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":500,"financial":"N","reference":"victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"e2b9a67c-cbd8-4479-89ff-57b2b6632835","label":"Additional considerations re victim personal statement","welshLabel":"Ystyriaethau ychwanegol mewn perthynas â datganiad personol dioddefwyr","resultPromptRule":"optional","type":"TXT","sequence":750,"financial":"N","reference":"additionalDetailsReVictimPersonalStatement","userGroups":[],"min":"1","max":"250","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8","label":"No indication given re victim personal statement","welshLabel":"Ni roddwyd unrhyw arwydd o ddatganiad personol dioddefwyr","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":700,"financial":"N","reference":"noIndicationGivenReVictimPersonalStatement","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d7d2c7b1-f27a-44ed-a227-ea9b917f0229","label":"No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made","welshLabel":"Ni wnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999","resultPromptRule":"optional","type":"BOOLEAN","sequence":300,"financial":"N","reference":"noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"5e9f69e4-299d-41e0-93ef-b7523df86954","label":"Committed","welshLabel":"Traddodwyd","resultPromptRule":"mandatory","type":"FIXL","sequence":50,"financial":"N","reference":"committed","fixedListId":"bf4e33b1-8b6b-4de8-9b1b-e83cb4f3d6d7","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false}],"welshLabel":"Traddodi i Lys y Goron ar gyfer dedfryd ar fechnïaeth ddiamod","financial":"N","unscheduled":false,"adjournment":"Y","category":"I","urgent":false,"convicted":"N","d20":false,"resultDefinitionGroup":"CommittedToCC","cjsCode":"4014","postHearingCustodyStatus":"U","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":true,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"M","libraCode":"CCSU","resultDefinitionRules":[{"childResultDefinitionId":"f00359b5-7303-403b-b59e-0b1a1daa89bc","ruleType":"mandatory"}],"canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"Committed {committed} for %NEXH%. Bail remand days to count (tagged days): {bailRemandDaysToCountTaggedDays}.[ {noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade}.][ A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on {aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn}.][ {victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson}.][ {victimWishesToReadVictimPersonalStatementToCourt}.][ {noIndicationGivenReVictimPersonalStatement}.][ Additional considerations re victim personal statement: {additionalDetailsReVictimPersonalStatement}.] {pSROrdered}","isAvailableForCourtExtract":true,"isBooleanResult":false}, + {"id":"c36fed37-b635-4303-b514-2273e9e2594d","version":"2023-04-15T22:05:45.733Z","startDate":"2023-04-16","label":"Entered in error","shortCode":"ERR","level":"O","rank":97500,"wordGroups":[{"wordGroup":["ERR"]},{"wordGroup":["error","entered"]}],"prompts":[{"id":"af38d17b-46de-4dbb-a5c7-14ac36905c89","label":"Reason","resultPromptRule":"optional","type":"TXT","sequence":100,"financial":"N","reference":"reason","userGroups":[],"min":"1","max":"250","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false}],"financial":"N","unscheduled":false,"adjournment":"N","category":"F","urgent":false,"convicted":"N","d20":false,"cjsCode":"4583","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":false,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","lCode":"ERR\nERRF","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"[Reason: {reason}]","isAvailableForCourtExtract":true,"isBooleanResult":false}, + {"id":"fbed768b-ee95-4434-87c8-e81cbc8d24c9","version":"2023-04-15T22:05:25.054Z","startDate":"2023-04-16","label":"Next hearing in Crown Court","shortCode":"NHCCS","level":"O","rank":18500,"wordGroups":[{"wordGroup":["NHCCS"]}],"prompts":[{"id":"46257d78-1cbf-42b0-a24b-206826fecfb9","label":"Date and time to be fixed","welshLabel":"Dyddiad ac amser i’w bennu","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":100,"financial":"N","reference":"dateToBeFixed","wordGroup":["Date to be fixed"],"userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"bbc84e23-2543-4211-858f-59ae97800f5a","label":"Reserved Judiciary","welshLabel":"Y Farnwriaeth wrth gefn","resultPromptRule":"optional","type":"TXT","sequence":1000,"financial":"N","reference":"reservedJudiciary","wordGroup":["Reserved"],"userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"3e7ae7bd-f736-4729-ab06-82bf966bc72f","label":"Week Commencing","welshLabel":"Wythnos yn dechrau","resultPromptRule":"oneOf","type":"DATE","sequence":300,"financial":"N","reference":"weekCommencing","wordGroup":["week commencing"],"userGroups":[],"courtExtract":"Y","jurisdiction":"C","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Weeks","financial":"N","reference":"HEST","userGroups":[],"welshDuration":"Wythnos","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Days","financial":"N","reference":"HEST","userGroups":[],"welshDuration":"Niwrnod","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Hours","financial":"N","reference":"HEST","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Minutes","financial":"N","reference":"HEST","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse organisation name","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEOrganisationName","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"OrganisationName","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 1","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress1","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine1","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress2","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine2","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 3","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress3","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine3","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 4","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress4","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine4","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 5","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress5","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine5","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse post code","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEPostCode","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"PostCode","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse email address 1","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEEmailAddress1","userGroups":[],"min":"","max":"","courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"EmailAddress1","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse email address 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEEmailAddress2","userGroups":[],"min":"","max":"","courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"EmailAddress2","nameEmail":false,"associatedWithReferenceData":true},{"id":"aea2ee79-47b4-4023-9a95-1b327e6e03d5","label":"Fixed Date","welshLabel":"Dyddiad Penodol","resultPromptRule":"oneOf","type":"DATE","sequence":200,"financial":"N","reference":"fixedDate","userGroups":[],"courtExtract":"Y","jurisdiction":"C","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"c1116d12-dd35-4171-807a-2cb845357d22","label":"Hearing type","welshLabel":"Math o wrandawiad","resultPromptRule":"mandatory","type":"TXT","sequence":700,"financial":"N","reference":"HTYPE","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"49ec9b26-dd63-4637-b2e9-55ba9948a90f","label":"Courtroom","welshLabel":"Ystafell Llys","resultPromptRule":"optional","type":"INT","sequence":600,"financial":"N","reference":"HCROOM","userGroups":[],"min":"1","max":"99","courtExtract":"Y","jurisdiction":"B","hidden":false,"referenceDataKey":"HCROOM","nameEmail":false,"associatedWithReferenceData":true},{"id":"a0ec3e68-5210-422f-9959-73c1c7ce495a","label":"Existing Hearing Id","welshLabel":"ID Gwrandawiad Presennol","resultPromptRule":"optional","type":"TXT","sequence":900,"financial":"N","reference":"existingHearingId","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":true,"nameEmail":false,"associatedWithReferenceData":false},{"id":"4d125a5a-acbc-461d-a657-ba5643af85a6","label":"Time of hearing","welshLabel":"Amser y gwrandawiad","resultPromptRule":"optional","type":"TIME","sequence":400,"financial":"N","reference":"timeOfHearing","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"6fac63f7-60f0-4453-910e-e27700722d31","label":"Booking Type","resultPromptRule":"optional","type":"TXT","sequence":1300,"financial":"N","reference":"bookingtype","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"b861ca8e-04fa-41f2-8f05-1b5b0c1df286","label":"Booking Priority","resultPromptRule":"optional","type":"TXT","sequence":1200,"financial":"N","reference":"bookingpriority","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"c81aba5d-282a-4ef6-93d0-3c5e7dd810fd","label":"Slot booking reference","welshLabel":"","resultPromptRule":"optional","type":"TXT","sequence":1100,"financial":"N","reference":"hmiSlots","userGroups":[],"min":"1","max":"6000","courtExtract":"N","jurisdiction":"B","hidden":true,"nameEmail":false,"associatedWithReferenceData":false},{"id":"aecf6dd0-82fa-4520-bbb3-af0f8ea91ca7","label":"Special Requirements","resultPromptRule":"optional","type":"TXT","sequence":1400,"financial":"N","reference":"SpecialRequirements","userGroups":[],"min":"1","max":"100","courtExtract":"N","jurisdiction":"C","hidden":true,"nameEmail":false,"associatedWithReferenceData":false}],"welshLabel":"Bydd y gwrandawiad nesaf yn Llys y Goron","financial":"N","unscheduled":false,"adjournment":"N","category":"A","urgent":false,"convicted":"N","d20":false,"resultDefinitionGroup":"Next hearing","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":false,"publishedForNows":true,"publishedAsAPrompt":true,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","resultWording":"","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"hearing[ on a {dateToBeFixed}][ on {fixedDate}][ week commencing {weekCommencing}][ at {timeOfHearing}][ in {HCROOM}], {HCHOUSE~Name}","isAvailableForCourtExtract":true,"isBooleanResult":false} + ] } \ No newline at end of file diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java index e0fca87bdf..9624f07c12 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java @@ -2600,7 +2600,7 @@ private uk.gov.moj.cpp.hearing.command.defendant.Defendant convert(final Defenda final PersonDefendant curPd = currentDefendant.getPersonDefendant(); final Person cpd = curPd.getPersonDetails(); Person person = new Person(cpd.getAdditionalNationalityCode(), cpd.getAdditionalNationalityDescription(), cpd.getAdditionalNationalityId(), cpd.getAddress(), cpd.getContact(), cpd.getDateOfBirth(), - cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(),false, + cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), firstName, cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(), cpd.getIsAddressConfidential(), cpd.getLastName(), cpd.getMiddleName(), cpd.getNationalInsuranceNumber(), cpd.getNationalityCode(), cpd.getNationalityDescription(), cpd.getNationalityId(), cpd.getOccupation(), cpd.getOccupationCode(), cpd.getPersonMarkers(), cpd.getSpecificRequirements(), cpd.getTitle()); @@ -2623,7 +2623,7 @@ private uk.gov.moj.cpp.hearing.command.defendant.Defendant convertWithDefenceAss final PersonDefendant curPd = currentDefendant.getPersonDefendant(); final Person cpd = curPd.getPersonDetails(); Person person = new Person(cpd.getAdditionalNationalityCode(), cpd.getAdditionalNationalityDescription(), cpd.getAdditionalNationalityId(), cpd.getAddress(), cpd.getContact(), cpd.getDateOfBirth(), - cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), cpd.getFirstName(), cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(),false, + cpd.getDisabilityStatus(), cpd.getDocumentationLanguageNeeds(), cpd.getEthnicity(), cpd.getFirstName(), cpd.getGender(), cpd.getHearingLanguageNeeds(), cpd.getInterpreterLanguageNeeds(),cpd.getIsAddressConfidential(), cpd.getLastName(), cpd.getMiddleName(), cpd.getNationalInsuranceNumber(), cpd.getNationalityCode(), cpd.getNationalityDescription(), cpd.getNationalityId(), cpd.getOccupation(), cpd.getOccupationCode(), cpd.getPersonMarkers(), cpd.getSpecificRequirements(), cpd.getTitle()); diff --git a/pom.xml b/pom.xml index aeb0ebcfb4..95a5152246 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ 1.3.3 0.1.96 17.103.11 - 17.103.124 + 17.103.125 17.0.57 17.0.58 17.0.1 From 7d937591141afe41112eaf011816682d1f458388 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 25 Feb 2026 10:10:34 +0000 Subject: [PATCH 16/50] updating poms for 17.0.146 branch with snapshot versions From 16dc938a944ab6b850b73e36e237540dc238ef48 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 25 Feb 2026 10:10:37 +0000 Subject: [PATCH 17/50] updating poms for 17.0.147-SNAPSHOT development --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 77f5ff1a4e..fd2706f67b 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index f56368f449..c6e40a9faa 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 0b2cf6e004..b6ff7310f3 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 5f597d3d2b..d8a75c5d64 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index bdb1f42829..e0d6c835d3 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index ebbd307481..99a429e7fe 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 26053c7726..5884811f5c 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index c34022eeb3..7a8f4dbead 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index f33a5222b2..f9cc263a02 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 3a0744cd17..f100cf9780 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 1cb678a588..d7da26025b 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 0ee9a3cc43..335f700000 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 5d9950028e..728191672c 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 6bcfe18f27..4169afde74 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index c8ec675e6e..933065316e 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 61f7680736..47046582c2 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index db012b2cf1..eff2468af9 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index dc685208c4..f2ea0c41e8 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 635cce25e8..0991ea63bb 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 0c8eb5db65..485ef45bfa 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 2a7b0203d1..e9a4444501 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index ef48da7e4b..17d9eb7020 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index b123004d0a..bf751187d3 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 801f4fb679..1c947056ed 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 95a5152246..a4c798338b 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index affd6f513c..0253956b85 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.147-SNAPSHOT From dcb747981d61717fb612c2772c0de58791175c77 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 25 Feb 2026 10:49:47 +0000 Subject: [PATCH 18/50] updating poms for branch'dev/release-17.0.146' with non-snapshot versions --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 77f5ff1a4e..786edd479a 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.146-SNAPSHOT + 17.0.146 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index f56368f449..eb5814269d 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.146-SNAPSHOT + 17.0.146 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 0b2cf6e004..45f7fae4ed 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.146 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 5f597d3d2b..4a374c705d 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.146 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index bdb1f42829..bb7eee5cb3 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.146 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index ebbd307481..24ca69190e 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.146 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 26053c7726..9b36e551a3 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.146 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index c34022eeb3..f81cc6dffa 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146-SNAPSHOT + 17.0.146 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index f33a5222b2..82a52d9f3c 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.146 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 3a0744cd17..e36b2b7da4 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.146 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 1cb678a588..fcba4368c9 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.146-SNAPSHOT + 17.0.146 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 0ee9a3cc43..21e99d5895 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.146 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 5d9950028e..f74506bdad 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.146 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 6bcfe18f27..60609f9429 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.146 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index c8ec675e6e..e2991196ca 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.146 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 61f7680736..9346883b4e 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146-SNAPSHOT + 17.0.146 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index db012b2cf1..db3bba5ce5 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.146-SNAPSHOT + 17.0.146 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index dc685208c4..4f5cf0c175 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.146-SNAPSHOT + 17.0.146 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 635cce25e8..78aae3d010 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.146 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 0c8eb5db65..0840b35d5e 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.146 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 2a7b0203d1..311d041eab 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.146-SNAPSHOT + 17.0.146 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index ef48da7e4b..e6c5cd2ad0 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.146-SNAPSHOT + 17.0.146 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index b123004d0a..36cdd9387c 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.146 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 801f4fb679..72a7a2fe08 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.146 pojo-plugin diff --git a/pom.xml b/pom.xml index 95a5152246..f0654fcd20 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.146 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index affd6f513c..b3f04f2fe8 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146-SNAPSHOT + 17.0.146 From 3c1f800cd359e00bc81102dee6ec8cc7214fee9a Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 25 Feb 2026 10:50:03 +0000 Subject: [PATCH 19/50] updating develop poms to master versions to avoid merge conflicts --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index fd2706f67b..786edd479a 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.147-SNAPSHOT + 17.0.146 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index c6e40a9faa..eb5814269d 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.147-SNAPSHOT + 17.0.146 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index b6ff7310f3..45f7fae4ed 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.146 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index d8a75c5d64..4a374c705d 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.146 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index e0d6c835d3..bb7eee5cb3 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.146 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 99a429e7fe..24ca69190e 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.146 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 5884811f5c..9b36e551a3 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.146 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 7a8f4dbead..f81cc6dffa 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.146 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index f9cc263a02..82a52d9f3c 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.146 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index f100cf9780..e36b2b7da4 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.146 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index d7da26025b..fcba4368c9 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.147-SNAPSHOT + 17.0.146 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 335f700000..21e99d5895 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.146 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 728191672c..f74506bdad 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.146 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 4169afde74..60609f9429 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.146 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 933065316e..e2991196ca 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.146 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 47046582c2..9346883b4e 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.146 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index eff2468af9..db3bba5ce5 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.147-SNAPSHOT + 17.0.146 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index f2ea0c41e8..4f5cf0c175 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.147-SNAPSHOT + 17.0.146 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 0991ea63bb..78aae3d010 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.146 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 485ef45bfa..0840b35d5e 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.146 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index e9a4444501..311d041eab 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.147-SNAPSHOT + 17.0.146 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 17d9eb7020..e6c5cd2ad0 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.147-SNAPSHOT + 17.0.146 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index bf751187d3..36cdd9387c 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.146 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 1c947056ed..72a7a2fe08 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.146 pojo-plugin diff --git a/pom.xml b/pom.xml index a4c798338b..f0654fcd20 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.146 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 0253956b85..b3f04f2fe8 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.146 From 14f00c94a74519a1b0c9c46f1a9f4c8973a3f5d4 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 25 Feb 2026 10:50:06 +0000 Subject: [PATCH 20/50] Updating develop poms back to pre merge state --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 786edd479a..fd2706f67b 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.146 + 17.0.147-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index eb5814269d..c6e40a9faa 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.146 + 17.0.147-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 45f7fae4ed..b6ff7310f3 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146 + 17.0.147-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 4a374c705d..d8a75c5d64 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146 + 17.0.147-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index bb7eee5cb3..e0d6c835d3 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146 + 17.0.147-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 24ca69190e..99a429e7fe 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146 + 17.0.147-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 9b36e551a3..5884811f5c 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146 + 17.0.147-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index f81cc6dffa..7a8f4dbead 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.146 + 17.0.147-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 82a52d9f3c..f9cc263a02 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146 + 17.0.147-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index e36b2b7da4..f100cf9780 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146 + 17.0.147-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index fcba4368c9..d7da26025b 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.146 + 17.0.147-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 21e99d5895..335f700000 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.146 + 17.0.147-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index f74506bdad..728191672c 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146 + 17.0.147-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 60609f9429..4169afde74 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146 + 17.0.147-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index e2991196ca..933065316e 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146 + 17.0.147-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 9346883b4e..47046582c2 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.146 + 17.0.147-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index db3bba5ce5..eff2468af9 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.146 + 17.0.147-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index 4f5cf0c175..f2ea0c41e8 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.146 + 17.0.147-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 78aae3d010..0991ea63bb 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146 + 17.0.147-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 0840b35d5e..485ef45bfa 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146 + 17.0.147-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 311d041eab..e9a4444501 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.146 + 17.0.147-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index e6c5cd2ad0..17d9eb7020 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.146 + 17.0.147-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 36cdd9387c..bf751187d3 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146 + 17.0.147-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 72a7a2fe08..1c947056ed 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146 + 17.0.147-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index f0654fcd20..a4c798338b 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146 + 17.0.147-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index b3f04f2fe8..0253956b85 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.146 + 17.0.147-SNAPSHOT From a32db31b67d23b5cbe1982b58c0bb408f364633b Mon Sep 17 00:00:00 2001 From: yilmazsaritemur2 <150049030+yilmazsaritemur2@users.noreply.github.com> Date: Wed, 18 Mar 2026 13:04:16 +0000 Subject: [PATCH 21/50] CCT-2357 code merge --- .../resultdefinition/ResultDefinition.java | 10 + .../event/result/PublicHearingResultedV2.java | 1 + .../event/PublishResultsV3EventProcessor.java | 18 +- .../delegates/PublishResultsDelegateV3.java | 63 +- .../DeletedJudicialResultTransformer.java | 169 + .../restructure/RestructuringHelperV3.java | 15 +- .../restructure/ResultTreeBuilderV3.java | 19 +- .../PublishResultsV3EventProcessorTest.java | 24 + .../PublishResultsDelegateV3Test.java | 60 + .../DeletedJudicialResultTransformerTest.java | 234 + .../RestructuringHelperV3Test.java | 97 +- .../helper/shared/RestructuringConstants.java | 3 + ...r_linked_app_with_deleted_resultlines.json | 1345 + ...sults-shared_with_deleted_resultlines.json | 741 + ...hared_with_deleted_resultlines_parent.json | 1633 + .../test/resources/result-definitions.json | 116308 ++++++++------- pom.xml | 4 +- 17 files changed, 70020 insertions(+), 50724 deletions(-) create mode 100644 hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java create mode 100644 hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java create mode 100644 hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json create mode 100644 hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json create mode 100644 hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json diff --git a/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java b/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java index 4cddcf0806..653e64ec06 100644 --- a/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java +++ b/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/event/nowsdomain/referencedata/resultdefinition/ResultDefinition.java @@ -106,6 +106,8 @@ public class ResultDefinition { private Boolean canExtendActiveOrder; private Boolean sentToCC; private Boolean committedToCC; + private Boolean isDeemedServed; + public static ResultDefinition resultDefinition() { return new ResultDefinition(); @@ -531,4 +533,12 @@ public ResultDefinition setCommittedToCC(final Boolean committedToCC) { this.committedToCC = committedToCC; return this; } + + public Boolean getIsDeemedServed() { + return isDeemedServed; + } + + public void setIsDeemedServed(final Boolean deemedServed) { + isDeemedServed = deemedServed; + } } diff --git a/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java b/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java index 45fc6b6018..ecf195457f 100644 --- a/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java +++ b/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/result/PublicHearingResultedV2.java @@ -67,4 +67,5 @@ public PublicHearingResultedV2 setHearingDay(final LocalDate hearingDay) { this.hearingDay = hearingDay; return this; } + } diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java index fdad7bc47c..0ed51902c4 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessor.java @@ -14,10 +14,6 @@ import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.Constants.RESULT_DEFINITION_NOT_FOUND_EXCEPTION_FORMAT; -import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.TypeUtils.getBooleanValue; -import static javax.json.Json.createObjectBuilder; -import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; -import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; import uk.gov.justice.core.courts.Address; import uk.gov.justice.core.courts.ContactNumber; @@ -422,16 +418,14 @@ private List> getTreeNodes(final JsonEnvelope context .collect(toList()); for (final ResultLine2 resultLine : allResultLines) { - if (Boolean.FALSE.equals(getBooleanValue(resultLine.getIsDeleted(), false))) { - final TreeNode resultDefinitionNode = referenceDataService.getResultDefinitionTreeNodeById(context, resultLine.getOrderedDate(), resultLine.getResultDefinitionId()); + final TreeNode resultDefinitionNode = referenceDataService.getResultDefinitionTreeNodeById(context, resultLine.getOrderedDate(), resultLine.getResultDefinitionId()); - if (isNull(resultDefinitionNode)) { - throw new ResultDefinitionNotFoundException(format(RESULT_DEFINITION_NOT_FOUND_EXCEPTION_FORMAT, - resultLine.getResultLineId(), resultLine.getResultDefinitionId(), resultsSharedV3.getHearingId(), resultLine.getOrderedDate())); - } - - treeNodes.add(resultDefinitionNode); + if (isNull(resultDefinitionNode)) { + throw new ResultDefinitionNotFoundException(format(RESULT_DEFINITION_NOT_FOUND_EXCEPTION_FORMAT, + resultLine.getResultLineId(), resultLine.getResultDefinitionId(), resultsSharedV3.getHearingId(), resultLine.getOrderedDate())); } + + treeNodes.add(resultDefinitionNode); } return treeNodes; } diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java index 2622583ceb..aeb4bd7f86 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3.java @@ -18,6 +18,7 @@ import static uk.gov.justice.core.courts.Level.OFFENCE; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.DeletedJudicialResultTransformer.toDeletedResults; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.CategoryEnumUtils.getCategory; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.TypeUtils.getBooleanValue; import static uk.gov.moj.cpp.hearing.event.helper.HearingHelper.getOffencesFromHearing; @@ -26,10 +27,8 @@ import uk.gov.justice.core.courts.CourtApplication; import uk.gov.justice.core.courts.DefendantJudicialResult; -import uk.gov.justice.core.courts.Hearing; import uk.gov.justice.core.courts.JudicialResult; import uk.gov.justice.core.courts.JudicialResultCategory; -import uk.gov.justice.core.courts.JudicialResultPrompt; import uk.gov.justice.core.courts.Offence; import uk.gov.justice.core.courts.Prompt; import uk.gov.justice.core.courts.ProsecutionCase; @@ -79,13 +78,6 @@ public class PublishResultsDelegateV3 { private static final Logger LOGGER = LoggerFactory.getLogger(PublishResultsDelegateV3.class.getName()); private static final String DDCH = "DDCH"; private static final String PRESS_ON = "PressOn"; - public static final String FIRST_HEARING_JUDICIAL_RESULT_TYPE_ID = "b3ed14c1-d921-459c-90fd-400a5d8d0076"; - public static final String CUSTODIAL_PERIOD_JUDICIAL_RESULT_TYPE_ID = "b65fb5f1-b11d-4a95-a198-3b81333c7cf9"; - public static final String SUSPENDED_SENTENCE_ORDER = "a78b50cc-0777-403d-8e51-5458e1ee3513, 8b1cff00-a456-40da-9ce4-f11c20959084"; - public static final String DRUG_REHABILITATION_RESIDENTIAL_WITH_REVIEW = "61ea03c9-c113-446b-a392-402144fcd9e8"; - public static final String DRUG_REHABILITATION_NON_RESIDENTIAL_WITH_REVIEW = "cc2cbb94-b75a-4a8c-9840-31c5f8007724"; - public static final String COMMUNITY_REQUIREMENT = "b2dab2b7-3edd-4223-b1be-3819173ec54d"; - public static final String COMMUNITY_ORDER = "418b3aa7-65ab-4a4a-bab9-2f96b698118c"; private final Enveloper enveloper; @@ -156,6 +148,7 @@ public void shareResults(final JsonEnvelope context, final Sender sender, final mapDefendantLevelDDCHJudicialResults(resultsShared, relistReferenceDataService.getResults(context, DDCH), orderedDate); } + final PublicHearingResultedV2 hearingResulted = PublicHearingResultedV2.publicHearingResultedV2() .setIsReshare(resultsShared.getIsReshare()) .setHearing(resultsShared.getHearing()) @@ -163,6 +156,11 @@ public void shareResults(final JsonEnvelope context, final Sender sender, final .setHearingDay(resultsShared.getHearingDay()) .setShadowListedOffences(getOffenceShadowListedForMagistratesNextHearing(resultsShared)); + final List> restructuredDeletedResults = this.restructuringHelper.getDeletedResults(context, resultsShared, treeNodes); + if (isNotEmpty(restructuredDeletedResults)) { + hearingResulted.getHearing().setDeletedJudicialResults(toDeletedResults(restructuredDeletedResults, resultsShared.getHearing())); + } + final JsonObject jsonObject = this.objectToJsonObjectConverter.convert(hearingResulted); final JsonEnvelope jsonEnvelope = envelopeFrom(metadataFrom(context.metadata()).withName("public.events.hearing.hearing-resulted"), jsonObject); if (LOGGER.isDebugEnabled()) { @@ -172,53 +170,6 @@ public void shareResults(final JsonEnvelope context, final Sender sender, final } - - private List getOffenceLevelJudicialResults(final Hearing hearing) { - return hearing.getProsecutionCases().stream() - .flatMap(prosecutionCase -> prosecutionCase.getDefendants().stream()) - .flatMap(defendant -> ofNullable(defendant.getOffences()).map(Collection::stream).orElseGet(Stream::empty)) - .filter(offence -> offence.getJudicialResults() != null) - .flatMap(offence -> ofNullable(offence.getJudicialResults()).map(Collection::stream).orElseGet(Stream::empty)).collect(toList()); - } - - - private String getResultValueFromPrompt(Hearing hearing, JudicialResult judicialResult, String promptRef) { - final Optional promptFromJudicialResult = judicialResult.getJudicialResultPrompts().stream().filter(jrPrompt -> promptRef.equals(jrPrompt.getPromptReference()) || jrPrompt.getLabel().equals(promptRef)).findFirst(); - if (promptFromJudicialResult.isPresent()) { - return promptFromJudicialResult.get().getValue(); - } else { - final JudicialResult parentJudicialResult = getRootParentResult(hearing.getProsecutionCases(), judicialResult); - if (parentJudicialResult != null) { - final Optional judicialResultPrompt = parentJudicialResult.getJudicialResultPrompts().stream().filter(jrPrompt -> promptRef.equals(jrPrompt.getPromptReference()) || jrPrompt.getLabel().equals(promptRef)).findFirst(); - if (judicialResultPrompt.isPresent()) { - return judicialResultPrompt.get().getValue(); - } else if (!parentJudicialResult.getJudicialResultId().equals(parentJudicialResult.getRootJudicialResultId())) { - getResultValueFromPrompt(hearing, parentJudicialResult, promptRef); - } - } - } - - return null; - } - - private JudicialResult getRootParentResult(List prosecutionCases, JudicialResult judicialResult) { - if (judicialResult == null) { - return null; - } else { - if (judicialResult.getJudicialResultId().equals(judicialResult.getRootJudicialResultId())) { - return judicialResult; - } - - final Optional judicialResultOptional = prosecutionCases.stream() - .flatMap(prosecutionCase -> prosecutionCase.getDefendants().stream()) - .flatMap(defendant -> ofNullable(defendant.getOffences()).map(Collection::stream).orElseGet(Stream::empty)) - .filter(offence -> offence.getJudicialResults() != null) - .flatMap(offence -> ofNullable(offence.getJudicialResults()).map(Collection::stream).orElseGet(Stream::empty)) - .filter(judicialResult1 -> judicialResult1.getJudicialResultId().equals(judicialResult.getRootJudicialResultId())).findFirst(); - return judicialResultOptional.orElse(null); - } - } - private List getOffenceShadowListedForMagistratesNextHearing(final ResultsSharedV3 resultsShared) { if (isNotEmpty(resultsShared.getHearing().getProsecutionCases()) && resultsShared.getHearing().getProsecutionCases().stream().flatMap(x -> x.getDefendants().stream()) .flatMap(def -> def.getOffences() != null ? def.getOffences().stream() : Stream.empty()) diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java new file mode 100644 index 0000000000..957e4c6118 --- /dev/null +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformer.java @@ -0,0 +1,169 @@ +package uk.gov.moj.cpp.hearing.event.delegates.helper; + +import static java.util.Objects.isNull; +import static java.util.Objects.nonNull; +import static org.apache.commons.collections.CollectionUtils.isNotEmpty; + +import uk.gov.justice.core.courts.ApplicationCaseResults; +import uk.gov.justice.core.courts.ApplicationCourtOrderResults; +import uk.gov.justice.core.courts.ApplicationResults; +import uk.gov.justice.core.courts.CourtApplication; +import uk.gov.justice.core.courts.DeletedJudicialResults; +import uk.gov.justice.core.courts.Hearing; +import uk.gov.justice.core.courts.ProsecutionCase; +import uk.gov.justice.core.courts.ProsecutionCaseResults; +import uk.gov.justice.core.courts.ResultLine2; +import uk.gov.moj.cpp.hearing.event.helper.TreeNode; + +import java.util.List; +import java.util.Optional; +import java.util.UUID; + +public class DeletedJudicialResultTransformer { + + public static DeletedJudicialResults toDeletedResults(final List> restructuredDeletedResults, final Hearing hearing) { + + final List prosecutionCaseResults = getProsecutionCaseResults(restructuredDeletedResults, hearing.getProsecutionCases()); + final List applicationResults = getApplicationResults(restructuredDeletedResults, hearing.getCourtApplications()); + final List applicationCaseResults = getApplicationCaseResults(restructuredDeletedResults, hearing.getCourtApplications()); + final List applicationCourtOrderResults = getApplicationCourtOrderResults(restructuredDeletedResults, hearing.getCourtApplications()); + + return DeletedJudicialResults.deletedJudicialResults() + .withProsecutionCaseResults(isNotEmpty(prosecutionCaseResults) ? prosecutionCaseResults : null) + .withApplicationResults(isNotEmpty(applicationResults) ? applicationResults : null) + .withApplicationCaseResults(isNotEmpty(applicationCaseResults) ? applicationCaseResults : null) + .withApplicationCourtOrderResults(isNotEmpty(applicationCourtOrderResults) ? applicationCourtOrderResults : null) + .build(); + } + + private static List getApplicationCourtOrderResults(final List> restructuredDeletedResults, final List courtApplications) { + + return restructuredDeletedResults.stream() + .filter(node -> nonNull(node.getJudicialResult())) + .filter(node -> node.getJudicialResult().getIsNewAmendment()) + .filter(node -> nonNull(node.getOffenceId()) && nonNull(node.getApplicationId())) + .filter(node -> isCourtOrderResult(node, courtApplications)) + .map(node -> ApplicationCourtOrderResults.applicationCourtOrderResults() + .withDefendantId(getDefendantId(node.getDefendantId(), node.getApplicationId(), courtApplications)) + .withApplicationId(node.getApplicationId()) + .withOffenceId(node.getOffenceId()) + .withJudicialResult(node.getJudicialResult()) + .build()) + .toList(); + } + + private static List getApplicationCaseResults(final List> restructuredDeletedResults, final List courtApplications) { + return restructuredDeletedResults.stream() + .filter(node -> nonNull(node.getJudicialResult())) + .filter(node -> node.getJudicialResult().getIsNewAmendment()) + .filter(node -> nonNull(node.getOffenceId()) && nonNull(node.getApplicationId())) + .filter(node -> isApplicationCaseResult(node, courtApplications)) + .map(node -> ApplicationCaseResults.applicationCaseResults() + .withDefendantId(getDefendantId(node.getDefendantId(), node.getApplicationId(), courtApplications)) + .withApplicationId(node.getApplicationId()) + .withOffenceId(node.getOffenceId()) + .withJudicialResult(node.getJudicialResult()) + .build()) + .toList(); + } + + private static List getApplicationResults(final List> restructuredDeletedResults, final List courtApplications) { + return restructuredDeletedResults.stream() + .filter(node -> nonNull(node.getJudicialResult())) + .filter(node -> node.getJudicialResult().getIsNewAmendment()) + .filter(node -> isNull(node.getOffenceId())) + .filter(node -> isApplicationResult(node, courtApplications)) + .map(node -> ApplicationResults.applicationResults() + .withDefendantId(getDefendantId(node.getDefendantId(), node.getApplicationId(), courtApplications)) + .withApplicationId(node.getApplicationId()) + .withJudicialResult(node.getJudicialResult()) + .build()) + .toList(); + } + + private static List getProsecutionCaseResults(final List> restructuredDeletedResults, final List prosecutionCases) { + return restructuredDeletedResults.stream() + .filter(node -> nonNull(node.getJudicialResult())) + .filter(node -> node.getJudicialResult().getIsNewAmendment()) + .filter(node -> isNull(node.getApplicationId())) + .map(node -> ProsecutionCaseResults.prosecutionCaseResults() + .withDefendantId(node.getDefendantId()) + .withOffenceId(node.getOffenceId()) + .withJudicialResult(node.getJudicialResult()) + .build()) + .toList(); + } + + private static UUID getDefendantId(final UUID defendantId, final UUID applicationId, final List courtApplications) { + if (nonNull(defendantId)) { + return defendantId; + } + //liked applications + if (isNotEmpty(courtApplications) && nonNull(applicationId)) { + final Optional defendantOnSubject = fromSubject(applicationId, courtApplications); + if (defendantOnSubject.isPresent()) { + return defendantOnSubject.get(); + } + final Optional defendantOnApplicant = fromApplicant(applicationId, courtApplications); + if (defendantOnApplicant.isPresent()) { + return defendantOnApplicant.get(); + } + final Optional defendantOnRespondents = fromRespondent(applicationId, courtApplications); + if (defendantOnRespondents.isPresent()) { + return defendantOnRespondents.get(); + } + } + return null; + } + + private static Optional fromSubject(final UUID applicationId, final List courtApplications) { + return courtApplications.stream() + .filter(ca -> applicationId.equals(ca.getId())) + .filter(ca -> nonNull(ca.getSubject()) && nonNull(ca.getSubject().getMasterDefendant()) + && isNotEmpty(ca.getSubject().getMasterDefendant().getDefendantCase())) + .map(ca -> ca.getSubject().getMasterDefendant().getDefendantCase().get(0).getDefendantId()) + .findFirst(); + } + + private static Optional fromApplicant(final UUID applicationId, final List courtApplications) { + return courtApplications.stream() + .filter(ca -> applicationId.equals(ca.getId())) + .filter(ca -> nonNull(ca.getApplicant()) && nonNull(ca.getApplicant().getMasterDefendant()) + && isNotEmpty(ca.getApplicant().getMasterDefendant().getDefendantCase())) + .map(ca -> ca.getApplicant().getMasterDefendant().getDefendantCase().get(0).getDefendantId()) + .findFirst(); + } + + private static Optional fromRespondent(final UUID applicationId, final List courtApplications) { + return courtApplications.stream() + .filter(ca -> applicationId.equals(ca.getId())) + .filter(ca -> nonNull(ca.getRespondents())) + .flatMap(ca -> ca.getRespondents().stream()) + .filter(resp -> nonNull(resp.getMasterDefendant()) + && isNotEmpty(resp.getMasterDefendant().getDefendantCase())) + .map(resp -> resp.getMasterDefendant().getDefendantCase().get(0).getDefendantId()) + .findFirst(); + } + + private static boolean isCourtOrderResult(final TreeNode node, final List courtApplications) { + return isNotEmpty(courtApplications) && courtApplications.stream() + .filter(ca -> ca.getId().equals(node.getApplicationId())) + .filter(ca -> nonNull(ca.getCourtOrder()) && isNotEmpty(ca.getCourtOrder().getCourtOrderOffences())) + .flatMap(ca -> ca.getCourtOrder().getCourtOrderOffences().stream()) + .anyMatch(coo -> coo.getOffence().getId().equals(node.getOffenceId())); + } + + private static boolean isApplicationCaseResult(final TreeNode node, final List courtApplications) { + return isNotEmpty(courtApplications) && courtApplications.stream() + .filter(ca -> ca.getId().equals(node.getApplicationId())) + .filter(ca -> isNotEmpty(ca.getCourtApplicationCases())) + .flatMap(ca -> ca.getCourtApplicationCases().stream()) + .flatMap(cac -> cac.getOffences().stream()) + .anyMatch(caco -> caco.getId().equals(node.getOffenceId())); + } + + private static boolean isApplicationResult(final TreeNode node, final List courtApplications) { + return isNotEmpty(courtApplications) && courtApplications.stream() + .anyMatch(ca -> ca.getId().equals(node.getApplicationId())); + } +} diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java index c9c962ac3e..e15904ca9e 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3.java @@ -19,7 +19,6 @@ import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.RollUpPromptsHelperV3.filterNodesWithRollUpPrompts; import static uk.gov.moj.cpp.hearing.event.delegates.helper.restructure.shared.Constants.EXCLUDED_PROMPT_REFERENCE; - import uk.gov.justice.core.courts.JudicialResultPrompt; import uk.gov.justice.core.courts.ResultLine2; import uk.gov.justice.services.messaging.JsonEnvelope; @@ -47,9 +46,18 @@ public RestructuringHelperV3(final ResultTreeBuilderV3 resultTreeBuilder, final this.resultTextConfHelper = resultTextConfHelper; } + public List> getDeletedResults(final JsonEnvelope context, final ResultsSharedV3 resultsShared, final List> treeNodesResultDefinition) { + final List> treeNodesOrg = resultTreeBuilder.buildDeleted(context, resultsShared, treeNodesResultDefinition); + return updatePublishForNows(treeNodesOrg); + } + public List> restructure(final JsonEnvelope context, final ResultsSharedV3 resultsShared, final List> treeNodesResultDefinition) { final List> treeNodesOrg = resultTreeBuilder.build(context, resultsShared, treeNodesResultDefinition); + return updatePublishForNows(treeNodesOrg); + } + + private List> updatePublishForNows(final List> treeNodesOrg) { final List> publishedForNowsNodes = getNodesWithPublishedForNows(treeNodesOrg); @@ -70,7 +78,7 @@ public List> restructure(final JsonEnvelope context, final } private List> prepareTreeNodes(final List> treeNodes) { - if(resultTextConfHelper.isOldResultDefinitionV2(treeNodes)){ + if (resultTextConfHelper.isOldResultDefinitionV2(treeNodes)) { updateResultText( removeNonPublishableResults( restructureNextHearing( @@ -107,6 +115,7 @@ private List> prepareTreeNodes(final List> treeNodes) { @@ -129,7 +138,7 @@ private void updateResultText(final List> treeNodeList) { }); } - private List> updateResultTextWithNewLogic(final List> treeNodeList) { + private List> updateResultTextWithNewLogic(final List> treeNodeList) { ResultTextHelperV3.setResultText(treeNodeList, resultTextConfHelper); return treeNodeList; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java index 79243e4c8c..4989376cdf 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/ResultTreeBuilderV3.java @@ -53,6 +53,7 @@ import java.util.Optional; import java.util.Set; import java.util.UUID; +import java.util.function.Predicate; import java.util.stream.Collectors; import javax.inject.Inject; @@ -63,6 +64,8 @@ public class ResultTreeBuilderV3 { private final NextHearingHelperV3 nextHearingHelper; private final ResultLineHelperV3 resultLineHelper; private ResultTextConfHelper resultTextConfHelper; + private final Predicate resultLinesNotDeletedPredicate = resultLine -> !getBooleanValue(resultLine.getIsDeleted(), false); + private final Predicate resultLinesDeletedPredicate = resultLine -> getBooleanValue(resultLine.getIsDeleted(), false); @Inject @@ -74,7 +77,13 @@ public ResultTreeBuilderV3(final ReferenceDataService referenceDataService, fina } public List> build(final JsonEnvelope envelope, final ResultsSharedV3 resultsShared, final List> resultDefinitionTreeNods ) { - final Map> resultLinesMap = getTreeNodeMap(envelope, resultsShared,resultDefinitionTreeNods); + final Map> resultLinesMap = getTreeNodeMap(envelope, resultsShared,resultDefinitionTreeNods, resultLinesNotDeletedPredicate); + final Map> resultLinesMapWithRelations = mapTreeNodeRelations(resultLinesMap); + return new ArrayList<>(orderResult(resultLinesMapWithRelations)); + } + + public List> buildDeleted(final JsonEnvelope envelope, final ResultsSharedV3 resultsShared, final List> resultDefinitionTreeNods ) { + final Map> resultLinesMap = getTreeNodeMap(envelope, resultsShared,resultDefinitionTreeNods, resultLinesDeletedPredicate); final Map> resultLinesMapWithRelations = mapTreeNodeRelations(resultLinesMap); return new ArrayList<>(orderResult(resultLinesMapWithRelations)); } @@ -96,7 +105,8 @@ private Map> mapTreeNodeRelations(final Map> getTreeNodeMap(final JsonEnvelope context, final ResultsSharedV3 resultsShared, final List> resultDefinitionNodes) { + private Map> getTreeNodeMap(final JsonEnvelope context, final ResultsSharedV3 resultsShared, + final List> resultDefinitionNodes, final Predicate resultLinesPredicate) { final Map> result = new HashMap<>(); final List allResultLines = resultsShared.getTargets().stream() .flatMap(t -> t.getResultLines().stream()) @@ -109,7 +119,7 @@ private Map> getTreeNodeMap(final JsonEnvelope conte final List resultLines = target.getResultLines(); resultLines .stream() - .filter(resultLine -> !getBooleanValue(resultLine.getIsDeleted(), false)) + .filter(resultLinesPredicate) .forEach(resultLine -> { final TreeNode resultDefinitionNode = resultDefinitionNodes.stream() .filter(rdt -> rdt.getData().getId().equals(resultLine.getResultDefinitionId())) @@ -212,7 +222,8 @@ private Builder getJudicialBuilder(final ResultLine2 resultLine, final Hearing h .withPreserveActiveOrder(getBooleanValue(resultDefinition.getPreserveActiveOrder(), false)) .withCanExtendActiveOrder(getBooleanValue(resultDefinition.getCanExtendActiveOrder(), false)) .withCommittedToCC(getBooleanValue(resultDefinition.getCommittedToCC(), false)) - .withSentToCC(getBooleanValue(resultDefinition.getSentToCC(), false)); + .withSentToCC(getBooleanValue(resultDefinition.getSentToCC(), false)) + .withIsDeemedServed(resultDefinition.getIsDeemedServed()); if(resultTextConfHelper.isOldResultDefinition(resultLine.getOrderedDate())) { judicialResult.withResultText(ResultTextHelperV3.getResultText(resultDefinition, resultLine)); } diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java index 2406f7acfb..17a9f2f127 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/PublishResultsV3EventProcessorTest.java @@ -4,12 +4,15 @@ import static org.hamcrest.MatcherAssert.assertThat; 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.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.test.utils.core.messaging.MetadataBuilderFactory.metadataWithRandomUUID; import static uk.gov.moj.cpp.hearing.event.NowsTemplates.resultsSharedV3Template; +import static uk.gov.moj.cpp.hearing.test.CoreTestTemplates.resultLine2; +import uk.gov.justice.core.courts.ResultLine2; import uk.gov.justice.hearing.courts.referencedata.OrganisationalUnit; import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; import uk.gov.justice.services.common.converter.ObjectToJsonObjectConverter; @@ -106,6 +109,27 @@ public void shouldHandleShareResult() { } + @Test + public void shouldHandleShareResultWithDeletedResultLines() { + final ResultsSharedV3 resultsSharedV3 = resultsSharedV3Template(); + final ResultLine2 deletedResultLine = resultLine2(randomUUID()); + deletedResultLine.setIsDeleted(Boolean.TRUE); + resultsSharedV3.getTargets().get(0).getResultLines().add(deletedResultLine); + final TreeNode resultDefinitionTreeNode = new TreeNode<>(randomUUID(), new ResultDefinition()); + + final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.events.results-shared-v3"), objectToJsonObjectConverter.convert(resultsSharedV3)); + + when(referenceDataLoader.getOrganisationUnitById(eq(resultsSharedV3.getHearing().getCourtCentre().getId()))).thenReturn(buildOrganisationalUnit()); + when(newTargetToLegacyTargetConverter.convert(any())).thenReturn((resultsSharedV3.getTargets())); + when(jsonObjectToObjectConverter.convert(event.payloadAsJsonObject(), ResultsSharedV3.class)).thenReturn(resultsSharedV3); + when(referenceDataService.getResultDefinitionTreeNodeById(any(), any(), any())).thenReturn(resultDefinitionTreeNode); + + publishResultsEventProcessor.resultsShared(event); + + verify(referenceDataService, times(2)).getResultDefinitionTreeNodeById(any(), any(), any()); + verify(publishResultsDelegate).shareResults(any(), any(), any(), any()); + } + @Test public void shouldHandleShareResultSuccess() { final UUID hearingId = randomUUID(); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java index b00c3b6914..5f3195ac74 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegateV3Test.java @@ -21,11 +21,13 @@ import uk.gov.justice.core.courts.Defendant; import uk.gov.justice.core.courts.DefendantJudicialResult; +import uk.gov.justice.core.courts.DelegatedPowers; import uk.gov.justice.core.courts.Hearing; import uk.gov.justice.core.courts.JudicialResult; import uk.gov.justice.core.courts.NextHearing; import uk.gov.justice.core.courts.Offence; import uk.gov.justice.core.courts.ResultLine2; +import uk.gov.justice.core.courts.Target2; import uk.gov.justice.hearing.courts.referencedata.CourtCentreOrganisationUnit; import uk.gov.justice.hearing.courts.referencedata.Courtrooms; import uk.gov.justice.services.core.sender.Sender; @@ -46,7 +48,10 @@ import uk.gov.moj.cpp.hearing.test.FileResourceObjectMapper; import java.io.IOException; +import java.time.LocalDate; import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; import java.util.List; import java.util.UUID; import java.util.stream.Collectors; @@ -327,6 +332,61 @@ public void shouldUpdateCaseDefendantDrivingLicenseNumber() throws Exception { assertEquals("DVL1234", resultsShared.getHearing().getProsecutionCases().get(0).getDefendants().get(0).getPersonDefendant().getDriverNumber()); } + @Test + public void shouldGetIsDeemedFromResultDefinitionAndAddToResultsSharedV3() throws Exception { + final ResultDefinition resultDefinitionWithDeemedServed = resultDefinitions.stream() + .filter(rd -> rd.getId().toString().equals("de946ddc-ad77-44b1-8480-8bbc251cdcfb")) + .findFirst() + .orElseThrow(() -> new RuntimeException("Result definition with isDeemedServed not found")); + assertTrue(resultDefinitionWithDeemedServed.getIsDeemedServed()); + + final ResultsSharedV3 resultsShared = resultsSharedWithDeemedServed(); + final JsonEnvelope envelope = getEnvelope(resultsShared); + final List> treeNodes = new ArrayList<>(); + TreeNode resultDefinitionTreeNode = new TreeNode(resultDefinitionWithDeemedServed.getId(), resultDefinitions); + resultDefinitionTreeNode.setResultDefinitionId(resultDefinitionWithDeemedServed.getId()); + resultDefinitionTreeNode.setData(resultDefinitionWithDeemedServed); + treeNodes.add(resultDefinitionTreeNode); + final List> resultTree = resultTreeBuilder.build(envelope, resultsShared, treeNodes); + assertTrue(resultTree.stream().anyMatch(node -> + node.getData().getResultDefinitionId().equals(resultDefinitionWithDeemedServed.getId()))); + final TreeNode treeNode = resultTree.get(0); + final JudicialResult judicialResult = treeNode.getJudicialResult(); + assertTrue(judicialResult.getIsDeemedServed()); + } + + private ResultsSharedV3 resultsSharedWithDeemedServed() { + final ResultLine2 resultLine = ResultLine2.resultLine2() + .withResultLineId(UUID.randomUUID()) + .withResultDefinitionId(UUID.fromString("de946ddc-ad77-44b1-8480-8bbc251cdcfb")) + .withOrderedDate(LocalDate.now()) + .withPrompts(new ArrayList<>()) + .build(); + + final Target2 target = Target2.target2() + .withResultLines(Collections.singletonList(resultLine)) + .build(); + + final Hearing hearing = Hearing.hearing() + .withId(UUID.randomUUID()) + .withProsecutionCases(Collections.emptyList()) + .build(); + + final DelegatedPowers courtClerk = DelegatedPowers.delegatedPowers() + .withUserId(UUID.randomUUID()) + .withFirstName("Test") + .withLastName("Clerk") + .build(); + + return ResultsSharedV3.builder() + .withHearing(hearing) + .withCourtClerk(courtClerk) + .withTargets(Collections.singletonList(target)) + .withCompletedResultLinesStatus(new HashMap<>()) + .withNewAmendmentResults(new ArrayList<>()) + .build(); + } + @Test public void shouldUpdateApplicationDefendantDrivingLicenseNumber() throws Exception { final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(HEARING_APPLICATION_RESULTS_SHARED_WITH_DRIVINGLICENCENUMBER_JSON, ResultsSharedV3.class); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java new file mode 100644 index 0000000000..cb47dc5e8c --- /dev/null +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/DeletedJudicialResultTransformerTest.java @@ -0,0 +1,234 @@ +package uk.gov.moj.cpp.hearing.event.delegates.helper; + +import static java.lang.Boolean.TRUE; +import static java.util.UUID.randomUUID; +import static org.hamcrest.CoreMatchers.notNullValue; +import static org.hamcrest.CoreMatchers.nullValue; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.containsInAnyOrder; +import static org.hamcrest.core.Is.is; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; +import static uk.gov.justice.core.courts.CourtApplication.courtApplication; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.DeletedJudicialResultTransformer.toDeletedResults; + +import uk.gov.justice.core.courts.CourtApplicationCase; +import uk.gov.justice.core.courts.CourtOrder; +import uk.gov.justice.core.courts.CourtOrderOffence; +import uk.gov.justice.core.courts.Defendant; +import uk.gov.justice.core.courts.DefendantJudicialResult; +import uk.gov.justice.core.courts.DeletedJudicialResults; +import uk.gov.justice.core.courts.Hearing; +import uk.gov.justice.core.courts.JudicialResult; +import uk.gov.justice.core.courts.Offence; +import uk.gov.justice.core.courts.ProsecutionCase; +import uk.gov.justice.core.courts.ResultLine2; +import uk.gov.moj.cpp.hearing.event.helper.TreeNode; + +import java.util.List; +import java.util.UUID; + +import org.junit.jupiter.api.Test; + +public class DeletedJudicialResultTransformerTest { + + @Test + public void givenDeletedDefendantLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { + final UUID defendantId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing().withDefendantJudicialResults(List.of(DefendantJudicialResult.defendantJudicialResult() + .withDefendantId(defendantId).build())).build(); + when(mockNode.getDefendantId()).thenReturn(defendantId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getProsecutionCaseResults().size(), is(1)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getDefendantId(), is(defendantId)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getJudicialResult(), is(notNullValue())); + } + + @Test + public void givenDeletedDefendantLevelJrs_whenTransformedToDeletedJudicialResults_andNoMatchFound_shouldReturnNullProsecutionCaseResults() { + final UUID defendantId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing().withDefendantJudicialResults(List.of(DefendantJudicialResult.defendantJudicialResult() + .withDefendantId(defendantId).build())).build(); + when(mockNode.getDefendantId()).thenReturn(randomUUID()); + when(mockNode.getApplicationId()).thenReturn(randomUUID()); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getProsecutionCaseResults(), is(nullValue())); + } + + @Test + public void givenDeletedDefendantCaseLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { + final UUID defendantId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing() + .withProsecutionCases(List.of( + ProsecutionCase.prosecutionCase().withDefendants(List.of(Defendant.defendant() + .withId(defendantId) + .build())).build() + )) + .build(); + when(mockNode.getDefendantId()).thenReturn(defendantId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getProsecutionCaseResults().size(), is(1)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getDefendantId(), is(defendantId)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getJudicialResult(), is(notNullValue())); + } + + @Test + public void givenOffenceLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { + final UUID defendantId = randomUUID(); + final UUID resultLineId = randomUUID(); + final UUID offenceId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing() + .withProsecutionCases(List.of( + ProsecutionCase.prosecutionCase().withDefendants(List.of(Defendant.defendant() + .withId(defendantId) + .withOffences(List.of(Offence.offence().withId(offenceId) + .build())) + .build())).build() + )) + .build(); + when(mockNode.getDefendantId()).thenReturn(defendantId); + when(mockNode.getOffenceId()).thenReturn(offenceId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getProsecutionCaseResults().size(), is(1)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getDefendantId(), is(defendantId)); + assertThat(deletedResults.getProsecutionCaseResults().get(0).getJudicialResult(), is(notNullValue())); + } + + @Test + public void givenMultipleOffenceLevelJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInProsecutionCaseResults() { + final UUID defendantId = randomUUID(); + final UUID resultLineId1 = randomUUID(); + final UUID resultLineId2 = randomUUID(); + final UUID offenceId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final TreeNode mockNode2 = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode, mockNode2); + + final Hearing hearing = Hearing.hearing() + .withProsecutionCases(List.of( + ProsecutionCase.prosecutionCase().withDefendants(List.of(Defendant.defendant() + .withId(defendantId) + .withOffences(List.of(Offence.offence().withId(offenceId) + .build())) + .build())).build() + )) + .build(); + when(mockNode.getDefendantId()).thenReturn(defendantId); + when(mockNode.getOffenceId()).thenReturn(offenceId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId1).withIsNewAmendment(TRUE).build()); + + when(mockNode2.getDefendantId()).thenReturn(defendantId); + when(mockNode2.getOffenceId()).thenReturn(offenceId); + when(mockNode2.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId2).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getProsecutionCaseResults().size(), is(2)); + assertThat(deletedResults.getProsecutionCaseResults().stream().allMatch(pc -> pc.getDefendantId().equals(defendantId)), is(true)); + assertThat(deletedResults.getProsecutionCaseResults().stream().allMatch(pc -> pc.getOffenceId().equals(offenceId)), is(true)); + assertThat(deletedResults.getProsecutionCaseResults().stream().map(pc -> pc.getJudicialResult().getJudicialResultId()).toList(), containsInAnyOrder(resultLineId1, resultLineId2)); + } + + @Test + public void givenApplicationJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInApplicationResults() { + final UUID applicationId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing() + .withCourtApplications(List.of(courtApplication().withId(applicationId).build())) + .build(); + when(mockNode.getApplicationId()).thenReturn(applicationId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getApplicationResults().size(), is(1)); + assertThat(deletedResults.getApplicationResults().get(0).getApplicationId(), is(applicationId)); + assertThat(deletedResults.getApplicationResults().get(0).getJudicialResult(), is(notNullValue())); + } + + @Test + public void givenApplicationCaseJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInApplicationResults() { + final UUID applicationId = randomUUID(); + final UUID offenceId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing() + .withCourtApplications(List.of(courtApplication().withId(applicationId) + .withCourtApplicationCases(List.of(CourtApplicationCase.courtApplicationCase() + .withOffences(List.of(Offence.offence() + .withId(offenceId).build())) + .build())).build())) + .build(); + when(mockNode.getApplicationId()).thenReturn(applicationId); + when(mockNode.getOffenceId()).thenReturn(offenceId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getApplicationCaseResults().size(), is(1)); + assertThat(deletedResults.getApplicationCaseResults().get(0).getApplicationId(), is(applicationId)); + assertThat(deletedResults.getApplicationCaseResults().get(0).getJudicialResult(), is(notNullValue())); + } + + @Test + public void givenApplicationCourtOrderJrs_whenTransformedToDeletedJudicialResults_shouldIncludeInApplicationResults() { + final UUID applicationId = randomUUID(); + final UUID offenceId = randomUUID(); + final UUID resultLineId = randomUUID(); + final TreeNode mockNode = mock(TreeNode.class); + final List> restructuredResults = List.of(mockNode); + + final Hearing hearing = Hearing.hearing() + .withCourtApplications(List.of(courtApplication().withId(applicationId) + .withCourtOrder(CourtOrder.courtOrder() + .withCourtOrderOffences(List.of(CourtOrderOffence.courtOrderOffence() + .withOffence(Offence.offence().withId(offenceId) + .build()) + .build())) + .build()) + + .build())) + .build(); + when(mockNode.getApplicationId()).thenReturn(applicationId); + when(mockNode.getOffenceId()).thenReturn(offenceId); + when(mockNode.getJudicialResult()).thenReturn(JudicialResult.judicialResult().withJudicialResultId(resultLineId).withIsNewAmendment(TRUE).build()); + + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredResults, hearing); + + assertThat(deletedResults.getApplicationCourtOrderResults().size(), is(1)); + assertThat(deletedResults.getApplicationCourtOrderResults().get(0).getApplicationId(), is(applicationId)); + assertThat(deletedResults.getApplicationCourtOrderResults().get(0).getJudicialResult(), is(notNullValue())); + } +} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java index 5cf039892f..bbe04dc789 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/restructure/RestructuringHelperV3Test.java @@ -1,16 +1,24 @@ package uk.gov.moj.cpp.hearing.event.delegates.helper.restructure; +import static net.bytebuddy.matcher.ElementMatchers.anyOf; import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.is; +import static org.hamcrest.Matchers.nullValue; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; import static uk.gov.justice.services.test.utils.core.reflection.ReflectionUtil.setField; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.DeletedJudicialResultTransformer.toDeletedResults; import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_DATEORDERS_HEARING_JSON; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_DELETED_RESULTLINES_JSON; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_DELETED_RESULTLINES_PARENT_JSON; +import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_LINKED_APP_DELETED_RESULTLINES_JSON; import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_NEW_REVIEW_HEARING_ALWAYS_PUBLISHED_LEAF_NODE_JSON; import static uk.gov.moj.cpp.hearing.event.delegates.helper.shared.RestructuringConstants.HEARING_RESULTS_NEW_REVIEW_HEARING_JSON; +import uk.gov.justice.core.courts.DeletedJudicialResults; import uk.gov.justice.core.courts.HearingType; import uk.gov.justice.core.courts.JudicialResultPrompt; import uk.gov.justice.core.courts.ResultLine2; @@ -26,11 +34,14 @@ import java.util.List; import java.util.UUID; import java.util.stream.Collectors; +import java.util.stream.Stream; import org.apache.commons.lang3.StringUtils; import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.Arguments; +import org.junit.jupiter.params.provider.MethodSource; import org.mockito.Mockito; import org.mockito.junit.jupiter.MockitoSettings; import org.mockito.quality.Strictness; @@ -55,19 +66,19 @@ public void setUp() throws IOException { public void shouldPublishWhenAlwaysPublishedIsALeafNode() throws IOException { final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(HEARING_RESULTS_NEW_REVIEW_HEARING_ALWAYS_PUBLISHED_LEAF_NODE_JSON, ResultsSharedV3.class); final JsonEnvelope envelope = getEnvelope(resultsShared); - List resultDefinitionIds=resultsShared.getTargets().stream() - .flatMap(t->t.getResultLines().stream()) + List resultDefinitionIds = resultsShared.getTargets().stream() + .flatMap(t -> t.getResultLines().stream()) .map(ResultLine2::getResultDefinitionId) .collect(Collectors.toList()); final List> treeNodes = new ArrayList<>(); - for(UUID resulDefinitionId:resultDefinitionIds){ - TreeNode resultDefinitionTreeNode=new TreeNode(resulDefinitionId,resultDefinitions); - resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); - resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); - treeNodes.add(resultDefinitionTreeNode); - } + for (UUID resulDefinitionId : resultDefinitionIds) { + TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); + resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); + resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); + treeNodes.add(resultDefinitionTreeNode); + } final List> restructuredTree = target.restructure(envelope, resultsShared, treeNodes); @@ -100,15 +111,15 @@ public void shouldPublishWhenAlwaysPublishedIsAnIntermediaryNodeWhenLeafNodePubl assertThat(rl2.getPrompts().size(), is(3)); assertThat(firstReviewResultLint.getPrompts().size(), is(12)); - List resultDefinitionIds=resultsShared.getTargets().stream() - .flatMap(t->t.getResultLines().stream()) + List resultDefinitionIds = resultsShared.getTargets().stream() + .flatMap(t -> t.getResultLines().stream()) .map(ResultLine2::getResultDefinitionId) .collect(Collectors.toList()); final List> treeNodes = new ArrayList<>(); - for(UUID resulDefinitionId:resultDefinitionIds){ - TreeNode resultDefinitionTreeNode=new TreeNode(resulDefinitionId,resultDefinitions); + for (UUID resulDefinitionId : resultDefinitionIds) { + TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); treeNodes.add(resultDefinitionTreeNode); @@ -140,15 +151,15 @@ public void ShouldReturnResultTextForEachOrderedDateCorrectly() throws IOExcepti final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(HEARING_RESULTS_DATEORDERS_HEARING_JSON, ResultsSharedV3.class); final JsonEnvelope envelope = getEnvelope(resultsShared); - List resultDefinitionIds=resultsShared.getTargets().stream() - .flatMap(t->t.getResultLines().stream()) + List resultDefinitionIds = resultsShared.getTargets().stream() + .flatMap(t -> t.getResultLines().stream()) .map(ResultLine2::getResultDefinitionId) .collect(Collectors.toList()); final List> treeNodes = new ArrayList<>(); - for(UUID resulDefinitionId:resultDefinitionIds){ - TreeNode resultDefinitionTreeNode=new TreeNode(resulDefinitionId,resultDefinitions); + for (UUID resulDefinitionId : resultDefinitionIds) { + TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); treeNodes.add(resultDefinitionTreeNode); @@ -163,6 +174,58 @@ public void ShouldReturnResultTextForEachOrderedDateCorrectly() throws IOExcepti restructuredTree.forEach(resultLine2TreeNode -> assertNotNull(resultLine2TreeNode.getJudicialResult().getResultText())); + } + + @ParameterizedTest + @MethodSource("amendmentsWithDeletedResults") + void ShouldReturnDeletedResultLines(final String resultsSharedEventPayloadFile, final int deletedProsecutionCaseResultsCount, final int deletedApplicationResultsCount, + final int deletedApplicationCaseResultsCount, + final int deletedApplicationCourtOrderResultsCount) throws IOException { + + final ResultsSharedV3 resultsShared = fileResourceObjectMapper.convertFromFile(resultsSharedEventPayloadFile, ResultsSharedV3.class); + final JsonEnvelope envelope = getEnvelope(resultsShared); + + final List resultDefinitionIds = resultsShared.getTargets().stream() + .flatMap(t -> t.getResultLines().stream()) + .map(ResultLine2::getResultDefinitionId) + .toList(); + + final List> treeNodes = new ArrayList<>(); + + for (UUID resulDefinitionId : resultDefinitionIds) { + TreeNode resultDefinitionTreeNode = new TreeNode(resulDefinitionId, resultDefinitions); + resultDefinitionTreeNode.setResultDefinitionId(resulDefinitionId); + resultDefinitionTreeNode.setData(resultDefinitions.stream().filter(resultDefinition -> resultDefinition.getId().equals(resulDefinitionId)).findFirst().get()); + treeNodes.add(resultDefinitionTreeNode); + } + when(hearingTypeReverseLookup.getHearingTypeByName(any(), any())).thenReturn(HearingType.hearingType().withDescription("REV").build()); + ResultTextConfHelper resultTextConfHelper = new ResultTextConfHelper(); + setField(resultTextConfHelper, "liveDateOfResultTextTemplateConf", "01042023"); + resultTextConfHelper.setDate(); + resultTreeBuilder = new ResultTreeBuilderV3(referenceDataService, nextHearingHelperV3, resultLineHelperV3, resultTextConfHelper); + target = new RestructuringHelperV3(resultTreeBuilder, resultTextConfHelper); + final List> restructuredTree = target.getDeletedResults(envelope, resultsShared, treeNodes); + final DeletedJudicialResults deletedResults = toDeletedResults(restructuredTree, resultsShared.getHearing()); + + assertResultList(deletedResults.getProsecutionCaseResults(), deletedProsecutionCaseResultsCount); + assertResultList(deletedResults.getApplicationResults(), deletedApplicationResultsCount); + assertResultList(deletedResults.getApplicationCaseResults(), deletedApplicationCaseResultsCount); + assertResultList(deletedResults.getApplicationCourtOrderResults(), deletedApplicationCourtOrderResultsCount); + } + public static Stream amendmentsWithDeletedResults() { + return Stream.of( + Arguments.of(HEARING_RESULTS_DELETED_RESULTLINES_PARENT_JSON, 1, 0, 0, 0), + Arguments.of(HEARING_RESULTS_DELETED_RESULTLINES_JSON, 1, 0, 0, 0), + Arguments.of(HEARING_RESULTS_LINKED_APP_DELETED_RESULTLINES_JSON, 0, 4, 0, 0) + ); + } + + private void assertResultList(final List results, final int expectedCount){ + if (expectedCount == 0) { + assertThat(results, nullValue()); + } else { + assertThat(results.size(), is(expectedCount)); + } } } diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java index 3126767d28..425f6dd1cb 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/shared/RestructuringConstants.java @@ -29,6 +29,9 @@ public class RestructuringConstants { public static final String HEARING_RESULTS_NEW_REVIEW_HEARING_JSON = "hearing.results-shared_new_review_hearing.json"; public static final String HEARING_RESULTS_NEW_REVIEW_HEARING_DEFENDANT_LEVEL_RESULTS_JSON = "hearing.results-shared_new_review_hearing_defendant_level_results.json"; public static final String HEARING_RESULTS_DATEORDERS_HEARING_JSON = "hearing.results-shared_with_orderedDates_hearing.json"; + public static final String HEARING_RESULTS_DELETED_RESULTLINES_JSON = "hearing.results-shared_with_deleted_resultlines.json"; + public static final String HEARING_RESULTS_LINKED_APP_DELETED_RESULTLINES_JSON = "hearing.results-shared_for_linked_app_with_deleted_resultlines.json"; + public static final String HEARING_RESULTS_DELETED_RESULTLINES_PARENT_JSON = "hearing.results-shared_with_deleted_resultlines_parent.json"; public static final String HEARING_RESULTS_HEARING_JSON = "hearing.events.results-shared-v3.json"; public static final String HEARING_CASE_RESULTS_SHARED_WITH_DRIVINGLICENCENUMBER_JSON = "hearing.case-results-shared_with_drivinglicencenumber.json"; public static final String HEARING_APPLICATION_RESULTS_SHARED_WITH_DRIVINGLICENCENUMBER_JSON = "hearing.application-results-shared_with_drivinglicencenumber.json"; diff --git a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json new file mode 100644 index 0000000000..85929621dc --- /dev/null +++ b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_for_linked_app_with_deleted_resultlines.json @@ -0,0 +1,1345 @@ +{ + "hearingId": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", + "sharedTime": "2025-09-19T16:02:11.893Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + }, + "hearing": { + "courtApplications": [ + { + "applicant": { + "id": "31bbd5fd-d058-421b-a090-1e58a9c78d19", + "masterDefendant": { + "defendantCase": [ + { + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "caseReference": "28DI6500116", + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d" + } + ], + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "personDefendant": { + "arrestSummonsNumber": "D28GC01126500116", + "bailStatus": { + "code": "A", + "description": "Not applicable", + "id": "86009c70-759d-3308-8de4-194886ff9a77" + }, + "driverNumber": "VANFL002222OW9PH", + "personDetails": { + "address": { + "address1": "9999A9899AAAA", + "address2": "Woodlane4", + "address3": "addressline 3", + "address4": "Bristol", + "address5": "Avon", + "postcode": "BS1 1JQ" + }, + "contact": { + "home": "0206500116", + "mobile": "07776500116", + "primaryEmail": "firstName.lastName6500116@gmail.com" + }, + "dateOfBirth": "1972-11-01", + "documentationLanguageNeeds": "ENGLISH", + "ethnicity": { + "observedEthnicityCode": "1", + "observedEthnicityDescription": "White", + "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", + "selfDefinedEthnicityCode": "W1", + "selfDefinedEthnicityDescription": "British", + "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" + }, + "firstName": "Angus", + "gender": "MALE", + "hearingLanguageNeeds": "ENGLISH", + "lastName": "Lindgren", + "title": "Mr" + }, + "policeBailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + } + } + }, + "notificationRequired": true, + "summonsRequired": false + }, + "applicationReceivedDate": "2025-09-19", + "applicationReference": "28DI6500116", + "applicationStatus": "LISTED", + "commissionerOfOath": false, + "courtApplicationCases": [ + { + "caseStatus": "INACTIVE", + "isSJP": false, + "offences": [ + { + "arrestDate": "2021-01-01", + "chargeDate": "2020-12-28", + "count": 0, + "endorsableFlag": false, + "id": "56693136-f544-4083-bd55-df22eff8d021", + "isDisposed": true, + "listingNumber": 1, + "maxPenalty": "EW:6M &/or Ultd Fine", + "modeOfTrial": "Either Way", + "offenceCode": "TH68010", + "offenceDateCode": 1, + "offenceDefinitionId": "38873d2b-4f99-35ae-9d8f-41da07abb6d5", + "offenceLegislation": "Contrary to section 1(1) and 7 of the Theft Act 1968.", + "offenceLegislationWelsh": "Yn groes i adran 1(1) a 7 Deddf Dwyn 1968.", + "offenceTitle": "Theft from a shop", + "offenceTitleWelsh": "Dwyn o siop - siop-ladrad", + "orderIndex": 1, + "proceedingsConcluded": true, + "startDate": "2019-11-28", + "wording": "Theft of pedal cycle." + } + ], + "prosecutionCaseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "prosecutionCaseIdentifier": { + "address": { + "address1": "Finance Operations", + "address2": "C3 East", + "address3": "DVLA", + "address4": "Longview Road", + "address5": "Swansea", + "postcode": "SA6 7JL" + }, + "contact": { + "primaryEmail": "sjp@dvla.gov.uk" + }, + "majorCreditorCode": "DVL2", + "prosecutionAuthorityCode": "DVLA", + "prosecutionAuthorityId": "6ae4b163-658b-3ae2-a66d-43401cac2f96", + "prosecutionAuthorityName": "Driver and Vehicle Licensing Agency", + "prosecutionAuthorityOUCode": "G94DV00", + "caseURN": "28DI6500116" + } + } + ], + "id": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "subject": { + "id": "31bbd5fd-d058-421b-a090-1e58a9c78d19", + "masterDefendant": { + "defendantCase": [ + { + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "caseReference": "28DI6500116", + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d" + } + ], + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "personDefendant": { + "arrestSummonsNumber": "D28GC01126500116", + "bailStatus": { + "code": "A", + "description": "Not applicable", + "id": "86009c70-759d-3308-8de4-194886ff9a77" + }, + "driverNumber": "VANFL002222OW9PH", + "personDetails": { + "address": { + "address1": "9999A9899AAAA", + "address2": "Woodlane4", + "address3": "addressline 3", + "address4": "Bristol", + "address5": "Avon", + "postcode": "BS1 1JQ" + }, + "contact": { + "home": "0206500116", + "mobile": "07776500116", + "primaryEmail": "firstName.lastName6500116@gmail.com" + }, + "dateOfBirth": "1972-11-01", + "documentationLanguageNeeds": "ENGLISH", + "ethnicity": { + "observedEthnicityCode": "1", + "observedEthnicityDescription": "White", + "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", + "selfDefinedEthnicityCode": "W1", + "selfDefinedEthnicityDescription": "British", + "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" + }, + "firstName": "Angus", + "gender": "MALE", + "hearingLanguageNeeds": "ENGLISH", + "lastName": "Lindgren", + "title": "Mr" + }, + "policeBailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + } + } + }, + "notificationRequired": true, + "summonsRequired": false + }, + "thirdParties": [ + { + "id": "977beebc-2e85-47cb-9d3f-f7038153a196", + "notificationRequired": true, + "prosecutingAuthority": { + "address": { + "address1": "Finance Operations", + "address2": "C3 East", + "address3": "DVLA", + "address4": "Longview Road", + "address5": "Swansea", + "postcode": "SA6 7JL" + }, + "contact": { + "primaryEmail": "sjp@dvla.gov.uk" + }, + "majorCreditorCode": "DVL2", + "name": "Driver and Vehicle Licensing Agency", + "prosecutionAuthorityCode": "DVLA", + "prosecutionAuthorityId": "6ae4b163-658b-3ae2-a66d-43401cac2f96", + "prosecutionAuthorityOUCode": "G94DV00" + }, + "summonsRequired": true + } + ], + "type": { + "appealFlag": false, + "applicantAppellantFlag": false, + "applicationWording": "Appears before the court in order to make a statutory declaration following conviction {1} by {2} on {3}. Original case number: {4}", + "applicationWordingWelsh": "Yn ymddangos gerbron y llys er mwyn gwneud datganiad statudol yn dilyn euogfarn <[am y trosedd ][am y troseddau ]> gan ar . Rhif yr Achos Gwreiddiol: ", + "boxworkNotifTemplate": "NOT_APPLICABLE", + "breachType": "NOT_APPLICABLE", + "categoryCode": "CR", + "changeDate": "2025-03-17T10:29:09", + "code": "MC80527", + "commrOfOathFlag": true, + "contestedFeeApplicable": false, + "courtExtractAvlFlag": true, + "courtOfAppealFlag": false, + "exParte": false, + "hearingCode": "APN", + "id": "a6663f2a-c900-4bb4-a7d7-4be34cb2f1f7", + "initialFeeApplicable": false, + "jurisdiction": "MAGISTRATES", + "lastModified": "2025-03-17T14:00:40.437Z", + "legislation": "In accordance with section 14 of the Magistrates' Courts Act 1980.", + "legislationWelsh": "Yn unol ag adran 14 Deddf Llysoedd Ynadon 1980.", + "linkType": "LINKED", + "listingNotifTemplate": "POSTAL_NOTIFICATION", + "offenceActiveOrder": "OFFENCE", + "pleaApplicableFlag": true, + "prosecutorThirdPartyFlag": true, + "pssId": 601795, + "sowRef": "APPS", + "spiOutApplicableFlag": true, + "summonsTemplateType": "NOT_APPLICABLE", + "type": "Appearance to make statutory declaration (other than SJP)", + "typeWelsh": "Ymddangosiad i wneud datganiad statudol", + "validFrom": "2000-01-05" + } + } + ], + "courtCentre": { + "address": { + "address1": "Norwich Place", + "address2": "Bexleyheath", + "address3": "Kent", + "address4": "", + "address5": "", + "postcode": "DA6 7ND" + }, + "code": "B01BH00", + "courtHearingLocation": "B01BH01", + "id": "7e967376-eacf-4fca-9b30-21b0c5aad427", + "lja": { + "ljaCode": "2575", + "ljaName": "South East London Magistrates' Court" + }, + "name": "Bexley Magistrates' Court", + "roomId": "8e912353-3b5d-36c3-953e-ad3b94b19de3", + "roomName": "Courtroom 01" + }, + "defendantAttendance": [ + { + "attendanceDays": [ + { + "attendanceType": "IN_PERSON", + "day": "2025-09-19" + } + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d" + } + ], + "hasSharedResults": true, + "hearingDays": [ + { + "courtCentreId": "7e967376-eacf-4fca-9b30-21b0c5aad427", + "courtRoomId": "8e912353-3b5d-36c3-953e-ad3b94b19de3", + "hasSharedResults": true, + "isCancelled": false, + "listedDurationMinutes": 20, + "listingSequence": 0, + "sittingDay": "2025-09-19T09:00:00.000Z" + } + ], + "hearingLanguage": "ENGLISH", + "id": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", + "jurisdictionType": "MAGISTRATES", + "shadowListedOffences": [], + "type": { + "description": "Application", + "id": "3449743b-95d6-4836-8941-57f588b52068" + } + }, + "variantDirectory": [], + "completedResultLinesStatus": { + "c3f54f8b-bae1-4141-bdf9-7dc38aee602a": { + "id": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "4b4dbc9f-7889-4433-9eab-5f631c103b81": { + "id": "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "67c5877f-bcb0-430f-974c-334e4d565f05": { + "id": "67c5877f-bcb0-430f-974c-334e4d565f05", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "626a1980-77be-4612-9afc-55f3c85d7381": { + "id": "626a1980-77be-4612-9afc-55f3c85d7381", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "11593003-7af6-4d2a-aa08-82281a4df15c": { + "id": "11593003-7af6-4d2a-aa08-82281a4df15c", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "d6986f75-2404-4e8c-8250-d50b7d8e865c": { + "id": "d6986f75-2404-4e8c-8250-d50b7d8e865c", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "45b6b6d7-ce6f-425c-a2c6-bdae1db71690": { + "id": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "18ccf48c-c76a-4e20-a777-4d37d4645003": { + "id": "18ccf48c-c76a-4e20-a777-4d37d4645003", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "25082695-3304-4d5d-8176-b2e77fbd1236": { + "id": "25082695-3304-4d5d-8176-b2e77fbd1236", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "352c8174-5140-4717-bc12-cb9ce554d68a": { + "id": "352c8174-5140-4717-bc12-cb9ce554d68a", + "lastSharedDateTime": "2025-09-19T16:00:56.563Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + } + }, + "targets": [ + { + "applicationFinalised": true, + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "draftResult": "{}", + "hearingDay": "2025-09-19", + "hearingId": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "resultLines": [ + { + "amendmentDate": "2025-09-19T16:01:21.012Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "I", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [ + { + "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", + "label": "Defendant excused attendance at next hearing", + "promptRef": "defendantExcusedAttendanceAtNextHearing", + "value": "true" + } + ], + "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", + "resultLabel": "Adjournment", + "resultLineId": "25082695-3304-4d5d-8176-b2e77fbd1236", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "a" + }, + { + "amendmentDate": "2025-09-19T16:01:21.012Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "resultLabel": "Next hearing", + "resultLineId": "d6986f75-2404-4e8c-8250-d50b7d8e865c", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nexh" + }, + { + "amendmentDate": "2025-09-19T16:01:21.012Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [ + { + "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", + "label": "Date of hearing", + "promptRef": "HDATE", + "value": "2025-09-19" + }, + { + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "promptRef": "timeOfHearing", + "value": "10:00" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "promptRef": "hCHOUSEOrganisationName", + "value": "Lavender Hill Magistrates' Court" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "promptRef": "hCHOUSEAddress1", + "value": "176A Lavender Hill" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "promptRef": "hCHOUSEAddress2", + "value": "London" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "promptRef": "hCHOUSEPostCode", + "value": "SW11 1JU" + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "promptRef": "HCROOM", + "value": "Courtroom 03" + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "promptRef": "HTYPE", + "value": "Bail Application" + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "promptRef": "HEST", + "value": "20 MINUTES" + }, + { + "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", + "label": "Booking reference", + "promptRef": "bookingReference", + "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" + } + ], + "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "resultLabel": "Next hearing in magistrates' court", + "resultLineId": "18ccf48c-c76a-4e20-a777-4d37d4645003", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nhmc" + }, + { + "amendmentDate": "2025-09-19T16:01:21.012Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "resultLabel": "Adjournment reasons", + "resultLineId": "352c8174-5140-4717-bc12-cb9ce554d68a", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "adjr" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", + "resultLabel": "To attend or a warrant to issue", + "resultLineId": "67c5877f-bcb0-430f-974c-334e4d565f05", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "awi" + }, + { + "amendmentDate": "2025-09-19T16:01:21.012Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "dbf9f59c-eee5-4285-8a1c-4fefe4508581", + "resultLabel": "To produce motor insurance documents or test certificates (not driving licence)", + "resultLineId": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "doc" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "I", + "childResultLineIds": [ + "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "prompts": [ + { + "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", + "label": "Defendant excused attendance at next hearing", + "promptRef": "defendantExcusedAttendanceAtNextHearing", + "value": "true" + } + ], + "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", + "resultLabel": "Adjournment", + "resultLineId": "626a1980-77be-4612-9afc-55f3c85d7381", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "a" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "11593003-7af6-4d2a-aa08-82281a4df15c" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "626a1980-77be-4612-9afc-55f3c85d7381" + ], + "prompts": [], + "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "resultLabel": "Next hearing", + "resultLineId": "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nexh" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "4b4dbc9f-7889-4433-9eab-5f631c103b81" + ], + "prompts": [ + { + "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", + "label": "Date of hearing", + "promptRef": "HDATE", + "value": "2025-09-19" + }, + { + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "promptRef": "timeOfHearing", + "value": "10:00" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "promptRef": "hCHOUSEOrganisationName", + "value": "Lavender Hill Magistrates' Court" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "promptRef": "hCHOUSEAddress1", + "value": "176A Lavender Hill" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "promptRef": "hCHOUSEAddress2", + "value": "London" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "promptRef": "hCHOUSEPostCode", + "value": "SW11 1JU" + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "promptRef": "HCROOM", + "value": "Courtroom 03" + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "promptRef": "HTYPE", + "value": "Bail Application" + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "promptRef": "HEST", + "value": "20 MINUTES" + }, + { + "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", + "label": "Booking reference", + "promptRef": "bookingReference", + "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" + } + ], + "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "resultLabel": "Next hearing in magistrates' court", + "resultLineId": "11593003-7af6-4d2a-aa08-82281a4df15c", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nhmc" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "92df62ca-9311-4894-8bfa-61c4e4ad5f1a" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "626a1980-77be-4612-9afc-55f3c85d7381" + ], + "prompts": [], + "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "resultLabel": "Adjournment reasons", + "resultLineId": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "adjr" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:21.012Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", + "resultLabel": "To attend or a warrant to issue", + "resultLineId": "67c5877f-bcb0-430f-974c-334e4d565f05", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "awi" + }, + { + "amendmentDate": "2025-09-19T16:01:25.148Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:25.148Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "F", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [], + "resultDefinitionId": "2b3f7c20-8fc1-4fad-9076-df196c24b27e", + "resultLabel": "Granted", + "resultLineId": "e548f1a1-fee8-46c0-bc47-201a26de69f6", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "g" + }, + { + "amendmentDate": "2025-09-19T16:01:32.983Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-09-19T16:01:32.983Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-09-19T16:02:09.589Z\"}]}", + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" + ], + "prompts": [], + "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", + "resultLabel": "To attend or a warrant to issue", + "resultLineId": "92df62ca-9311-4894-8bfa-61c4e4ad5f1a", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "awi" + } + ], + "shadowListed": false, + "targetId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53" + } + ], + "savedTargets": [ + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "draftResult": "{}", + "hearingDay": "2025-09-19", + "hearingId": "3d57bc97-5ed6-4cde-aac0-d3284d074b58", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "resultLines": [ + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "I", + "childResultLineIds": [ + "d6986f75-2404-4e8c-8250-d50b7d8e865c", + "352c8174-5140-4717-bc12-cb9ce554d68a" + ], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "prompts": [ + { + "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", + "label": "Defendant excused attendance at next hearing", + "promptRef": "defendantExcusedAttendanceAtNextHearing", + "value": "true" + } + ], + "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", + "resultLabel": "Adjournment", + "resultLineId": "25082695-3304-4d5d-8176-b2e77fbd1236", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "a" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "18ccf48c-c76a-4e20-a777-4d37d4645003" + ], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "25082695-3304-4d5d-8176-b2e77fbd1236" + ], + "prompts": [], + "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "resultLabel": "Next hearing", + "resultLineId": "d6986f75-2404-4e8c-8250-d50b7d8e865c", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nexh" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "67c5877f-bcb0-430f-974c-334e4d565f05", + "c3f54f8b-bae1-4141-bdf9-7dc38aee602a" + ], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "25082695-3304-4d5d-8176-b2e77fbd1236" + ], + "prompts": [], + "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "resultLabel": "Adjournment reasons", + "resultLineId": "352c8174-5140-4717-bc12-cb9ce554d68a", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "adjr" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "d6986f75-2404-4e8c-8250-d50b7d8e865c" + ], + "prompts": [ + { + "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", + "label": "Date of hearing", + "promptRef": "HDATE", + "value": "2025-09-19" + }, + { + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "promptRef": "timeOfHearing", + "value": "10:00" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "promptRef": "hCHOUSEOrganisationName", + "value": "Lavender Hill Magistrates' Court" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "promptRef": "hCHOUSEAddress1", + "value": "176A Lavender Hill" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "promptRef": "hCHOUSEAddress2", + "value": "London" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "promptRef": "hCHOUSEPostCode", + "value": "SW11 1JU" + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "promptRef": "HCROOM", + "value": "Courtroom 03" + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "promptRef": "HTYPE", + "value": "Bail Application" + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "promptRef": "HEST", + "value": "20 MINUTES" + }, + { + "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", + "label": "Booking reference", + "promptRef": "bookingReference", + "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" + } + ], + "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "resultLabel": "Next hearing in magistrates' court", + "resultLineId": "18ccf48c-c76a-4e20-a777-4d37d4645003", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nhmc" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "I", + "childResultLineIds": [ + "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "prompts": [ + { + "id": "150a22a8-05d0-4be1-ada7-a0d512a63b5d", + "label": "Defendant excused attendance at next hearing", + "promptRef": "defendantExcusedAttendanceAtNextHearing", + "value": "true" + } + ], + "resultDefinitionId": "d278650c-e429-11e8-9f32-f2801f1b9fd1", + "resultLabel": "Adjournment", + "resultLineId": "626a1980-77be-4612-9afc-55f3c85d7381", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "a" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "11593003-7af6-4d2a-aa08-82281a4df15c" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "626a1980-77be-4612-9afc-55f3c85d7381" + ], + "prompts": [], + "resultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "resultLabel": "Next hearing", + "resultLineId": "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nexh" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "4b4dbc9f-7889-4433-9eab-5f631c103b81" + ], + "prompts": [ + { + "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", + "label": "Date of hearing", + "promptRef": "HDATE", + "value": "2025-09-19" + }, + { + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "promptRef": "timeOfHearing", + "value": "10:00" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "promptRef": "hCHOUSEOrganisationName", + "value": "Lavender Hill Magistrates' Court" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "promptRef": "hCHOUSEAddress1", + "value": "176A Lavender Hill" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "promptRef": "hCHOUSEAddress2", + "value": "London" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "promptRef": "hCHOUSEPostCode", + "value": "SW11 1JU" + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "promptRef": "HCROOM", + "value": "Courtroom 03" + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "promptRef": "HTYPE", + "value": "Bail Application" + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "promptRef": "HEST", + "value": "20 MINUTES" + }, + { + "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", + "label": "Booking reference", + "promptRef": "bookingReference", + "value": "959c2bb7-d7cf-40ca-994d-f26fbe4be4d5" + } + ], + "resultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "resultLabel": "Next hearing in magistrates' court", + "resultLineId": "11593003-7af6-4d2a-aa08-82281a4df15c", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "nhmc" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [ + "67c5877f-bcb0-430f-974c-334e4d565f05" + ], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "626a1980-77be-4612-9afc-55f3c85d7381" + ], + "prompts": [], + "resultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "resultLabel": "Adjournment reasons", + "resultLineId": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "adjr" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "defendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "offenceId": "56693136-f544-4083-bd55-df22eff8d021", + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "45b6b6d7-ce6f-425c-a2c6-bdae1db71690" + ], + "prompts": [], + "resultDefinitionId": "69ff04d5-84e8-4a61-8478-82c2999c1969", + "resultLabel": "To attend or a warrant to issue", + "resultLineId": "67c5877f-bcb0-430f-974c-334e4d565f05", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "awi" + }, + { + "applicationId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53", + "caseId": "aaf1035b-9a0e-41d3-9501-5c8d53ab6f12", + "category": "A", + "childResultLineIds": [], + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "9191ae81-c7c2-4a7f-a168-befba0dad65d", + "nonStandaloneAncillaryResult": false, + "orderedDate": "2025-09-19", + "parentResultLineIds": [ + "352c8174-5140-4717-bc12-cb9ce554d68a" + ], + "prompts": [], + "resultDefinitionId": "dbf9f59c-eee5-4285-8a1c-4fefe4508581", + "resultLabel": "To produce motor insurance documents or test certificates (not driving licence)", + "resultLineId": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", + "shadowListed": false, + "sharedDate": "2025-09-19", + "shortCode": "doc" + } + ], + "shadowListed": false, + "targetId": "c67b935d-6f26-4b8e-a31f-582b5ae52a53" + } + ], + "defendantDetailsChanged": [], + "isReshare": true, + "newAmendmentResults": [ + { + "id": "25082695-3304-4d5d-8176-b2e77fbd1236", + "amendmentDateTime": "2025-09-19T16:01:21.012Z" + }, + { + "id": "d6986f75-2404-4e8c-8250-d50b7d8e865c", + "amendmentDateTime": "2025-09-19T16:01:21.012Z" + }, + { + "id": "18ccf48c-c76a-4e20-a777-4d37d4645003", + "amendmentDateTime": "2025-09-19T16:01:21.012Z" + }, + { + "id": "352c8174-5140-4717-bc12-cb9ce554d68a", + "amendmentDateTime": "2025-09-19T16:01:21.012Z" + }, + { + "id": "67c5877f-bcb0-430f-974c-334e4d565f05", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "c3f54f8b-bae1-4141-bdf9-7dc38aee602a", + "amendmentDateTime": "2025-09-19T16:01:21.012Z" + }, + { + "id": "626a1980-77be-4612-9afc-55f3c85d7381", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "4b4dbc9f-7889-4433-9eab-5f631c103b81", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "11593003-7af6-4d2a-aa08-82281a4df15c", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "45b6b6d7-ce6f-425c-a2c6-bdae1db71690", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "67c5877f-bcb0-430f-974c-334e4d565f05", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + }, + { + "id": "e548f1a1-fee8-46c0-bc47-201a26de69f6", + "amendmentDateTime": "2025-09-19T16:01:25.148Z" + }, + { + "id": "92df62ca-9311-4894-8bfa-61c4e4ad5f1a", + "amendmentDateTime": "2025-09-19T16:01:32.983Z" + } + ], + "hearingDay": "2025-09-19", + "version": 14 +} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json new file mode 100644 index 0000000000..3cdf7b3e1c --- /dev/null +++ b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines.json @@ -0,0 +1,741 @@ +{ + "hearingId": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", + "sharedTime": "2025-08-27T17:07:44.238Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + }, + "hearing": { + "courtCentre": { + "address": { + "address1": "176A Lavender Hill", + "address2": "London", + "address3": "", + "address4": "", + "address5": "", + "postcode": "SW11 1JU" + }, + "code": "B01LY00", + "courtHearingLocation": "B01LY01", + "id": "f8254db1-1683-483e-afb3-b87fde5a0a26", + "lja": { + "ljaCode": "2577", + "ljaName": "South West London Magistrates' Court" + }, + "name": "Lavender Hill Magistrates' Court", + "roomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", + "roomName": "Courtroom 01" + }, + "defendantAttendance": [ + { + "attendanceDays": [ + { + "attendanceType": "IN_PERSON", + "day": "2025-08-27" + } + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a" + } + ], + "hasSharedResults": true, + "hearingDays": [ + { + "courtCentreId": "f8254db1-1683-483e-afb3-b87fde5a0a26", + "courtRoomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", + "hasSharedResults": true, + "isCancelled": false, + "listedDurationMinutes": 20, + "listingSequence": 0, + "sittingDay": "2025-08-27T20:30:00.000Z" + } + ], + "hearingLanguage": "ENGLISH", + "id": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", + "isGroupProceedings": false, + "jurisdictionType": "MAGISTRATES", + "prosecutionCases": [ + { + "caseStatus": "ACTIVE", + "cpsOrganisation": "A30AB00", + "defendants": [ + { + "courtProceedingsInitiated": "2025-08-27T17:02:47.341Z", + "id": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isYouth": false, + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offences": [ + { + "arrestDate": "2020-12-01", + "chargeDate": "2020-12-02", + "count": 0, + "endorsableFlag": false, + "id": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "listingNumber": 1, + "modeOfTrial": "Either Way", + "offenceCode": "MD71521", + "offenceDateCode": 1, + "offenceDefinitionId": "734ad209-e52b-4df1-aca0-3b1c90e58ef7", + "offenceLegislation": "Contrary to section 5(2) of and Schedule 4 to the Misuse of Drugs Act 1971.", + "offenceTitle": "Possess a controlled drug of Class B - cannabis resin", + "orderIndex": 1, + "startDate": "2019-11-28", + "wording": "From 13th November 2018, an aggravated version of this offence applies where the offence is committed against an emergency worker acting in the exercise of his / her functions as such a worker, as per section 1 of the Assaults on emergency Workers (Offences) Act 2018; see offence wording document H19568." + } + ], + "personDefendant": { + "arrestSummonsNumber": "E28GC19102022001", + "bailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + }, + "driverNumber": "CRIME709136TC8GZ", + "personDetails": { + "address": { + "address1": "c", + "address2": "Hugh Parkway", + "address3": "Hermannside", + "address4": "Avon", + "postcode": "DA6 7ND" + }, + "contact": { + "home": "873-655-0683" + }, + "dateOfBirth": "2000-07-20", + "documentationLanguageNeeds": "ENGLISH", + "ethnicity": { + "observedEthnicityCode": "1", + "observedEthnicityDescription": "White", + "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", + "selfDefinedEthnicityCode": "W1", + "selfDefinedEthnicityDescription": "British", + "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" + }, + "firstName": "Casper", + "gender": "FEMALE", + "hearingLanguageNeeds": "ENGLISH", + "lastName": "Daugherty", + "title": "Mr" + }, + "policeBailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + } + }, + "prosecutionAuthorityReference": "E28GC19102022001", + "prosecutionCaseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23" + } + ], + "id": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "initiationCode": "C", + "originatingOrganisation": "0300000", + "prosecutionCaseIdentifier": { + "address": { + "address1": "Criminal Justice Department", + "address2": "Derbyshire Constabulary", + "address3": "Butterley Hall", + "address4": "Ripley", + "address5": "Derby", + "postcode": "DE5 3RS" + }, + "contact": { + "primaryEmail": "criminaldataderbyshire@derbyshire.police.uk" + }, + "majorCreditorCode": "PO30", + "prosecutionAuthorityCode": "DERPF", + "prosecutionAuthorityId": "bdc190e7-c939-37ca-be4b-9f615d6ef40e", + "prosecutionAuthorityName": "Derbyshire Police", + "prosecutionAuthorityOUCode": "0300000", + "caseURN": "70FF1811171" + } + } + ], + "type": { + "description": "First hearing", + "id": "4a0e892d-c0c5-3c51-95b8-704d8c781776" + } + }, + "variantDirectory": [], + "completedResultLinesStatus": { + "54498bd6-5474-4103-a9c3-b13a3371d338": { + "id": "54498bd6-5474-4103-a9c3-b13a3371d338", + "lastSharedDateTime": "2025-08-27T17:05:19.980Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "2f459f7c-5217-4cf7-8899-95e94c38b0fb": { + "id": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", + "lastSharedDateTime": "2025-08-27T17:05:19.980Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3": { + "id": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "lastSharedDateTime": "2025-08-27T17:05:19.980Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "24936f69-8fcd-492c-8a34-fb3bff18e8a2": { + "id": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", + "lastSharedDateTime": "2025-08-27T17:05:19.980Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "97bc9ae8-69f3-4271-82e1-02a5c402b15f": { + "id": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", + "lastSharedDateTime": "2025-08-27T17:05:19.980Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + } + }, + "targets": [ + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "draftResult": "{}", + "hearingDay": "2025-08-27", + "hearingId": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "resultLines": [ + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "F", + "childResultLineIds": [ + "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "97bc9ae8-69f3-4271-82e1-02a5c402b15f" + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "an officer of a provider of probation services" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [ + "2f459f7c-5217-4cf7-8899-95e94c38b0fb", + "bd01656f-b7f7-4c8b-9b5e-84c6d4794e5c" + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "24936f69-8fcd-492c-8a34-fb3bff18e8a2" + ], + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "97bc9ae8-69f3-4271-82e1-02a5c402b15f" + ], + "prompts": [ + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "promptRef": "medicalPractitionerPsychologist", + "value": "test" + }, + { + "id": "fb580537-9d36-4139-811b-77af09547b0d", + "label": "Care home / Hospital", + "promptRef": "careHomeHospital", + "value": "test" + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "promptRef": "periodOfTreatment", + "value": "2 Months" + } + ], + "resultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "resultLabel": "Mental health treatment non-residential patient", + "resultLineId": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "mhtrnr" + }, + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "I", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "24936f69-8fcd-492c-8a34-fb3bff18e8a2" + ], + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T17:06:57.511Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T17:07:41.900Z\"}]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor organisation name", + "promptRef": "electronicmonitoringcontractorOrganisationName", + "value": "G4S Scotland Monitoring Technologies & Services" + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 1", + "promptRef": "electronicmonitoringcontractorEmailAddress1", + "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" + }, + { + "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", + "label": "Continuation of electronic monitoring", + "promptRef": "continuationOfElectronicMonitoring", + "value": "true" + }, + { + "id": "f6ca6307-bdab-42d3-968b-44485824b535", + "label": "Are there any additional requirements as well?", + "promptRef": "areThereAnyAdditionalRequirementsAsWell", + "value": "false" + }, + { + "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", + "label": "Was an interpreter used?", + "promptRef": "wasAnInterpreterUsed", + "value": "false" + }, + { + "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "label": "Does the offender have any special needs?", + "promptRef": "doesTheOffenderHaveAnySpecialNeeds", + "value": "false" + } + ], + "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "resultLabel": "Notification of electronic monitoring order (requirement)", + "resultLineId": "54498bd6-5474-4103-a9c3-b13a3371d338", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nordrc" + }, + { + "amendmentDate": "2025-08-27T17:06:57.511Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T17:06:57.511Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T17:07:41.900Z\"}]}", + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "97bc9ae8-69f3-4271-82e1-02a5c402b15f" + ], + "prompts": [ + { + "id": "72413aef-ecb9-4e9b-a143-31d1e9c11584", + "label": "Number of hours", + "promptRef": "numberOfHours", + "value": "10 Hours" + } + ], + "resultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "resultLabel": "Unpaid work. Requirement to be completed within 12 months.", + "resultLineId": "bd01656f-b7f7-4c8b-9b5e-84c6d4794e5c", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "upwr" + } + ], + "shadowListed": false, + "targetId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82" + } + ], + "savedTargets": [ + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "draftResult": "{}", + "hearingDay": "2025-08-27", + "hearingId": "12d9fea9-686f-4bc3-a7c5-35e22bc80225", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "resultLines": [ + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "F", + "childResultLineIds": [ + "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "97bc9ae8-69f3-4271-82e1-02a5c402b15f" + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "an officer of a provider of probation services" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "I", + "childResultLineIds": [ + "54498bd6-5474-4103-a9c3-b13a3371d338" + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "24936f69-8fcd-492c-8a34-fb3bff18e8a2" + ], + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [ + "2f459f7c-5217-4cf7-8899-95e94c38b0fb" + ], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "24936f69-8fcd-492c-8a34-fb3bff18e8a2" + ], + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3" + ], + "prompts": [ + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor organisation name", + "promptRef": "electronicmonitoringcontractorOrganisationName", + "value": "G4S Scotland Monitoring Technologies & Services" + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 1", + "promptRef": "electronicmonitoringcontractorEmailAddress1", + "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" + }, + { + "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", + "label": "Continuation of electronic monitoring", + "promptRef": "continuationOfElectronicMonitoring", + "value": "true" + }, + { + "id": "f6ca6307-bdab-42d3-968b-44485824b535", + "label": "Are there any additional requirements as well?", + "promptRef": "areThereAnyAdditionalRequirementsAsWell", + "value": "false" + }, + { + "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", + "label": "Was an interpreter used?", + "promptRef": "wasAnInterpreterUsed", + "value": "false" + }, + { + "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "label": "Does the offender have any special needs?", + "promptRef": "doesTheOffenderHaveAnySpecialNeeds", + "value": "false" + } + ], + "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "resultLabel": "Notification of electronic monitoring order (requirement)", + "resultLineId": "54498bd6-5474-4103-a9c3-b13a3371d338", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nordrc" + }, + { + "caseId": "7e4afa2e-b190-4b57-92d0-346f8e4a9e23", + "category": "A", + "childResultLineIds": [], + "defendantId": "8fc95b5e-5e20-4672-a56b-470cfdd9586a", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "97bc9ae8-69f3-4271-82e1-02a5c402b15f" + ], + "prompts": [ + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "promptRef": "medicalPractitionerPsychologist", + "value": "test" + }, + { + "id": "fb580537-9d36-4139-811b-77af09547b0d", + "label": "Care home / Hospital", + "promptRef": "careHomeHospital", + "value": "test" + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "promptRef": "periodOfTreatment", + "value": "2 Months" + } + ], + "resultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "resultLabel": "Mental health treatment non-residential patient", + "resultLineId": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "mhtrnr" + } + ], + "shadowListed": false, + "targetId": "f3c6b5d8-a76e-44c3-8cff-fc093075ae82" + } + ], + "defendantDetailsChanged": [], + "isReshare": true, + "newAmendmentResults": [ + { + "id": "24936f69-8fcd-492c-8a34-fb3bff18e8a2", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + }, + { + "id": "97bc9ae8-69f3-4271-82e1-02a5c402b15f", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + }, + { + "id": "2f459f7c-5217-4cf7-8899-95e94c38b0fb", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + }, + { + "id": "38cfc32c-31bb-4bd3-b22e-35d2b829a1d3", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + }, + { + "id": "54498bd6-5474-4103-a9c3-b13a3371d338", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + }, + { + "id": "bd01656f-b7f7-4c8b-9b5e-84c6d4794e5c", + "amendmentDateTime": "2025-08-27T17:06:57.511Z" + } + ], + "hearingDay": "2025-08-27", + "version": 13 +} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json new file mode 100644 index 0000000000..dc09e22378 --- /dev/null +++ b/hearing-event/hearing-event-processor/src/test/resources/hearing.results-shared_with_deleted_resultlines_parent.json @@ -0,0 +1,1633 @@ +{ + "hearingId": "e7471522-d1e4-4293-bddf-bb96c38c92ef", + "sharedTime": "2025-08-27T16:01:59.115Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + }, + "hearing": { + "courtCentre": { + "address": { + "address1": "176A Lavender Hill", + "address2": "London", + "address3": "", + "address4": "", + "address5": "", + "postcode": "SW11 1JU" + }, + "code": "B01LY00", + "courtHearingLocation": "B01LY01", + "id": "f8254db1-1683-483e-afb3-b87fde5a0a26", + "lja": { + "ljaCode": "2577", + "ljaName": "South West London Magistrates' Court" + }, + "name": "Lavender Hill Magistrates' Court", + "roomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", + "roomName": "Courtroom 01" + }, + "defendantAttendance": [ + { + "attendanceDays": [ + { + "attendanceType": "IN_PERSON", + "day": "2025-08-27" + } + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f" + } + ], + "hasSharedResults": true, + "hearingDays": [ + { + "courtCentreId": "f8254db1-1683-483e-afb3-b87fde5a0a26", + "courtRoomId": "9e4932f7-97b2-3010-b942-ddd2624e4dd8", + "hasSharedResults": true, + "isCancelled": false, + "listedDurationMinutes": 20, + "listingSequence": 0, + "sittingDay": "2025-08-27T20:30:00.000Z" + } + ], + "hearingLanguage": "ENGLISH", + "id": "e7471522-d1e4-4293-bddf-bb96c38c92ef", + "isGroupProceedings": false, + "jurisdictionType": "MAGISTRATES", + "prosecutionCases": [ + { + "caseStatus": "ACTIVE", + "cpsOrganisation": "A30AB00", + "defendants": [ + { + "courtProceedingsInitiated": "2025-08-27T15:17:34.427Z", + "id": "686e785b-105e-41a5-b22a-a689843d051f", + "isYouth": false, + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offences": [ + { + "arrestDate": "2020-12-01", + "chargeDate": "2020-12-02", + "count": 0, + "endorsableFlag": false, + "id": "6910c878-e945-4177-b15f-f619b2bc7dae", + "listingNumber": 1, + "modeOfTrial": "Either Way", + "offenceCode": "MD71521", + "offenceDateCode": 1, + "offenceDefinitionId": "734ad209-e52b-4df1-aca0-3b1c90e58ef7", + "offenceLegislation": "Contrary to section 5(2) of and Schedule 4 to the Misuse of Drugs Act 1971.", + "offenceTitle": "Possess a controlled drug of Class B - cannabis resin", + "orderIndex": 1, + "startDate": "2019-11-28", + "wording": "From 13th November 2018, an aggravated version of this offence applies where the offence is committed against an emergency worker acting in the exercise of his / her functions as such a worker, as per section 1 of the Assaults on emergency Workers (Offences) Act 2018; see offence wording document H19568." + } + ], + "personDefendant": { + "arrestSummonsNumber": "E28GC19102022001", + "bailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + }, + "driverNumber": "CRIME709136TC8GZ", + "personDetails": { + "address": { + "address1": "c", + "address2": "Hugh Parkway", + "address3": "Hermannside", + "address4": "Avon", + "postcode": "DA6 7ND" + }, + "contact": { + "home": "873-655-0683" + }, + "dateOfBirth": "2000-07-20", + "documentationLanguageNeeds": "ENGLISH", + "ethnicity": { + "observedEthnicityCode": "1", + "observedEthnicityDescription": "White", + "observedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b", + "selfDefinedEthnicityCode": "W1", + "selfDefinedEthnicityDescription": "British", + "selfDefinedEthnicityId": "c4ca4238-a0b9-3382-8dcc-509a6f75849b" + }, + "firstName": "Casper", + "gender": "FEMALE", + "hearingLanguageNeeds": "ENGLISH", + "lastName": "Daugherty", + "title": "Mr" + }, + "policeBailStatus": { + "code": "C", + "description": "Custody", + "id": "12e69486-4d01-3403-a50a-7419ca040635" + } + }, + "prosecutionAuthorityReference": "E28GC19102022001", + "prosecutionCaseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2" + } + ], + "id": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "initiationCode": "C", + "originatingOrganisation": "0300000", + "prosecutionCaseIdentifier": { + "address": { + "address1": "Criminal Justice Department", + "address2": "Derbyshire Constabulary", + "address3": "Butterley Hall", + "address4": "Ripley", + "address5": "Derby", + "postcode": "DE5 3RS" + }, + "contact": { + "primaryEmail": "criminaldataderbyshire@derbyshire.police.uk" + }, + "majorCreditorCode": "PO30", + "prosecutionAuthorityCode": "DERPF", + "prosecutionAuthorityId": "bdc190e7-c939-37ca-be4b-9f615d6ef40e", + "prosecutionAuthorityName": "Derbyshire Police", + "prosecutionAuthorityOUCode": "0300000", + "caseURN": "70FF1811170" + } + } + ], + "type": { + "description": "First hearing", + "id": "4a0e892d-c0c5-3c51-95b8-704d8c781776" + } + }, + "variantDirectory": [], + "completedResultLinesStatus": { + "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d": { + "id": "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d", + "lastSharedDateTime": "2025-08-27T15:20:01.219Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "3430f158-2e5f-4ebf-8f1e-9570f6f35270": { + "id": "3430f158-2e5f-4ebf-8f1e-9570f6f35270", + "lastSharedDateTime": "2025-08-27T15:20:01.219Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "b249a83e-e309-4bf0-96cd-7d3535bae70b": { + "id": "b249a83e-e309-4bf0-96cd-7d3535bae70b", + "lastSharedDateTime": "2025-08-27T15:20:01.219Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057": { + "id": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "bb58dbef-c2a1-4473-a34c-eb5570a188b1": { + "id": "bb58dbef-c2a1-4473-a34c-eb5570a188b1", + "lastSharedDateTime": "2025-08-27T15:47:40.318Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6": { + "id": "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6", + "lastSharedDateTime": "2025-08-27T15:47:40.318Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "0a9fd761-8dfd-4ea2-8bdd-35974021dc45": { + "id": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7": { + "id": "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7", + "lastSharedDateTime": "2025-08-27T15:20:01.219Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "bb477cfe-abbb-418c-b148-0ca9edfffc41": { + "id": "bb477cfe-abbb-418c-b148-0ca9edfffc41", + "lastSharedDateTime": "2025-08-27T15:47:40.318Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "cffb881f-9c55-423e-99f4-683d6da08a14": { + "id": "cffb881f-9c55-423e-99f4-683d6da08a14", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "32ae2771-7103-4558-aaec-2ca575dc74a7": { + "id": "32ae2771-7103-4558-aaec-2ca575dc74a7", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80": { + "id": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb": { + "id": "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb", + "lastSharedDateTime": "2025-08-27T15:20:01.219Z", + "courtClerk": { + "firstName": "Erica", + "lastName": "Wilson", + "userId": "a085e359-6069-4694-8820-7810e7dfe762" + } + }, + "220f8b93-1add-4de7-89d0-e505801a10d7": { + "id": "220f8b93-1add-4de7-89d0-e505801a10d7", + "lastSharedDateTime": "2025-08-27T15:45:16.622Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + }, + "8ac5068c-dc0c-4a28-a3ca-9365dd349f49": { + "id": "8ac5068c-dc0c-4a28-a3ca-9365dd349f49", + "lastSharedDateTime": "2025-08-27T15:47:40.318Z", + "courtClerk": { + "firstName": "Emma", + "lastName": "Cleaner", + "userId": "2781b565-4514-4805-8744-a3e827f0f611" + } + } + }, + "targets": [ + { + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "draftResult": "{}", + "hearingDay": "2025-08-27", + "hearingId": "e7471522-d1e4-4293-bddf-bb96c38c92ef", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "resultLines": [ + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "a probation officer" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", + "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", + "promptRef": "persistentOffenderPreviouslyFined", + "value": "test" + }, + { + "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", + "label": "Judge reserves breach proceedings", + "promptRef": "judgeReservesBreachProceedings", + "value": "false" + }, + { + "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", + "label": "Direction that a failure to comply be dealt with by magistrates' court", + "promptRef": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", + "value": "false" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "b249a83e-e309-4bf0-96cd-7d3535bae70b", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "promptRef": "startDate", + "value": "2025-08-10" + }, + { + "id": "6dd7348a-29e8-4487-a956-ae07d7fe7668", + "label": "End date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Defendant to remain at", + "promptRef": "curfewAddressDetailsAndTimings", + "value": "test1" + }, + { + "id": "e5b96ed6-7ec0-464d-a698-62bc94a7f52f", + "label": "Details and timings", + "promptRef": "detailsAndTimings", + "value": "test2" + } + ], + "resultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "resultLabel": "Further curfew requirement made", + "resultLineId": "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "cura" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "I", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "3430f158-2e5f-4ebf-8f1e-9570f6f35270", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor organisation name", + "promptRef": "electronicmonitoringcontractorOrganisationName", + "value": "G4S Scotland Monitoring Technologies & Services" + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 1", + "promptRef": "electronicmonitoringcontractorEmailAddress1", + "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" + }, + { + "id": "5ce30920-b300-471c-8fd7-67f3a193476a", + "label": "First notification of electronic monitoring", + "promptRef": "firstNotificationOfElectronicMonitoring", + "value": "true" + }, + { + "id": "f6ca6307-bdab-42d3-968b-44485824b535", + "label": "Are there any additional requirements as well?", + "promptRef": "areThereAnyAdditionalRequirementsAsWell", + "value": "false" + }, + { + "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", + "label": "Was an interpreter used?", + "promptRef": "wasAnInterpreterUsed", + "value": "false" + }, + { + "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "label": "Does the offender have any special needs?", + "promptRef": "doesTheOffenderHaveAnySpecialNeeds", + "value": "false" + } + ], + "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "resultLabel": "Notification of electronic monitoring order (requirement)", + "resultLineId": "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nordrc" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [ + "cffb881f-9c55-423e-99f4-683d6da08a14", + "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "32ae2771-7103-4558-aaec-2ca575dc74a7" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", + "label": "Amount of fine", + "promptRef": "AOF", + "value": "200.00" + } + ], + "resultDefinitionId": "969f150c-cd05-46b0-9dd9-30891efcc766", + "resultLabel": "Fine", + "resultLineId": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "fo" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [ + { + "id": "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", + "label": "Reason for no collection order", + "promptRef": "reasonForNoCollectionOrder", + "value": "impracticable" + } + ], + "resultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", + "resultLabel": "No collection order reason", + "resultLineId": "cffb881f-9c55-423e-99f4-683d6da08a14", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nocollo" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [], + "resultDefinitionId": "cfa66730-f81c-4768-a36e-581791cb0270", + "resultLabel": "Has a collection order been made?", + "resultLineId": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "collom" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [ + "065c3bb0-94e4-453a-acf4-240c514c126c" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [], + "resultDefinitionId": "3d742a7e-37a6-453c-bb6f-5e023bb19453", + "resultLabel": "Payment Method", + "resultLineId": "32ae2771-7103-4558-aaec-2ca575dc74a7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "pm" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"},{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [], + "resultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "resultLabel": "Payment terms", + "resultLineId": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "payt" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"},{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "ee7d253a-c629-11e8-a355-529269fb1459", + "label": "Date to pay in full by", + "promptRef": "PBD", + "value": "2025-12-12" + } + ], + "resultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", + "resultLabel": "Pay by date", + "resultLineId": "220f8b93-1add-4de7-89d0-e505801a10d7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "pdate" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[{\"type\":\"DATE\",\"label\":\"End Date\",\"value\":\"2025-11-11\",\"promptId\":\"d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9\",\"promptRef\":\"endDate\"},{\"type\":\"FIXL\",\"label\":\"Responsible officer\",\"value\":\"the officer in charge of the Attendance Centre\",\"promptId\":\"29f5b3c7-8d15-4606-9dcf-23f32a21b5ef\",\"promptRef\":\"responsibleOfficer\"}]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [ + "bb58dbef-c2a1-4473-a34c-eb5570a188b1", + "bb477cfe-abbb-418c-b148-0ca9edfffc41" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-11-11" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "the officer in charge of the Attendance Centre" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "8ac5068c-dc0c-4a28-a3ca-9365dd349f49", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [ + "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" + ], + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "bb58dbef-c2a1-4473-a34c-eb5570a188b1", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "I", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" + ], + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "bb477cfe-abbb-418c-b148-0ca9edfffc41", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"validationDate\":\"2025-08-27T15:47:35.184Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "bb58dbef-c2a1-4473-a34c-eb5570a188b1" + ], + "prompts": [ + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "promptRef": "underDirectionOf", + "value": "test" + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "promptRef": "periodOfTreatment", + "value": "2 Months" + } + ], + "resultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "resultLabel": "Alcohol treatment", + "resultLineId": "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "atr" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [ + "886f3820-ce92-4e35-8222-b13ee2849a83" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "32ae2771-7103-4558-aaec-2ca575dc74a7" + ], + "prompts": [], + "resultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", + "resultLabel": "Application made for benefit deductions", + "resultLineId": "065c3bb0-94e4-453a-acf4-240c514c126c", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "abdc" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "I", + "childResultLineIds": [ + "ace3472e-e554-419d-833d-58e475369166" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "065c3bb0-94e4-453a-acf4-240c514c126c" + ], + "prompts": [], + "resultDefinitionId": "4871697d-6dd1-4da2-8894-707e6b13c361", + "resultLabel": "Reserve Terms", + "resultLineId": "886f3820-ce92-4e35-8222-b13ee2849a83", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "rt" + }, + { + "amendmentDate": "2025-08-27T16:00:26.502Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T16:00:26.502Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T16:01:55.316Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "886f3820-ce92-4e35-8222-b13ee2849a83" + ], + "prompts": [ + { + "id": "c131cab0-5dd6-11e8-9c2d-fa7ae01bbebc", + "label": "Pay lump sum in full within", + "promptRef": "LSPW", + "value": "28 days" + } + ], + "resultDefinitionId": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", + "resultLabel": "Reserve Terms Lump sum", + "resultLineId": "ace3472e-e554-419d-833d-58e475369166", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "rlsum" + } + ], + "shadowListed": false, + "targetId": "6910c878-e945-4177-b15f-f619b2bc7dae" + } + ], + "savedTargets": [ + { + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "draftResult": "{}", + "hearingDay": "2025-08-27", + "hearingId": "e7471522-d1e4-4293-bddf-bb96c38c92ef", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "resultLines": [ + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "a probation officer" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", + "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", + "promptRef": "persistentOffenderPreviouslyFined", + "value": "test" + }, + { + "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", + "label": "Judge reserves breach proceedings", + "promptRef": "judgeReservesBreachProceedings", + "value": "false" + }, + { + "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", + "label": "Direction that a failure to comply be dealt with by magistrates' court", + "promptRef": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", + "value": "false" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "f0de2b6b-ffb8-4e55-914e-47e6c3a80fd7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "b249a83e-e309-4bf0-96cd-7d3535bae70b", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "promptRef": "startDate", + "value": "2025-08-10" + }, + { + "id": "6dd7348a-29e8-4487-a956-ae07d7fe7668", + "label": "End date", + "promptRef": "endDate", + "value": "2025-12-12" + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Defendant to remain at", + "promptRef": "curfewAddressDetailsAndTimings", + "value": "test1" + }, + { + "id": "e5b96ed6-7ec0-464d-a698-62bc94a7f52f", + "label": "Details and timings", + "promptRef": "detailsAndTimings", + "value": "test2" + } + ], + "resultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "resultLabel": "Further curfew requirement made", + "resultLineId": "bb4630e7-73a3-4763-b8ce-d4c90b75a8eb", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "cura" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "I", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "3430f158-2e5f-4ebf-8f1e-9570f6f35270", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "amendmentDate": "2025-08-27T15:20:43.907Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:20:43.907Z\",\"validationDate\":\"2025-08-27T15:39:14.882Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": true, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor organisation name", + "promptRef": "electronicmonitoringcontractorOrganisationName", + "value": "G4S Scotland Monitoring Technologies & Services" + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 1", + "promptRef": "electronicmonitoringcontractorEmailAddress1", + "value": "EM.Scotland.Notifications@uk.g4s.com.cjsm.net" + }, + { + "id": "5ce30920-b300-471c-8fd7-67f3a193476a", + "label": "First notification of electronic monitoring", + "promptRef": "firstNotificationOfElectronicMonitoring", + "value": "true" + }, + { + "id": "f6ca6307-bdab-42d3-968b-44485824b535", + "label": "Are there any additional requirements as well?", + "promptRef": "areThereAnyAdditionalRequirementsAsWell", + "value": "false" + }, + { + "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", + "label": "Was an interpreter used?", + "promptRef": "wasAnInterpreterUsed", + "value": "false" + }, + { + "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "label": "Does the offender have any special needs?", + "promptRef": "doesTheOffenderHaveAnySpecialNeeds", + "value": "false" + } + ], + "resultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "resultLabel": "Notification of electronic monitoring order (requirement)", + "resultLineId": "e7d94ff6-0217-4e3f-8e2a-0248f929ab2d", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nordrc" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [ + "cffb881f-9c55-423e-99f4-683d6da08a14", + "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "32ae2771-7103-4558-aaec-2ca575dc74a7" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", + "label": "Amount of fine", + "promptRef": "AOF", + "value": "200.00" + } + ], + "resultDefinitionId": "969f150c-cd05-46b0-9dd9-30891efcc766", + "resultLabel": "Fine", + "resultLineId": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "fo" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [ + { + "id": "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", + "label": "Reason for no collection order", + "promptRef": "reasonForNoCollectionOrder", + "value": "impracticable" + } + ], + "resultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", + "resultLabel": "No collection order reason", + "resultLineId": "cffb881f-9c55-423e-99f4-683d6da08a14", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "nocollo" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [], + "resultDefinitionId": "cfa66730-f81c-4768-a36e-581791cb0270", + "resultLabel": "Has a collection order been made?", + "resultLineId": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "collom" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [ + "0a9fd761-8dfd-4ea2-8bdd-35974021dc45" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057" + ], + "prompts": [], + "resultDefinitionId": "3d742a7e-37a6-453c-bb6f-5e023bb19453", + "resultLabel": "Payment Method", + "resultLineId": "32ae2771-7103-4558-aaec-2ca575dc74a7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "pm" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [ + "220f8b93-1add-4de7-89d0-e505801a10d7" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "32ae2771-7103-4558-aaec-2ca575dc74a7" + ], + "prompts": [], + "resultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "resultLabel": "Payment terms", + "resultLineId": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "payt" + }, + { + "amendmentDate": "2025-08-27T15:44:07.122Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"validatedBy\":\"Emma Cleaner\",\"amendmentDate\":\"2025-08-27T15:44:07.122Z\",\"validationDate\":\"2025-08-27T15:45:14.395Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[]}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": false, + "level": "DEFENDANT", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "0a9fd761-8dfd-4ea2-8bdd-35974021dc45" + ], + "prompts": [ + { + "id": "ee7d253a-c629-11e8-a355-529269fb1459", + "label": "Date to pay in full by", + "promptRef": "PBD", + "value": "2025-12-12" + } + ], + "resultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", + "resultLabel": "Pay by date", + "resultLineId": "220f8b93-1add-4de7-89d0-e505801a10d7", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "pdate" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[{\"type\":\"DATE\",\"label\":\"End Date\",\"value\":\"2025-11-11\",\"promptId\":\"d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9\",\"promptRef\":\"endDate\"},{\"type\":\"FIXL\",\"label\":\"Responsible officer\",\"value\":\"the officer in charge of the Attendance Centre\",\"promptId\":\"29f5b3c7-8d15-4606-9dcf-23f32a21b5ef\",\"promptRef\":\"responsibleOfficer\"}],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "F", + "childResultLineIds": [ + "bb58dbef-c2a1-4473-a34c-eb5570a188b1", + "bb477cfe-abbb-418c-b148-0ca9edfffc41" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "prompts": [ + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "promptRef": "endDate", + "value": "2025-11-11" + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "promptRef": "responsibleOfficer", + "value": "the officer in charge of the Attendance Centre" + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "promptRef": "supervisingCourt", + "value": "Aberystwyth Magistrates' Court" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "promptRef": "probationteamtobenotifiedOrganisationName", + "value": "Midlands Division NPS" + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "promptRef": "probationteamtobenotifiedEmailAddress1", + "value": "midlandsnps.court@justice.gov.uk" + } + ], + "resultDefinitionId": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "resultLabel": "Community order England / Wales", + "resultLineId": "8ac5068c-dc0c-4a28-a3ca-9365dd349f49", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "coew" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [ + "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6" + ], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" + ], + "prompts": [], + "resultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "resultLabel": "Community requirements", + "resultLineId": "bb58dbef-c2a1-4473-a34c-eb5570a188b1", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "crs" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "I", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "8ac5068c-dc0c-4a28-a3ca-9365dd349f49" + ], + "prompts": [], + "resultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "resultLabel": "Is electronic monitoring required", + "resultLineId": "bb477cfe-abbb-418c-b148-0ca9edfffc41", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "emreq" + }, + { + "amendmentDate": "2025-08-27T15:45:56.846Z", + "amendmentReason": "Admin error on shared result (a result recorded incorrectly)", + "amendmentReasonId": "ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0", + "amendmentsLog": "{\"isAmended\":true,\"amendmentsRecord\":[{\"amendedBy\":\"Erica Wilson\",\"amendmentDate\":\"2025-08-27T15:45:56.846Z\",\"amendmentReason\":{\"id\":\"ca8b8285-5fc7-3b36-aa78-ecdf5ac6dad0\",\"seqNo\":10,\"reasonCode\":\"AE\",\"reasonDescription\":\"Admin error on shared result (a result recorded incorrectly)\"},\"resultPromptsRecord\":[],\"validatedBy\":\"Emma Cleaner\",\"validationDate\":\"2025-08-27T15:47:35.184Z\"}]}", + "caseId": "b7dfc84a-6dae-4525-87bd-2bad90ce0dc2", + "category": "A", + "childResultLineIds": [], + "defendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "isComplete": true, + "isDeleted": false, + "isModified": true, + "level": "OFFENCE", + "masterDefendantId": "686e785b-105e-41a5-b22a-a689843d051f", + "nonStandaloneAncillaryResult": false, + "offenceId": "6910c878-e945-4177-b15f-f619b2bc7dae", + "orderedDate": "2025-08-27", + "parentResultLineIds": [ + "bb58dbef-c2a1-4473-a34c-eb5570a188b1" + ], + "prompts": [ + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "promptRef": "underDirectionOf", + "value": "test" + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "promptRef": "periodOfTreatment", + "value": "2 Months" + } + ], + "resultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "resultLabel": "Alcohol treatment", + "resultLineId": "42cbc2f3-7366-4ad3-af1a-f399e1c7c0c6", + "shadowListed": false, + "sharedDate": "2025-08-27", + "shortCode": "atr" + } + ], + "shadowListed": false, + "targetId": "6910c878-e945-4177-b15f-f619b2bc7dae" + } + ], + "defendantDetailsChanged": [], + "isReshare": true, + "newAmendmentResults": [ + { + "id": "30f1573b-0dfb-4eea-a6b2-33ce0b1a1057", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "cffb881f-9c55-423e-99f4-683d6da08a14", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "294f8c31-e2d5-4f18-9e4e-6f4b072ebe80", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "32ae2771-7103-4558-aaec-2ca575dc74a7", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "0a9fd761-8dfd-4ea2-8bdd-35974021dc45", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "220f8b93-1add-4de7-89d0-e505801a10d7", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "065c3bb0-94e4-453a-acf4-240c514c126c", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "886f3820-ce92-4e35-8222-b13ee2849a83", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + }, + { + "id": "ace3472e-e554-419d-833d-58e475369166", + "amendmentDateTime": "2025-08-27T16:00:26.502Z" + } + ], + "hearingDay": "2025-08-27", + "version": 37 +} \ No newline at end of file diff --git a/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json b/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json index 0151a921c3..64f88b39bd 100644 --- a/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json +++ b/hearing-event/hearing-event-processor/src/test/resources/result-definitions.json @@ -22,7 +22,6 @@ "Review" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "C", @@ -39,7 +38,6 @@ "financial": "N", "reference": "hCHOUSEOrganisationName", "userGroups": [ - ], "min": "", "max": "", @@ -63,7 +61,6 @@ "financial": "N", "reference": "hCHOUSEAddress1", "userGroups": [ - ], "min": "", "max": "", @@ -87,7 +84,6 @@ "financial": "N", "reference": "hCHOUSEAddress2", "userGroups": [ - ], "min": "", "max": "", @@ -111,7 +107,6 @@ "financial": "N", "reference": "hCHOUSEAddress3", "userGroups": [ - ], "min": "", "max": "", @@ -135,7 +130,6 @@ "financial": "N", "reference": "hCHOUSEAddress4", "userGroups": [ - ], "min": "", "max": "", @@ -159,7 +153,6 @@ "financial": "N", "reference": "hCHOUSEAddress5", "userGroups": [ - ], "min": "", "max": "", @@ -183,7 +176,6 @@ "financial": "N", "reference": "hCHOUSEPostCode", "userGroups": [ - ], "min": "", "max": "", @@ -207,7 +199,6 @@ "financial": "N", "reference": "hCHOUSEEmailAddress1", "userGroups": [ - ], "min": "", "max": "", @@ -231,7 +222,6 @@ "financial": "N", "reference": "hCHOUSEEmailAddress2", "userGroups": [ - ], "min": "", "max": "", @@ -256,7 +246,6 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -265,20 +254,23 @@ "associatedWithReferenceData": false }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null }, { "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", @@ -290,7 +282,6 @@ "financial": "N", "reference": "timeOfHearing", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -308,7 +299,6 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ - ], "min": "1", "max": "99", @@ -329,7 +319,6 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ - ], "min": "1", "max": "50", @@ -349,7 +338,6 @@ "financial": "N", "reference": "defendantToAttendReview", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -419,7 +407,6 @@ "Years" ], "userGroups": [ - ], "min": "1", "max": "1", @@ -444,7 +431,6 @@ "Months" ], "userGroups": [ - ], "min": "1", "max": "1", @@ -469,7 +455,6 @@ "Attend" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -490,7 +475,6 @@ "Review" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "C", @@ -507,7 +491,6 @@ "financial": "N", "reference": "courthousenameOrganisationName", "userGroups": [ - ], "min": "1", "max": "100", @@ -531,7 +514,6 @@ "financial": "N", "reference": "courthousenameAddress1", "userGroups": [ - ], "min": "1", "max": "100", @@ -555,7 +537,6 @@ "financial": "N", "reference": "courthousenameAddress2", "userGroups": [ - ], "min": "1", "max": "100", @@ -579,7 +560,6 @@ "financial": "N", "reference": "courthousenameAddress3", "userGroups": [ - ], "min": "1", "max": "100", @@ -603,7 +583,6 @@ "financial": "N", "reference": "courthousenameAddress4", "userGroups": [ - ], "min": "1", "max": "100", @@ -627,7 +606,6 @@ "financial": "N", "reference": "courthousenameAddress5", "userGroups": [ - ], "min": "1", "max": "100", @@ -651,7 +629,6 @@ "financial": "N", "reference": "courthousenamePostCode", "userGroups": [ - ], "min": "1", "max": "100", @@ -675,7 +652,6 @@ "financial": "N", "reference": "courthousenameEmailAddress1", "userGroups": [ - ], "min": "1", "max": "100", @@ -699,7 +675,6 @@ "financial": "N", "reference": "courthousenameEmailAddress2", "userGroups": [ - ], "min": "1", "max": "100", @@ -724,7 +699,6 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ - ], "min": "1", "max": "70", @@ -744,7 +718,6 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ - ], "min": "1", "max": "99", @@ -765,7 +738,6 @@ "financial": "N", "reference": "underDirectionOf", "userGroups": [ - ], "min": "1", "max": "50", @@ -785,7 +757,6 @@ "financial": "N", "reference": "treatmentPlace", "userGroups": [ - ], "min": "1", "max": "200", @@ -805,7 +776,6 @@ "financial": "N", "reference": "firstReviewTime", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -823,7 +793,6 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -832,22 +801,24 @@ "associatedWithReferenceData": false }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null } - ], "welshLabel": "Adsefydlu defnyddiwr cyffuriau - preswyl gydag adolygiad", "financial": "N", @@ -910,7 +881,6 @@ "Years" ], "userGroups": [ - ], "min": "1", "max": "1", @@ -935,7 +905,6 @@ "Months" ], "userGroups": [ - ], "min": "1", "max": "1", @@ -960,7 +929,6 @@ "Attend" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -981,7 +949,6 @@ "Review" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "C", @@ -998,7 +965,6 @@ "financial": "N", "reference": "courthousenameOrganisationName", "userGroups": [ - ], "min": "1", "max": "100", @@ -1022,7 +988,6 @@ "financial": "N", "reference": "courthousenameAddress1", "userGroups": [ - ], "min": "1", "max": "100", @@ -1046,7 +1011,6 @@ "financial": "N", "reference": "courthousenameAddress2", "userGroups": [ - ], "min": "1", "max": "100", @@ -1070,7 +1034,6 @@ "financial": "N", "reference": "courthousenameAddress3", "userGroups": [ - ], "min": "1", "max": "100", @@ -1094,7 +1057,6 @@ "financial": "N", "reference": "courthousenameAddress4", "userGroups": [ - ], "min": "1", "max": "100", @@ -1118,7 +1080,6 @@ "financial": "N", "reference": "courthousenameAddress5", "userGroups": [ - ], "min": "1", "max": "100", @@ -1142,7 +1103,6 @@ "financial": "N", "reference": "courthousenamePostCode", "userGroups": [ - ], "min": "1", "max": "100", @@ -1166,7 +1126,6 @@ "financial": "N", "reference": "courthousenameEmailAddress1", "userGroups": [ - ], "min": "1", "max": "100", @@ -1190,7 +1149,6 @@ "financial": "N", "reference": "courthousenameEmailAddress2", "userGroups": [ - ], "min": "1", "max": "100", @@ -1215,7 +1173,6 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ - ], "min": "1", "max": "70", @@ -1235,7 +1192,6 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ - ], "min": "1", "max": "99", @@ -1256,7 +1212,6 @@ "financial": "N", "reference": "underDirectionOf", "userGroups": [ - ], "min": "1", "max": "50", @@ -1276,7 +1231,6 @@ "financial": "N", "reference": "treatmentPlace", "userGroups": [ - ], "min": "1", "max": "200", @@ -1296,7 +1250,6 @@ "financial": "N", "reference": "treatmentIntervals", "userGroups": [ - ], "min": "1", "max": "100", @@ -1316,7 +1269,6 @@ "financial": "N", "reference": "additionalInformation", "userGroups": [ - ], "min": "1", "max": "150", @@ -1336,7 +1288,6 @@ "financial": "N", "reference": "firstReviewTime", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -1354,7 +1305,6 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -1363,20 +1313,23 @@ "associatedWithReferenceData": false }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null } ], "welshLabel": "Adsefydlu defnyddiwr cyffuriau - dibreswyl gydag adolygiad", @@ -1424,7 +1377,6 @@ "Review" ], "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "C", @@ -1441,7 +1393,6 @@ "financial": "N", "reference": "hCHOUSEOrganisationName", "userGroups": [ - ], "min": "", "max": "", @@ -1465,7 +1416,6 @@ "financial": "N", "reference": "hCHOUSEAddress1", "userGroups": [ - ], "min": "", "max": "", @@ -1489,7 +1439,6 @@ "financial": "N", "reference": "hCHOUSEAddress2", "userGroups": [ - ], "min": "", "max": "", @@ -1513,7 +1462,6 @@ "financial": "N", "reference": "hCHOUSEAddress3", "userGroups": [ - ], "min": "", "max": "", @@ -1537,7 +1485,6 @@ "financial": "N", "reference": "hCHOUSEAddress4", "userGroups": [ - ], "min": "", "max": "", @@ -1561,7 +1508,6 @@ "financial": "N", "reference": "hCHOUSEAddress5", "userGroups": [ - ], "min": "", "max": "", @@ -1585,7 +1531,6 @@ "financial": "N", "reference": "hCHOUSEPostCode", "userGroups": [ - ], "min": "", "max": "", @@ -1609,7 +1554,6 @@ "financial": "N", "reference": "hCHOUSEEmailAddress1", "userGroups": [ - ], "min": "", "max": "", @@ -1633,7 +1577,6 @@ "financial": "N", "reference": "hCHOUSEEmailAddress2", "userGroups": [ - ], "min": "", "max": "", @@ -1658,7 +1601,6 @@ "financial": "N", "reference": "firstReviewDate", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -1667,20 +1609,23 @@ "associatedWithReferenceData": false }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null }, { "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", @@ -1692,7 +1637,6 @@ "financial": "N", "reference": "timeOfHearing", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -1710,7 +1654,6 @@ "financial": "N", "reference": "HCROOM", "userGroups": [ - ], "min": "1", "max": "99", @@ -1731,7 +1674,6 @@ "financial": "N", "reference": "reviewFrequency", "userGroups": [ - ], "min": "1", "max": "50", @@ -1751,7 +1693,6 @@ "financial": "N", "reference": "defendantToAttendReview", "userGroups": [ - ], "courtExtract": "Y", "jurisdiction": "B", @@ -1784,34171 +1725,63524 @@ "isBooleanResult": false }, { - "id" : "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", - "label" : "Adjournment reason: Unexpected circumstances meant that the case could not be heard", - "shortCode" : "UNF", - "level" : "O", - "rank" : 11100, - "canBeSubjectOfBreach" : true, - "canBeSubjectOfVariation" : true, - "wordGroups" : [ { - "wordGroup" : [ "unexpected", "circumstances" ] - }, { - "wordGroup" : [ "adjournment", "unforseen" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros ohirio: Gwrthodwyd gohirio’r achos", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "KU", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "alwaysPublished" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", - "label" : "Adjournment reason: Insufficient court time to hear the case", - "shortCode" : "INSUF", - "level" : "O", - "rank" : 11200, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "insufficient", "Time" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio: Nid oedd digon o amser i wrando'r achos", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "KQ", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, - { - "id" : "9fd6a4ef-1055-4e54-b035-f1130a524388", - "label" : "Adjournment reason: Non-standard reason", - "shortCode" : "NSR", - "level" : "O", - "rank" : 11300, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "reason", "other" ] - }, { - "wordGroup" : [ "adjournment", "reason", "non-standard" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "28a271c5-aff0-4e60-b599-88e441960699", - "label" : "Reason for adjournment", - "welshLabel" : "Rheswm dros ohirio", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "NSR", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros ohirio: Rheswm ansafonol", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, - { - "id" : "29e02fa1-42ce-4eec-914e-e62508397a16", - "label" : "No compensation reason", - "shortCode" : "NCR", - "level" : "O", - "rank" : 11400, - "wordGroups" : [ { - "wordGroup" : [ "compensation", "no" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e263de82-47ca-433a-bb41-cad2e1c5bb72", - "label" : "Reason for no compensation", - "welshLabel" : "Rheswm dros beidio â rhoi iawndal", - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "5f29ba24-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : "reasonForNoCompensation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros beidio â dyfarnu iawndal", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, - { - "id" : "baf94928-04ae-4609-8e96-efc9f081b2be", - "label" : "No order for costs", - "shortCode" : "NCOSTS", - "level" : "O", - "rank" : 11500, - "wordGroups" : [ { - "wordGroup" : [ "no", "Costs" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "be2a46db-709d-4e0d-9b63-aeb831564c1d", - "label" : "Reason for no costs", - "welshLabel" : "", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "reasonForNoCosts", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "52770cf4-41a8-4c04-a41c-2b12a95cb8dd", - "label" : "Defendant has died", - "shortCode" : "dead", - "level" : "O", - "rank" : 11600, - "wordGroups" : [ { - "wordGroup" : [ "dead" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2065", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8f9539a0-bd05-4002-9146-d55920cbab9e", - "label" : "Defendant committed suicide", - "shortCode" : "deads", - "level" : "O", - "rank" : 11700, - "wordGroups" : [ { - "wordGroup" : [ "deads" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2503", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4632d712-6cf7-4929-af0d-9bf4a4436ee3", - "label" : "The Court did not proceed with the trial in the defendant's absence", - "shortCode" : "NOTRIAL", - "level" : "O", - "rank" : 11800, - "wordGroups" : [ { - "wordGroup" : [ "trial", "adjourned" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "reason", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "88fd00c6-d63c-4f4e-9a86-4628856a9557", - "label" : "No evidence offered - verdict of not guilty by order of Judge", - "shortCode" : "NGJ", - "level" : "O", - "rank" : 11900, - "wordGroups" : [ { - "wordGroup" : [ "judge", "not", "guilty" ] - }, { - "wordGroup" : [ "prosecution", "no", "evidence" ] - }, { - "wordGroup" : [ "prosecution", "neo" ] - }, { - "wordGroup" : [ "no", "evidence" ] - }, { - "wordGroup" : [ "not", "guilty" ] - }, { - "wordGroup" : [ "NGJ" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2050", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "14d66587-8fbe-424f-a369-b1144f1684e3", - "label" : "Dismissed", - "shortCode" : "DISM", - "level" : "O", - "rank" : 12000, - "wordGroups" : [ { - "wordGroup" : [ "DISM" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2006", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "56e808c5-cd8f-4882-b8e2-c2f615e09c11", - "label" : "Criminal behaviour order", - "shortCode" : "CRIMBO", - "level" : "O", - "rank" : 12100, - "wordGroups" : [ { - "wordGroup" : [ "criminal", "behaviour", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6c3f5d58-d206-46ca-a652-23ee198b371a", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c3f5d58-d206-46ca-a652-23ee198b371a", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c3f5d58-d206-46ca-a652-23ee198b371a", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label" : "Start date of order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4461f7f5-f984-4b6d-9f60-3084e5071382", - "label" : "Requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label" : "Supervisor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label" : "Supervisor's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1177", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c2fa19f6-dabf-43fc-9f12-2347fc9b8cc5", - "label" : "Interim criminal behaviour order", - "shortCode" : "CRIMBI", - "level" : "O", - "rank" : 12200, - "wordGroups" : [ { - "wordGroup" : [ "interim", "criminal", "behaviour", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4461f7f5-f984-4b6d-9f60-3084e5071382", - "label" : "Requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label" : "Supervisor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label" : "Supervisor's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1178", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3cf4b38f-004d-4eb4-8fdb-5d285c11ab47", - "label" : "Criminal behaviour order variation", - "shortCode" : "CRIMBV", - "level" : "O", - "rank" : 12300, - "wordGroups" : [ { - "wordGroup" : [ "criminal", "behaviour", "Order", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "84f70920-235c-4747-a0d5-545a2f761b37", - "label" : "Name of person on criminal behaviour order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3e9e09fd-f512-4cd1-95ad-f4ddd06a0d41", - "label" : "Date original criminal behaviour order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d2b6a2eb-53e5-440b-991d-65ee4ef806a0", - "label" : "Requirements (added, varied or removed)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label" : "Supervisor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label" : "Supervisor's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd92da3a-193a-4b87-98ae-b8622f4148ce", - "label" : "Prohibitions (added, varied or removed)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d2ed5c6c-2ebc-421b-834b-6f66ecb90e4e", - "label" : "Is the person on the original order a youth?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b509d44-fb0e-463f-8b7f-675cb6903265", - "label" : "Parent's name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", - "label" : "Parent's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1177", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "23d744a1-d71c-4849-b6a3-b736d71ea438", - "label" : "No video link reason", - "shortCode" : "NOVID", - "level" : "O", - "rank" : 12400, - "wordGroups" : [ { - "wordGroup" : [ "no", "video", "link" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "318c9eb2-cf3c-4592-a353-1b2166c15f81", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7959646e-ce77-4862-b6fe-5fb3a953c427", - "label" : "Order discharged", - "shortCode" : "ODIS", - "level" : "O", - "rank" : 12500, - "wordGroups" : [ { - "wordGroup" : [ "Order", "discharged" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "27c32341-8aed-4ccc-8894-7adb6f5eaf55", - "label" : "Type of order discharged", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "44554ccd-9975-4e36-b06d-8f58aebe788c", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47f34fca-6355-4612-881a-07a2121b86ba", - "label" : "Supervising court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "204fc6b8-d6c9-4fb8-acd0-47d23c087625", - "label" : "No surcharge", - "shortCode" : "NOVS", - "level" : "D", - "rank" : 13100, - "wordGroups" : [ { - "wordGroup" : [ "no", "surcharge" ] - }, { - "wordGroup" : [ "no", "vs" ] - }, { - "wordGroup" : [ "no", "victim", "surcharge" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "042742a1-8d47-4558-9b3e-9f34b358e034", - "label" : "Reason for no surcharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9fdeff80-84c8-4dc0-8fcf-f8805d8e57ee", - "label" : "Surcharge reduced", - "shortCode" : "VSR", - "level" : "D", - "rank" : 13200, - "wordGroups" : [ { - "wordGroup" : [ "vs", "reduced" ] - }, { - "wordGroup" : [ "surcharge", "reduced" ] - }, { - "wordGroup" : [ "victim", "surcharge", "reduced" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "910d207e-29ac-4891-b0f8-4d0ade9ac224", - "label" : "Reason for reducing surcharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c3179e14-8754-4496-9190-3a9e47da0af7", - "label" : "Football banning order", - "shortCode" : "FBO", - "level" : "O", - "rank" : 13300, - "wordGroups" : [ { - "wordGroup" : [ "FBO" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", - "label" : "Police station name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "192c8ce6-57dd-463a-b588-bb7189f4c4c1", - "label" : "Police station address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "243f72af-801e-409e-b807-8878719d832a", - "label" : "Report within 5 days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", - "label" : "Reasons for making the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "164d3778-bb74-4bdb-b006-8df4cd05a905", - "label" : "Additional requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", - "label" : "Prison address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3068", - "adjournment" : false, - "convicted" : true, - "qualifier" : "FA", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "adf86eb7-2eb7-4575-bab5-63001eb23382", - "label" : "Football banning order terminated", - "shortCode" : "FBOT", - "level" : "O", - "rank" : 13400, - "wordGroups" : [ { - "wordGroup" : [ "FBO", "terminated" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", - "label" : "End date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", - "label" : "Prison address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "73265700-cb68-4a88-86a8-53fcc6f5d6ba", - "label" : "Football banning order varied", - "shortCode" : "FBOV", - "level" : "O", - "rank" : 13500, - "wordGroups" : [ { - "wordGroup" : [ "FBO", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f4ffbd41-eea5-4465-b910-b1eaf033d30e", - "label" : "Details of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "297a984c-71fa-436e-b9bd-068255e6d530", - "label" : "Original court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", - "label" : "Prison address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fefede3e-436b-4cd6-a967-7c63d1cb4bce", - "label" : "Football banning order termination refused", - "shortCode" : "FBOTR", - "level" : "O", - "rank" : 13600, - "wordGroups" : [ { - "wordGroup" : [ "fbo. terminated", "refused" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d14c2611-0b4c-478c-a1ec-53bf44bcaa1f", - "label" : "Football banning order arising from offence outside England and Wales", - "shortCode" : "FBOI", - "level" : "O", - "rank" : 13700, - "wordGroups" : [ { - "wordGroup" : [ "FBO", "England" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", - "label" : "Police station name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "192c8ce6-57dd-463a-b588-bb7189f4c4c1", - "label" : "Police station address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "243f72af-801e-409e-b807-8878719d832a", - "label" : "Report within 5 days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", - "label" : "Reasons for making the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "164d3778-bb74-4bdb-b006-8df4cd05a905", - "label" : "Additional requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3068", - "adjournment" : false, - "convicted" : false, - "qualifier" : "FB", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5e272729-a76b-485c-8784-bddef53f700e", - "label" : "No football banning order", - "shortCode" : "NFBO", - "level" : "O", - "rank" : 13800, - "wordGroups" : [ { - "wordGroup" : [ "no", "FBO" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "46afed44-cb35-43bb-9f7e-78c4d9be298f", - "label" : "Reasons for not making a football banning order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c4705a6b-7914-4fc8-bf1e-3553ff1cccf5", - "label" : "Declaration of relevance relating to football matches", - "shortCode" : "DRF", - "level" : "O", - "rank" : 13900, - "wordGroups" : [ { - "wordGroup" : [ "declaration", "football", "match" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e44817e6-cc08-464f-8c21-1f3ba0af562d", - "label" : "Type of football match", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "5ba4aaa6-04d9-4495-bcad-6d1006209ea6", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3099", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e2f51977-ea53-4ac8-8951-75975da06bc5", - "label" : "Bind over to keep the peace", - "shortCode" : "BOCOND", - "level" : "O", - "rank" : 14000, - "wordGroups" : [ { - "wordGroup" : [ "bind", "over" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label" : "Amount of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a8ca6ddf-6dbd-4cc8-9699-7902297157df", - "label" : "Conduct or activity to be refrained from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "516dbb2c-d9e1-4186-b458-e3b6f798db58", - "label" : "To keep the peace especially towards - name of person", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1016", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "label" : "Community requirement: Drug rehabilitation non-residential", - "shortCode" : "DRWR", - "level" : "O", - "rank" : 2100, - "wordGroups" : [ { - "wordGroup" : [ "Drug", "Rehabilitation", "Non-residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ - - { - "id" : "f092fe58-2297-4d10-818a-8b303692ac39", - "label" : "Under direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "underDirectionOf", - "courtExtract" : "Y", - "durationSequence" : null - }, - { - "id" : "10028ef8-efc7-4a40-9703-1e121a6fbc84", - "label" : "Period to provide samples", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodToProvideSamples", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0b74fb53-acb7-42db-b9b6-976ce74b59b5", - "label" : "Treatment place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "treatmentPlace", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6aaf3645-0806-4917-ada5-b019c6a606c5", - "label" : "Treatment intervals", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3109", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BS", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "76c0d994-decd-4a2a-93ca-958f4595181e", - "label" : "Bind over to come up for judgment when called on", - "shortCode" : "BOJ", - "level" : "O", - "rank" : 14100, - "wordGroups" : [ { - "wordGroup" : [ "bind", "over", "judgement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label" : "Amount of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "407bf65d-8be7-4996-b7e7-91d0ae7dfa75", - "label" : "Conditions of bind over to be complied with", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1016", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2c2bc8f2-4dd5-4670-b391-bdaca5b3e4f0", - "label" : "Bind over witness to keep the peace", - "shortCode" : "BOW", - "level" : "O", - "rank" : 14200, - "wordGroups" : [ { - "wordGroup" : [ "bind", "over", "witness", "peace" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", - "label" : "Witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e23c9dab-1dc4-4522-86db-2bcd29121134", - "label" : "Witness address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label" : "Amount of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a8ca6ddf-6dbd-4cc8-9699-7902297157df", - "label" : "Conduct or activity to be refrained from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "516dbb2c-d9e1-4186-b458-e3b6f798db58", - "label" : "To keep the peace especially towards - name of person", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1016", - "adjournment" : false, - "convicted" : false, - "qualifier" : "W", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "92a97bb2-adfe-42bd-a705-6f538b3145f9", - "label" : "Sexual harm prevention order for period", - "shortCode" : "shopp", - "level" : "O", - "rank" : 14300, - "wordGroups" : [ { - "wordGroup" : [ "shopp" ] - }, { - "wordGroup" : [ "sexual", "harm", "prevention", "Order", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4aee5e0c-959b-4ed9-b589-71c1fe28134d", - "label" : "Type of order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1179", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7fd3992e-c1dd-4fd1-abbc-a816f1250bae", - "label" : "Sexual harm prevention order until further order", - "shortCode" : "SHOPF", - "level" : "O", - "rank" : 14400, - "wordGroups" : [ { - "wordGroup" : [ "sexual", "harm", "prevention", "Order", "Further" ] - }, { - "wordGroup" : [ "shopo", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4aee5e0c-959b-4ed9-b589-71c1fe28134d", - "label" : "Type of order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1179", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2b418a7d-a48d-4c75-a912-8112f1010ab9", - "label" : "Sexual harm prevention order until end date", - "shortCode" : "SHOPE", - "level" : "O", - "rank" : 14500, - "wordGroups" : [ { - "wordGroup" : [ "shopo", "until" ] - }, { - "wordGroup" : [ "sexual", "harm", "prevention", "Order", "until" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4aee5e0c-959b-4ed9-b589-71c1fe28134d", - "label" : "Type of order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "eea72b76-275c-4eef-9021-a99c59d088cc", - "label" : "End date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "Date", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1179", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "69cf9e2e-f117-4311-952d-e286af84c3be", - "label" : "Sexual harm prevention order varied", - "shortCode" : "SHOPV", - "level" : "O", - "rank" : 14600, - "wordGroups" : [ { - "wordGroup" : [ "shopo", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "671e3bd7-0c84-461c-aada-7c73d6fad03b", - "label" : "Type of sexual harm prevention order varied", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label" : "Date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "Date", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94514093-d8de-4400-93de-9e3366f5af8c", - "label" : "Name of defendant on original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label" : "Name of court that made the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2def6a67-bdb7-4596-8544-53ebb5811880", - "label" : "Variation of prohibitions (other than foreign)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f0b5c085-202d-4b96-9409-959f950c6bf3", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label" : "Start date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03501a9a-2668-4587-acc1-b8e880f7c3f4", - "label" : "Parent's name (deft is a youth)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", - "label" : "Parent's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dc954e27-f35a-46e2-98a2-9e0ca1fbabb4", - "label" : "Total suspended detention", - "shortCode" : "STDET", - "level" : "D", - "rank" : 14700, - "wordGroups" : [ { - "wordGroup" : [ "Total", "SSO", "detention" ] - }, { - "wordGroup" : [ "STDET" ] - }, { - "wordGroup" : [ "Total", "suspended", "detention" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "699055ee-d41c-4311-91bd-b8ca38aaca84", - "label" : "Suspended period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 2 - }, { - "id" : "699055ee-d41c-4311-91bd-b8ca38aaca84", - "label" : "Suspended period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 2 - }, { - "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label" : "Supervision period", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label" : "Supervision period", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label" : "Supervision period", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", - "label" : "Supervision period", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06a61bd3-ca3e-4871-b83e-000dfb6289e5", - "label" : "Judge reserves review hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : [ "Review" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1300, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc01db7c-d110-4d3c-9efa-d05a72742ddb", - "label" : "Review frequency", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc256fd1-dedd-43ab-8882-f9fbb448a62d", - "label" : "First review date", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", - "label" : "Time of hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dab2947a-9b21-450e-8fd1-d82ea3e0f42f", - "label" : "Courthouse", - "welshLabel" : "Adeilad llys", - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "335094b9-94ab-44de-b43e-8fcbc7600008", - "label" : "Courthouse", - "welshLabel" : "Adeilad llys", - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d6ac217f-6864-416e-89cf-3f31e1885cfc", - "label" : "Courtroom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ccb76b76-b883-41c3-bd5c-7723531a8909", - "label" : "Defendant to attend review", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6d72674d-1ca6-490a-a1c4-0a6404169f66", - "label" : "Disqualification from involvement as a director etc of a company", - "shortCode" : "DCO", - "level" : "O", - "rank" : 14800, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "director" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label" : "Duration of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label" : "Duration of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e7e298e3-4182-4e0a-b7d4-75f223a36549", - "label" : "Specify Section of Company Directors Disqualification Act 1986", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "350608f2-3deb-4c23-9643-1c7ad33a09f7", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "89cea994-e319-4a90-8899-8a4fd03e3afa", - "label" : "Disqualification start date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "21aadaea-89ef-424c-8606-b5d74811aeaf", - "label" : "Section 243 exemption applies", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0491c27e-7fdb-4e93-9358-620332372f25", - "label" : "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3002", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5fed2cbd-0d51-4848-8f9b-f0e574e9b0e7", - "label" : "Disqualification against a body corporate / firm", - "shortCode" : "DCOB", - "level" : "O", - "rank" : 14900, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "firm" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label" : "Duration of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7e722068-37c0-4d15-b630-7e2b23fcea91", - "label" : "Duration of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e7e298e3-4182-4e0a-b7d4-75f223a36549", - "label" : "Specify Section of Company Directors Disqualification Act 1986", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "350608f2-3deb-4c23-9643-1c7ad33a09f7", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "89cea994-e319-4a90-8899-8a4fd03e3afa", - "label" : "Disqualification start date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "543324ec-da1d-456b-8d9f-32300f8fe371", - "label" : "Company registration number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "64a61a50-ba04-46f8-b624-09494db4bb5a", - "label" : "Country of registration", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0491c27e-7fdb-4e93-9358-620332372f25", - "label" : "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bcf1b451-af1e-4603-9605-586310d0e61e", - "label" : "Community requirement: Drug rehabilitation residential", - "shortCode" : "DRRWR", - "level" : "O", - "rank" : 2200, - "wordGroups" : [ { - "wordGroup" : [ "Drug", "Rehabilitation", "Residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "10028ef8-efc7-4a40-9703-1e121a6fbc84", - "label" : "Period to provide samples", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "10028ef8-efc7-4a40-9703-1e121a6fbc84", - "label" : "Period to provide samples", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f092fe58-2297-4d10-818a-8b303692ac39", - "label" : "Under direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0b74fb53-acb7-42db-b9b6-976ce74b59b5", - "label" : "Treatment place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3109", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ccfc452e-ebe4-4cd7-b8a0-4f90768447b4", - "label" : "Discretionary with ordinary disqualification", - "shortCode" : "DDD", - "level" : "O", - "rank" : 15000, - "wordGroups" : [ { - "wordGroup" : [ "DDD" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", - "label" : "Starting from date (date of interim disqualification)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3071", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "a67b959b-b2e6-4741-b758-d7ef27f973a7", - "label" : "Discretionary with ordinary disqualification for life", - "shortCode" : "DDDL", - "level" : "O", - "rank" : 15100, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", - "label" : "Starting from date (date of interim disqualification)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3071", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "8c81d29b-5621-4f2c-9e05-297241822ba6", - "label" : "Obligatory but reduced disqualification for special reasons", - "shortCode" : "DDDR", - "level" : "O", - "rank" : 15200, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "special", "reasons" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", - "label" : "Starting from date (date of interim disqualification)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dcaf502b-44d2-4be0-acfc-2f7d29142da6", - "label" : "Special reasons", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3070", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "20a7e0f4-abc5-4beb-8af0-a327de1d6e7e", - "label" : "Discretionary with disqualification until ordinary test passed", - "shortCode" : "DDDT", - "level" : "O", - "rank" : 15300, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "test", "until" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", - "label" : "Starting from date (date of interim disqualification)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3071", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "cf8a3c59-63f5-4757-8783-88f1e31aa653", - "label" : "Discretionary disqualification until test passed only", - "shortCode" : "DDDTO", - "level" : "O", - "rank" : 15400, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "test", "until", "only" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3073", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "c2c346d1-dc13-48c8-b557-ef3dabcb1b9b", - "label" : "Obligatory disqualification until extended test passed", - "shortCode" : "DDOTE", - "level" : "O", - "rank" : 15500, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "until", "extended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03fe43ad-1857-4ba1-8481-6c660744b617", - "label" : "Starting from date (date of interim disqualification)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3070", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "73fe22ca-76bd-4aba-bdea-6dfef8ee03a2", - "label" : "Points disqualification", - "shortCode" : "DDP", - "level" : "O", - "rank" : 15600, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "points" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label" : "Notional penalty points", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3072", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "651cbf5b-b7f0-4921-ba01-e18ad2ac763b", - "label" : "Points disqualification for life", - "shortCode" : "DDPL", - "level" : "O", - "rank" : 15700, - "wordGroups" : [ { - "wordGroup" : [ "disqualificatiom", "ponts", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label" : "Notional penalty points", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3072", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "7b0933f8-405e-434a-9bfe-871f794260cb", - "label" : "Points but reduced disqualification for mitigating circumstance", - "shortCode" : "DDPR", - "level" : "O", - "rank" : 15800, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "points", "mitigating" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label" : "Notional penalty points", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a541edb8-fead-4a88-8665-79b5a59c183c", - "label" : "Mitigating circumstances", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "mitigatingCircumStances", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3072", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "097dfa33-6c62-4ed1-af46-6c6786b66d65", - "label" : "Points with disqualification until extended test passed", - "shortCode" : "DDPTE", - "level" : "O", - "rank" : 15900, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "points", "extended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "462d5ba8-7a1c-44a0-a732-6c75601bd6af", - "label" : "Notional penalty points", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3072", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "a5aa694e-4729-40f5-814e-60a75d9429e0", - "label" : "Community requirement: Programme", - "shortCode" : "PR", - "level" : "O", - "rank" : 2300, - "wordGroups" : [ { - "wordGroup" : [ "PR" ] - }, { - "wordGroup" : [ "Programme", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "60e386e4-51df-4c91-81f7-9a25751de426", - "label" : "Number of days", - "welshLabel" : "Nifer o ddyddiau", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3103", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "90ef1e35-b19a-4ad9-a4e1-e511e9d1d00e", - "label" : "Driving Disq - Reduction for course (discretionary)", - "shortCode" : "DDRCD", - "level" : "O", - "rank" : 16000, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "course", "dicretionary" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7326f05d-54b3-450e-92dd-a5bc0710f8f7", - "label" : "Name of course", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "286cc674-a4f8-408e-aa6d-8dbc175ab968", - "label" : "Date by which course must be completed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label" : "Defendant's mobile number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e2ae845f-12f4-498e-bddf-a90c8cb499ba", - "label" : "Defendant's home telephone number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label" : "Special needs", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3071", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "990e8cad-c8e0-4ad9-ba86-13180338986d", - "label" : "Driving Disq - Reduction for course (obligatory)", - "shortCode" : "DDRCO", - "level" : "O", - "rank" : 16100, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "course", "obligatory" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7326f05d-54b3-450e-92dd-a5bc0710f8f7", - "label" : "Name of course", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "286cc674-a4f8-408e-aa6d-8dbc175ab968", - "label" : "Date by which course must be completed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label" : "Defendant's mobile number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e2ae845f-12f4-498e-bddf-a90c8cb499ba", - "label" : "Defendant's home telephone number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label" : "Special needs", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3070", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "7ee02b35-88ca-4acc-ab8b-70f3e95a32d0", - "label" : "Obligatory Disqualification until extended test passed - reduction for course", - "shortCode" : "DDRCOT", - "level" : "O", - "rank" : 16200, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "course", "obligatory", "extended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b36c6fc-eb8e-4651-b88b-944843741c7c", - "label" : "Disqualification reduction period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7326f05d-54b3-450e-92dd-a5bc0710f8f7", - "label" : "Name of course", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "286cc674-a4f8-408e-aa6d-8dbc175ab968", - "label" : "Date by which course must be completed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label" : "Defendant's mobile number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e2ae845f-12f4-498e-bddf-a90c8cb499ba", - "label" : "Defendant's home telephone number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label" : "Special needs", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3070", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "4414bffb-c62e-442c-841a-2ebed0e688b6", - "label" : "Interim disqualification", - "shortCode" : "DDRI", - "level" : "O", - "rank" : 16300, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "inerim" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3096", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "3ae7caf1-d5ff-4534-9fbb-17a3a04cb9ab", - "label" : "Disqualification for non-endorsable offence", - "shortCode" : "DDRN", - "level" : "O", - "rank" : 16400, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "non-endorsable" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label" : "Extension period section 35A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label" : "Extension period section 35B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3094", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "3fa139cc-efe0-422b-93d6-190a5be50953", - "label" : "Driving record endorsed with additional points (points on more than one offence)", - "shortCode" : "LEA", - "level" : "O", - "rank" : 16500, - "wordGroups" : [ { - "wordGroup" : [ "endorsed", "Additional", "points" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a8719de4-7783-448a-b792-e3f94e670ad0", - "label" : "Penalty points for this offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PENPT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bbbb47bb-3418-463c-bfc3-43c6f72bb7c9", - "label" : "Reasons for imposing penalty points on more than one offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3008", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "b0aeb4fc-df63-4e2f-af88-97e3f23e847f", - "label" : "Driving record endorsed (no points)", - "shortCode" : "LEN", - "level" : "O", - "rank" : 16600, - "wordGroups" : [ { - "wordGroup" : [ "endorsed", "no", "points" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3008", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "cee54856-4450-4f28-a8a9-72b688726201", - "label" : "Driving record endorsed with penalty points", - "shortCode" : "LEP", - "level" : "O", - "rank" : 16700, - "wordGroups" : [ { - "wordGroup" : [ "endorsed", "points" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a8719de4-7783-448a-b792-e3f94e670ad0", - "label" : "Penalty points for this offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PENPT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3008", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "af322d0a-ba2a-47f1-8d46-7b3ea423d689", - "rollUpPrompts": true, - "publishedForNows": true, - "label" : "No disqualification - Mitigating Circumstances", - "shortCode" : "NDMC", - "level" : "C", - "rank" : 16800, - "wordGroups" : [ { - "wordGroup" : [ "no", "disqualification", "mitigating" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a541edb8-fead-4a88-8665-79b5a59c183c", - "label" : "Mitigating circumstances", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "mitigatingCircumStances", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3509", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "808313d1-f450-4410-b2f1-97409d7b4074", - "label" : "No disqualification - Special Reasons", - "shortCode" : "NDSR", - "level" : "O", - "rank" : 16900, - "wordGroups" : [ { - "wordGroup" : [ "no", "disqualification", "special", "reason" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dcaf502b-44d2-4be0-acfc-2f7d29142da6", - "label" : "Special reasons", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3509", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "label" : "Community requirement: Rehabilitation activity", - "shortCode" : "RAR", - "level" : "O", - "rank" : 2400, - "wordGroups" : [ { - "wordGroup" : [ "Rehabilitation", "Activity" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1bc7246f-89f2-4b2f-b765-d01297d7b4aa", - "label" : "Max number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3149", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f121db73-57fb-4f74-9ab1-0843aabe4605", - "label" : "No endorsement - Special Reasons", - "shortCode" : "NESR", - "level" : "O", - "rank" : 17000, - "wordGroups" : [ { - "wordGroup" : [ "no", "endorsement", "special", "reason" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "dcaf502b-44d2-4be0-acfc-2f7d29142da6", - "label" : "Special reasons", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3508", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b5ee3936-2cd5-47f4-9192-3737c7093a7f", - "label" : "Removal of Driving Disqualification", - "shortCode" : "RDD", - "level" : "O", - "rank" : 17100, - "wordGroups" : [ { - "wordGroup" : [ "remove", "disqualification" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fb28be9c-0f74-4c02-a70e-0fffa9b0614b", - "label" : "Date disqualification imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7a6d9bb9-a042-4234-8b92-d871437fd15a", - "label" : "Date disqualification ends", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "73f005c6-11e7-4d45-a378-85ea5919e553", - "label" : "Original date of conviction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "37ee2b08-1950-4b04-bea5-f6f66b768bb0", - "label" : "Original offence date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5813ddb2-e987-44fd-bdcf-4148e6fb9cda", - "label" : "DVLA offence code", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "84a42b46-f384-410d-a4d9-46fe0cb74678", - "label" : "Applicant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c70597c0-a333-4828-959f-e6c8174a311c", - "label" : "Original convicting court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "663d9c78-0e56-4931-9f3a-5301a7e94147", - "label" : "Disqualification for non-endorsable offence (assault by driving a motor vehicle)", - "shortCode" : "DDRA", - "level" : "O", - "rank" : 17200, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "non-endorsable", "assault" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7a353b75-acd8-4a69-b779-d14c194fa3fd", - "label" : "Extension period section 147A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "975c0985-7ee4-4560-85fc-5eecf97f9b34", - "label" : "Extension period section 147B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3095", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "6ef33dcf-3fd3-46d6-bc41-f7bfb7f5ced6", - "label" : "Disqualification for non-endorsable offence (vehicle used for purposes of crime)", - "shortCode" : "DDRV", - "level" : "O", - "rank" : 17300, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "non-endorsable", "crime" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7a353b75-acd8-4a69-b779-d14c194fa3fd", - "label" : "Extension period section 147A (immediate custodial sentence)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "975c0985-7ee4-4560-85fc-5eecf97f9b34", - "label" : "Extension period section 147B (effect of custodial sentence noted)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3095", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : true, - "resultDefinitionRules" : [ ] - }, { - "id" : "238fc228-f948-430e-b0a1-7c9bdcafac46", - "label" : "Disqualification suspended pending appeal", - "shortCode" : "DSPA", - "level" : "O", - "rank" : 17400, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "suspended", "appeal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label" : "Defendant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantDrivingLicenseNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3075", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d3ca848c-ab33-4650-a0e6-36f1b86998a2", - "label" : "Disqualification suspended pending appeal in a later session", - "shortCode" : "DSPAS", - "level" : "O", - "rank" : 17500, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "suspended", "appeal", "later" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", - "label" : "Convicting court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "00ff3bf4-a872-4c16-a671-f05b8aa147f3", - "label" : "Sentencing court if different from convicting court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e3764c59-4e25-4864-a3af-1c2e3390af99", - "label" : "Date of conviction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9c1c1ba5-eb13-45be-a7d3-dcc83debe0ba", - "label" : "Date of offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "71b1cc98-8b41-4d65-906a-3b4940c4ce1d", - "label" : "Date of sentence if different from conviction date", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9dc27662-6953-4acf-a7ac-9b9165e12e2d", - "label" : "DVLA code for offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "72faf2d6-b362-4e7a-9f89-102c7e820868", - "label" : "Court contact (SPOC)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "84a42b46-f384-410d-a4d9-46fe0cb74678", - "label" : "Applicant driving licence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3076", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "39988e30-159a-442e-bb83-7f6df78fea34", - "label" : "Driving licence disposal", - "shortCode" : "DLDIS", - "level" : "D", - "rank" : 17600, - "wordGroups" : [ { - "wordGroup" : [ "driving", "license", "disposal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ff701645-f700-48d0-a247-19f177b0e976", - "label" : "Driving licence type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5fe6673d-24ff-445b-b247-03c71e95fb2c", - "label" : "Driving licence destination", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0556c55a-439b-4020-8bff-ad0d5c0bb7fa", - "label" : "Reason driving licence sent to DVLA", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dd3ef017-5020-4fec-832a-98028ebf3097", - "label" : "Driving licence suspended pending production", - "shortCode" : "DLSUS", - "level" : "C", - "rank" : 17700, - "wordGroups" : [ { - "wordGroup" : [ "driving", "license", "suspended", "production" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3510", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3bfd5af4-b80a-405c-9089-1a533aec0ace", - "label" : "Licensed Premises - Exclusion Order", - "shortCode" : "LPEX", - "level" : "O", - "rank" : 17800, - "wordGroups" : [ { - "wordGroup" : [ "licensed", "premises", "exclusion" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "04446df0-88b9-4f3b-97cd-cf663346c6d0", - "label" : "Duration of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "04446df0-88b9-4f3b-97cd-cf663346c6d0", - "label" : "Duration of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "57d0b15c-746a-4376-a4d8-5917ecd5e8eb", - "label" : "Name of licensed premises excluded from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c70d64d-9c95-48bc-b8d2-5c38643e7d65", - "label" : "Reason for exclusion", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3041", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0ced3039-579c-48a3-9274-cee8c68ba608", - "label" : "Contingent destruction order for dog (proper control)", - "shortCode" : "DCDO", - "level" : "O", - "rank" : 18000, - "wordGroups" : [ { - "wordGroup" : [ "dog", "destruction", "control" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e8a64fc3-081f-4461-84e8-65774cce7021", - "label" : "Details of dog", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "31abd0a3-c2e2-4e15-91de-f2917b4fbadd", - "label" : "To be securely held on a lead by a person who is not less than 16 years old", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2e674f8b-dc14-4731-8ff4-a13c85be7318", - "label" : "To be securely fitted with a muzzle sufficient to prevent it biting any person", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0879a258-7feb-4675-ba94-abc679b23aa9", - "label" : "Places excluded from", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a8548173-c4a4-43a6-adbc-364fbdfcef58", - "label" : "Other directions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3082", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bbc3f8e9-b29c-40d2-8564-0e918693ed89", - "label" : "Order for dog to be neutered", - "shortCode" : "DN", - "level" : "O", - "rank" : 18100, - "wordGroups" : [ { - "wordGroup" : [ "dog", "neutered" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e8a64fc3-081f-4461-84e8-65774cce7021", - "label" : "Details of dog", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "75ae5570-cdc0-42c7-9024-68985fd3bf73", - "label" : "Date by which dog is to be neutered", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3020", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b6eeca33-a188-4d00-a470-391b245c45a4", - "label" : "Order for deprivation of animal", - "shortCode" : "ADEP", - "level" : "O", - "rank" : 18200, - "wordGroups" : [ { - "wordGroup" : [ "deprivation", "animal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0f52987f-309d-4357-95e1-8f4da8effb60", - "label" : "This order also deprives the defendant of the animal's dependent offspring and provides for its disposal. The offspring are", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0949b347-3c72-4688-9ecb-deabb17ee175", - "label" : "Directions regarding the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a795188-50e5-4587-9097-610219269455", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3055", - "adjournment" : false, - "convicted" : true, - "qualifier" : "YZ", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cf10ee96-c82c-46c7-8a34-0c9d08aca134", - "label" : "Order for destruction in the interests of the animal made under Section 37 Animal Welfare Act 2006", - "shortCode" : "ADES", - "level" : "O", - "rank" : 18300, - "wordGroups" : [ { - "wordGroup" : [ "destruction", "interest", "animal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0949b347-3c72-4688-9ecb-deabb17ee175", - "label" : "Directions regarding the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a795188-50e5-4587-9097-610219269455", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3116", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "852cf8c1-bb0f-444f-97f1-64ff8561413d", - "label" : "Destruction of animals involved in fighting made under Section 38 Animal Welfare Act 2006", - "shortCode" : "ADESF", - "level" : "O", - "rank" : 18400, - "wordGroups" : [ { - "wordGroup" : [ "destruction", "animal", "fighting" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "03934cce-feb2-43b5-aaf8-20aeccb3336d", - "label" : "Animal to be destroyed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0949b347-3c72-4688-9ecb-deabb17ee175", - "label" : "Directions regarding the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a795188-50e5-4587-9097-610219269455", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3116", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "26eec36f-7bdc-4b1a-9b46-ba161f52a4e2", - "label" : "Disqualified from keeping animal stated for a defined period", - "shortCode" : "ANI", - "level" : "O", - "rank" : 18500, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "keeping", "animal", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e07c6156-730e-4b66-a913-edc7366b13c0", - "label" : "Specify the animal to which the order applies", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a795188-50e5-4587-9097-610219269455", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3025", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "577acd37-0473-4ad8-ac06-adbf7e9beb2c", - "label" : "Disqualified from keeping stated animal for life", - "shortCode" : "ANIL", - "level" : "O", - "rank" : 18600, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "keeping", "animal", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e07c6156-730e-4b66-a913-edc7366b13c0", - "label" : "Specify the animal to which the order applies", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a795188-50e5-4587-9097-610219269455", - "label" : "Reason for order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3025", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", - "label" : "Foreign travel prohibition", - "shortCode" : "FTPN", - "level" : "O", - "rank" : 100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "63ff5f8d-07ac-4b2d-ae61-fbb75613dfab", - "label" : "Not to travel to any country outside the United Kingdom", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "63173301-f05d-4bb3-8ca0-2fefd8f9e84d", - "label" : "Not to travel to the following countries outside the United Kingdom", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3333058f-1977-4fcb-a70a-98d1510898b5", - "label" : "Not to travel to any country outside the United Kingdom other than", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5d2dd546-d773-44d6-b030-0de2d049b245", - "label" : "Period of foreign travel prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "67de7451-2805-40ee-9d4c-6e75aa04069c", - "label" : "Foreign travel prohibition removed", - "shortCode" : "FTPR", - "level" : "O", - "rank" : 18700, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "removed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e86b1bce-49f5-46db-8c2e-3df6321ecfdb", - "label" : "Date removed with effect from", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2a9ff8a6-c0cf-45eb-b9e5-252238a5140c", - "label" : "Foreign travel prohibition extended", - "shortCode" : "FTPE", - "level" : "O", - "rank" : 18800, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "extended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "32b624af-30b4-4ef9-8eae-cb178a64e2be", - "label" : "Date foreign travel prohibition made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3332ddb2-2c45-496a-8306-92ab4ddc726d", - "label" : "Foreign travel prohibition extended until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "label" : "Community requirement: Prohibited activity for period", - "shortCode" : "PARP", - "level" : "O", - "rank" : 2600, - "wordGroups" : [ { - "wordGroup" : [ "prohibited", "Activity", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": false - }, { - "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": false - }, { - "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": false - }, { - "id" : "382ff620-7645-4b1f-9905-4620b8d2f0e9", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": false - }, { - "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label" : "Prohibited activities", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": false - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3104", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dcdcd240-3ebe-4e80-b84c-a06a2a4a17ae", - "label" : "Sexual harm prevention order discharged", - "shortCode" : "SHPOD", - "level" : "O", - "rank" : 18900, - "wordGroups" : [ { - "wordGroup" : [ "shopo", "discharged" ] - }, { - "wordGroup" : [ "sexual", "harm", "prevention", "discharged" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "471d4d9d-b267-410a-be01-7c8c5e762992", - "label" : "Sexual harm prevention order type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label" : "Date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "Date", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94514093-d8de-4400-93de-9e3366f5af8c", - "label" : "Name of defendant on original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label" : "Name of court that made the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bb09512f-3d01-4f3d-ab7e-fefa5a7ccba4", - "label" : "Sexual harm prevention order renewed", - "shortCode" : "SHPOR", - "level" : "O", - "rank" : 19000, - "wordGroups" : [ { - "wordGroup" : [ "shopo", "renewed" ] - }, { - "wordGroup" : [ "sexual", "harm", "prevention", "renewed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "471d4d9d-b267-410a-be01-7c8c5e762992", - "label" : "Sexual harm prevention order type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label" : "Date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "Date", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94514093-d8de-4400-93de-9e3366f5af8c", - "label" : "Name of defendant on original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label" : "Name of court that made the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "35dd25e2-0017-46fd-ae5f-0ed8eb67d545", - "label" : "Foreign travel prohibition varied", - "shortCode" : "FTPV", - "level" : "O", - "rank" : 19100, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "32b624af-30b4-4ef9-8eae-cb178a64e2be", - "label" : "Date foreign travel prohibition made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", - "label" : "Details of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cd612502-9cf9-4365-b6db-bf70022c40e5", - "label" : "Foreign travel prohibition added", - "shortCode" : "FTPA", - "level" : "O", - "rank" : 19200, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "added" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label" : "Period of foreign travel prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label" : "Period of foreign travel prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label" : "Period of foreign travel prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b93f6c31-a231-4963-ac85-fd80dc2737de", - "label" : "Period of foreign travel prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "137b456b-1f56-42f6-9b5a-e45a3171724e", - "label" : "Not to travel to any country outside the United Kingdom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a8b1ab81-4ef1-40bc-9aa8-ccdba9a6efca", - "label" : "Not to travel to the following countries outside the United Kingdom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e9b15a52-c842-4e33-b779-537360158228", - "label" : "Not to travel to any country outside the United Kingdom other than", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "23fff13d-9741-4209-88ce-83e14c8c3388", - "label" : "Slavery and trafficking prevention order for period", - "shortCode" : "SATPO", - "level" : "O", - "rank" : 19300, - "wordGroups" : [ { - "wordGroup" : [ "slavery", "prevention", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3285", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "17bcc2c7-51f3-4449-aeed-3e7c65a0854d", - "label" : "Slavery and trafficking prevention order until further order", - "shortCode" : "SATPOFO", - "level" : "O", - "rank" : 19400, - "wordGroups" : [ { - "wordGroup" : [ "slavery", "prevention", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3285", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dcdbe62e-ff8f-48d9-acf9-6b6b86b3487d", - "label" : "Slavery and trafficking prevention order until end date", - "shortCode" : "SATPOED", - "level" : "O", - "rank" : 19500, - "wordGroups" : [ { - "wordGroup" : [ "slavery", "prevention", "end" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3285", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ee94aaf8-5152-4a6e-b17e-63891e6209c4", - "label" : "Slavery and trafficking prevention order varied", - "shortCode" : "SATPOV", - "level" : "O", - "rank" : 19700, - "wordGroups" : [ { - "wordGroup" : [ "slavery", "prevention", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", - "label" : "Date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "Date", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94514093-d8de-4400-93de-9e3366f5af8c", - "label" : "Name of defendant on original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "24d4d58a-d3cf-4536-9caf-cf251b1fab36", - "label" : "Name of court that made the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2def6a67-bdb7-4596-8544-53ebb5811880", - "label" : "Variation of prohibitions (other than foreign)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f0b5c085-202d-4b96-9409-959f950c6bf3", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label" : "Start date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "381648c7-ca3e-4368-a75d-dbdebbf22bcd", - "label" : "Interim slavery and trafficking prevention order", - "shortCode" : "SATPOI", - "level" : "O", - "rank" : 19800, - "wordGroups" : [ { - "wordGroup" : [ "interim", "slavery", "prevention" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "050b4899-5383-4894-9970-ff227cdd5686", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3284", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", - "ruleType" : "optional" - }, { - "childResultDefinitionId" : "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", - "ruleType" : "optional" - }, { - "childResultDefinitionId" : "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", - "ruleType" : "optional" - } ] - }, { - "id" : "0021c162-50ee-4769-b30c-c15be2202427", - "label" : "Travel restriction order", - "shortCode" : "TRO", - "level" : "O", - "rank" : 19900, - "wordGroups" : [ { - "wordGroup" : [ "travel", "restriction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef4db11b-fc46-44a3-b96d-07df138200bf", - "label" : "Direction to deliver up passport to Court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3078", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1c40353b-a3b8-4437-8691-6b54d5842010", - "label" : "Community requirement: Prohibited activity for dates", - "shortCode" : "PARD", - "level" : "O", - "rank" : 2700, - "wordGroups" : [ { - "wordGroup" : [ "prohibited", "Activity", "dates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label" : "Prohibited activities", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96a36529-f9ff-4804-86d1-361bc9c12910", - "label" : "Dates", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3104", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e513f78d-6ba3-45b2-a3f9-668c9543f76c", - "label" : "No travel restriction order", - "shortCode" : "NOTRO", - "level" : "O", - "rank" : 20000, - "wordGroups" : [ { - "wordGroup" : [ "no", "travel", "restriction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "88d784e0-e85f-47ac-9c04-a96a9862056e", - "label" : "Reasons for not making a travel restriction order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0f1dce52-dfe0-4ed9-ba4e-ca0f30cfb30f", - "label" : "Travel restriction order revoked", - "shortCode" : "TROR", - "level" : "O", - "rank" : 20100, - "wordGroups" : [ { - "wordGroup" : [ "travel", "restriction", "revoked" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc5bb638-52c0-4815-9816-a473f7503684", - "label" : "Date travel prohibition revoked with effect from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d624b709-013b-4865-8de8-e91dc00957af", - "label" : "Travel restriction order suspended", - "shortCode" : "TROS", - "level" : "O", - "rank" : 20200, - "wordGroups" : [ { - "wordGroup" : [ "travel", "restriction", "suspended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label" : "Duration of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label" : "Duration of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label" : "Duration of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", - "label" : "Duration of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc28ef15-b7ce-4be0-98ca-342e0b8df374", - "label" : "Original order contained a direction to surrender passport", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "af519666-bd10-423a-8f4b-9173a5daafca", - "label" : "Psychoactive Substances Prohibition Order", - "shortCode" : "PSPO", - "level" : "O", - "rank" : 20400, - "wordGroups" : [ { - "wordGroup" : [ "psychoactive", "subatance" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a2984926-eec3-4a76-8c47-ac6d708ca853", - "label" : "General prohibitions and restrictions", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4bc401db-3334-4b50-9e4b-df2068e9a675", - "label" : "Describe item to be disposed of", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "54d27556-06bb-411c-80e6-cb8cc82908f8", - "label" : "Specify who is to dispose of item", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3288", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "08f9b07e-ed90-4522-9d14-7d9162186758", - "label" : "Psychoactive Substances Prohibition Order with premises access prohibition", - "shortCode" : "PSPOA", - "level" : "O", - "rank" : 20500, - "wordGroups" : [ { - "wordGroup" : [ "psychoactive", "subatance", "premises", "prohibited" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bc3ae01d-a965-40c7-87ab-3dcc8738785e", - "label" : "Duration", - "welshLabel" : "Hyd", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b037d41d-d72c-4dcb-a3f0-37adc12aae52", - "label" : "Prohibition duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b037d41d-d72c-4dcb-a3f0-37adc12aae52", - "label" : "Prohibition duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b037d41d-d72c-4dcb-a3f0-37adc12aae52", - "label" : "Prohibition duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a2984926-eec3-4a76-8c47-ac6d708ca853", - "label" : "General prohibitions and restrictions", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4bc401db-3334-4b50-9e4b-df2068e9a675", - "label" : "Describe item to be disposed of", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "54d27556-06bb-411c-80e6-cb8cc82908f8", - "label" : "Specify who is to dispose of item", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "01c2bbdc-5765-4952-8575-cca2077349e7", - "label" : "Prohibition applies to whole or part of premises", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0335a74d-2142-413f-9bbc-753581a43707", - "label" : "Prohibited premises", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f9704321-7770-467e-a94b-3e8544c857bc", - "label" : "Describe the part of premises", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bcaf62cd-7270-4e86-b41e-7fcfa3aae1eb", - "label" : "Persons times and circumstances of access prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3288", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f0395277-4d26-4785-acb5-5be597d97ae6", - "label" : "Criminal behaviour order until further order", - "shortCode" : "CRIMBOF", - "level" : "O", - "rank" : 20600, - "wordGroups" : [ { - "wordGroup" : [ "criminal", "behaviour", "Order", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3e8e3caa-b09d-4532-813d-433ffc1df1c5", - "label" : "Start date of order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4461f7f5-f984-4b6d-9f60-3084e5071382", - "label" : "Requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", - "label" : "Supervisor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", - "label" : "Supervisor's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1177", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "187f05c9-8467-4741-8b9e-7a3a5b06f6f6", - "label" : "No evidence offered (summary offence in the Crown Court)", - "shortCode" : "NOEVS", - "level" : "O", - "rank" : 20700, - "wordGroups" : [ { - "wordGroup" : [ "no", "evidence", "offered" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2050", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f8bd4d1f-1467-4903-b1e6-d2249ccc8c25", - "label" : "Dismissed (No evidence offered)", - "shortCode" : "DINE", - "level" : "O", - "rank" : 20800, - "wordGroups" : [ { - "wordGroup" : [ "Dismissed", "no", "evidence" ] - }, { - "wordGroup" : [ "no evidence", "offered", "Dismissed" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Gwrthod (Dim tystiolaeth wedi’i chyflwyno)", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2050", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5edd3a3a-8dc7-43e4-96c4-10fed16278ac", - "label" : "Vehicle Excise Back Duty", - "shortCode" : "FVEBD", - "level" : "O", - "rank" : 20900, - "wordGroups" : [ { - "wordGroup" : [ "vehicle", "back", "duty" ] - }, { - "wordGroup" : [ "FVEBD" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f7c7c088-f88e-4c28-917c-78571517aca1", - "label" : "Amount of back duty", - "welshLabel" : "Swm yr ôl-doll", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOBD", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Ôl-doll Treth Car", - "isAvailableForCourtExtract" : true, - "financial" : true, - "category" : "F", - "cjsCode" : "3014", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "label" : "Community requirement: Prohibited activity for days of week", - "shortCode" : "PARW", - "level" : "O", - "rank" : 2800, - "wordGroups" : [ { - "wordGroup" : [ "prohibited", "Activity", "days" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label" : "Prohibited activities", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "53f817cd-0070-455e-9826-a103bd4a4a26", - "label" : "Days", - "welshLabel" : "Diwrnod", - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "e652a90a-31cf-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3104", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b81ac80b-81a9-48b6-87b0-cc34610eec97", - "label" : "Restraining order for period", - "shortCode" : "RESTRAOP", - "level" : "O", - "rank" : 700, - "wordGroups" : [ { - "wordGroup" : [ "Restraining", "Order", "Period" ] - }, { - "wordGroup" : [ "RESTRAOP" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a20665cc-6877-40f4-b85e-d4c87e62987b", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", - "label" : "Protected person", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "8df0ec7e-5985-4998-af1a-5da293d9cb3c", - "label" : "Order details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47337f1c-e343-4093-884f-035ba96c4db0", - "label" : "Conviction / acquittal", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8dc70c95-fb09-4842-9138-bc579fceb605", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ea26f773-0a91-4526-b4ad-84d07b5bf940", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3047", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "920183ea-c82a-4110-a937-6a2e7071d908", - "label" : "Certificate of conviction under Section 113 of the Powers of Criminal Courts (Sentencing) Act 2000", - "shortCode" : "QCON", - "level" : "O", - "rank" : 21000, - "wordGroups" : [ { - "wordGroup" : [ "certificate", "conviction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e3764c59-4e25-4864-a3af-1c2e3390af99", - "label" : "Date of conviction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", - "label" : "Convicting court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "59828fc1-e8f2-46be-866c-4c8c1d165273", - "label" : "Type of offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bfb02d14-243f-4450-9c20-4c0ed9c5d64c", - "label" : "No further review of order required", - "shortCode" : "REVUE", - "level" : "O", - "rank" : 21100, - "wordGroups" : [ { - "wordGroup" : [ "no", "Further", "Review" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9bb5d310-0fef-450d-91d6-117f894001bb", - "label" : "Offences taken into consideration", - "shortCode" : "TIC", - "level" : "D", - "rank" : 21200, - "wordGroups" : [ { - "wordGroup" : [ "TIC" ] - }, { - "wordGroup" : [ "taken", "into", "consideration" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a292fb05-4b6b-43b3-8fdc-1ce5c1114a45", - "label" : "Number of offences admitted and taken into consideration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3118", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "87eed0b7-b141-4a3c-b7b0-ea8bb23ec3b2", - "label" : "Warrant not executed", - "shortCode" : "WNE", - "level" : "O", - "rank" : 21300, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "not", "executed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9565f244-bef4-43a0-b32c-0d12faceb5de", - "label" : "Reason for warrant not executed", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "381cb2bd-4993-476d-9c8f-3bd19f288120", - "label" : "Reason warrant not executed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "2509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4d5f25a5-9102-472f-a2da-c58d1eeb9c93", - "label" : "Warrant withdrawn", - "shortCode" : "WWDN", - "level" : "O", - "rank" : 21400, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "withdrawn" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "81aaac7d-84c3-45cb-a845-69b7f3fb20fe", - "label" : "Reason for withdrawing warrant", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "2509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8e7f7ffd-eceb-44ea-8efd-bc6c99913d85", - "label" : "Restraining order discharged", - "shortCode" : "RESTRAD", - "level" : "O", - "rank" : 21500, - "wordGroups" : [ { - "wordGroup" : [ "Restraining", "Order", "discharged" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8a11df41-cc91-4b67-80c4-6108c9b5e324", - "label" : "Third party's name (victim or police)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a06952c1-4bfe-4004-b6ac-6908afefdd6a", - "label" : "Third party's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2ade6e72-ee41-4718-87a0-1a396579ac56", - "label" : "Original order made by", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c2200b1d-a47d-4d02-9b88-58f8bbed7ea9", - "label" : "Restraining order varied", - "shortCode" : "RESTRAV", - "level" : "O", - "rank" : 21600, - "wordGroups" : [ { - "wordGroup" : [ "Restraining", "Order", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8a11df41-cc91-4b67-80c4-6108c9b5e324", - "label" : "Third party's name (victim or police)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a06952c1-4bfe-4004-b6ac-6908afefdd6a", - "label" : "Third party's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2ade6e72-ee41-4718-87a0-1a396579ac56", - "label" : "Original order made by", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2da599de-da03-492e-b66f-e7aad32fcfa5", - "label" : "Terms of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49a85507-8a96-4201-965d-a11879c73f8c", - "label" : "Order now expires", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c32b9ca1-78da-4c7c-bde6-8218aed2bb80", - "label" : "Adjournment refused", - "shortCode" : "ADR", - "level" : "O", - "rank" : 21700, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "refused" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "61d8be36-adac-4a47-aa65-a46962f2bd8b", - "label" : "Reason for refusal", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Bydd y gwrandawiad nesaf yn y llys ynadon", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bc4bb54f-1fa8-43d8-8021-c1e07994d5f6", - "label" : "Racially aggravated offence", - "shortCode" : "RA", - "level" : "O", - "rank" : 21800, - "wordGroups" : [ { - "wordGroup" : [ "racially", "aggravated" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "07f5229c-cf4c-45f2-a49b-703d11bf5b41", - "label" : "Racially and religiously aggravated offence", - "shortCode" : "RARE", - "level" : "O", - "rank" : 21900, - "wordGroups" : [ { - "wordGroup" : [ "racially", "religious", "aggravated" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "label" : "Community requirement: Foreign travel prohibition any country for period", - "shortCode" : "FTPCP", - "level" : "O", - "rank" : 2900, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "any", "country", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bcd4f58f-c53e-420f-8d54-c42f125522f9", - "label" : "Religiously aggravated offence", - "shortCode" : "RE", - "level" : "O", - "rank" : 22000, - "wordGroups" : [ { - "wordGroup" : [ "religious", "aggravated" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f25de68a-e719-42dd-9153-6687af843434", - "label" : "Aggravated due to transgender", - "shortCode" : "TGG", - "level" : "O", - "rank" : 22100, - "wordGroups" : [ { - "wordGroup" : [ "transgender", "aggravated" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6fcb509f-1343-46df-a79b-7f650d84d3f2", - "label" : "Aggravated due to transgender of victim", - "shortCode" : "TGV", - "level" : "O", - "rank" : 22200, - "wordGroups" : [ { - "wordGroup" : [ "transgender", "aggravated", "victim" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cfe8ea34-4461-42e1-836c-2319924b4ea6", - "label" : "General disqualification for a period", - "shortCode" : "DGEN", - "level" : "O", - "rank" : 22300, - "wordGroups" : [ { - "wordGroup" : [ "general", "disqualification", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label" : "Period of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label" : "Period of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label" : "Period of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", - "label" : "Period of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b7eacb5-af56-4f40-b808-40270fb900cd", - "label" : "Nature of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "db41c015-10b7-4947-9524-ce61344c8d6a", - "label" : "Reason for disqualification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "95d8d079-3680-4819-9bf7-5e268aae8ff0", - "label" : "General disqualification for life", - "shortCode" : "DGENL", - "level" : "O", - "rank" : 22400, - "wordGroups" : [ { - "wordGroup" : [ "general", "disqualification", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1b7eacb5-af56-4f40-b808-40270fb900cd", - "label" : "Nature of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "db41c015-10b7-4947-9524-ce61344c8d6a", - "label" : "Reason for disqualification", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "49297a56-1d57-4f3a-862a-351a9c7372a7", - "label" : "Female genital mutilation protection order until further order", - "shortCode" : "FGMPO", - "level" : "O", - "rank" : 22500, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "Further" ] - }, { - "wordGroup" : [ "fgm", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0987a7f2-c628-43f4-b978-1a4db2e4c45b", - "label" : "Terms of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b3c338ee-3a15-4f46-bf51-4ed3dd9fa831", - "label" : "Female genital mutilation protection order for period", - "shortCode" : "FGMPOP", - "level" : "O", - "rank" : 22600, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "Period" ] - }, { - "wordGroup" : [ "fgm", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0987a7f2-c628-43f4-b978-1a4db2e4c45b", - "label" : "Terms of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3f6ea21a-1e7a-4fbf-b6bd-a1d0d59d9636", - "label" : "Female genital mutilation protection order until end date", - "shortCode" : "FGMPOE", - "level" : "O", - "rank" : 22700, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "end" ] - }, { - "wordGroup" : [ "fgm", "end" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", - "label" : "End date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0987a7f2-c628-43f4-b978-1a4db2e4c45b", - "label" : "Terms of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a9ec3d80-c37a-4f51-9706-e33b6feb6d2d", - "label" : "Female genital mutilation protection order varied (until further order)", - "shortCode" : "FGMPOV", - "level" : "O", - "rank" : 22800, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "varied", "Further" ] - }, { - "wordGroup" : [ "fgm", "varied", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f7d348da-6f8b-4170-9660-55ee16453865", - "label" : "Terms of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9f707be3-97fb-4ea8-984b-41547adc189c", - "label" : "Female genital mutilation protection order varied (for period)", - "shortCode" : "FGMPOVP", - "level" : "O", - "rank" : 22900, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "varied", "Period" ] - }, { - "wordGroup" : [ "fgm", "varied", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f53b6349-3926-4562-b5a7-d8c40930bcfe", - "label" : "Period of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f7d348da-6f8b-4170-9660-55ee16453865", - "label" : "Terms of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "label" : "Community requirement: Foreign travel prohibition with list of countries for period", - "shortCode" : "FTPLP", - "level" : "O", - "rank" : 3000, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "country", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f77b3b14-91b2-41b7-966b-0f0bad2664e2", - "label" : "Countries", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "694af16b-9c84-42a4-a659-3f9ce4cf7d02", - "label" : "Female genital mutilation protection order varied (until end date)", - "shortCode" : "FGMPOVE", - "level" : "O", - "rank" : 23000, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "varied", "end" ] - }, { - "wordGroup" : [ "fgm", "varied", "end" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "968b8acc-e43b-486d-8c8f-9b3fc9653bae", - "label" : "Name of girl protected", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f7d348da-6f8b-4170-9660-55ee16453865", - "label" : "Terms of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", - "label" : "End date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f0d12a39-5c34-43c4-8816-968a9b9e3b60", - "label" : "Female genital mutilation protection order discharged", - "shortCode" : "FGMPOD", - "level" : "O", - "rank" : 23100, - "wordGroups" : [ { - "wordGroup" : [ "female", "genital", "mutilation", "discharged" ] - }, { - "wordGroup" : [ "fgm", "discharged" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", - "label" : "Passport surrender", - "shortCode" : "PASSS", - "level" : "O", - "rank" : 600, - "wordGroups" : [ { - "wordGroup" : [ "passport", "surrender" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "68077602-7fa8-4645-9bc6-bc59ed409f6f", - "label" : "Name of Police Station to surrender passport", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b87786ca-5112-4841-9c3e-a131186b1762", - "label" : "Passport to be surrendered on or before", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0cee6bf5-21e4-403f-ba45-73e029ab0c73", - "label" : "Specify how many days to surrender passport in", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e0294281-d95d-48e2-8bd0-d7af53740ac9", - "label" : "Passport surrender variation", - "shortCode" : "PASSSV", - "level" : "O", - "rank" : 23200, - "wordGroups" : [ { - "wordGroup" : [ "passport", "surrender", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "68077602-7fa8-4645-9bc6-bc59ed409f6f", - "label" : "Name of Police Station to surrender passport", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b87786ca-5112-4841-9c3e-a131186b1762", - "label" : "Passport to be surrendered on or before", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0cee6bf5-21e4-403f-ba45-73e029ab0c73", - "label" : "Specify how many days to surrender passport in", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "62eb1129-38b8-43aa-855c-bec3569bd17f", - "label" : "Specify date passport originally surrendered on date (now to be returned)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "63f54361-69dd-4d8e-aece-8d87a6064d20", - "label" : "Disqualified for having custody of a dog for period", - "shortCode" : "DCUST", - "level" : "O", - "rank" : 23300, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "dog", "custody", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3023", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a59be074-10ea-4552-bc83-51d069304402", - "label" : "Disqualified for having custody of a dog for life", - "shortCode" : "DCUSTL", - "level" : "O", - "rank" : 23400, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "dog", "custody", "Life" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3023", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "95d2a99a-d8ce-43ae-b5d0-d0dfd8d850f1", - "label" : "Order to keep dog under proper control", - "shortCode" : "DKPC", - "level" : "O", - "rank" : 23500, - "wordGroups" : [ { - "wordGroup" : [ "dog", "control" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bfbb887-7b2d-4423-b80f-f55b19224806", - "label" : "Dog to be fitted with a muzzle sufficient to prevent it biting any person", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e71dd017-100f-4fbc-aa8f-07cc33837375", - "label" : "Dog to be securely held on a lead by a person who is not less than 16 years old", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4c38a549-71e8-40d2-be69-9309653905c3", - "label" : "Dog excluded from", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cdca7321-e930-480a-80bb-60064432f8d1", - "label" : "Specify terms", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "690bddca-7264-4e3d-9d64-ac7a00fca7c7", - "label" : "Describe dog eg name, breed, colour", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3034", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6bd5d409-d656-4829-9ebd-f795e4564c7c", - "label" : "Aggravated due to sexual orientation", - "shortCode" : "SEXO", - "level" : "O", - "rank" : 23600, - "wordGroups" : [ { - "wordGroup" : [ "aggravted", "sexual", "orientation" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AW", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0bfb5f42-062b-4473-9c10-bf98315f8117", - "label" : "Aggravated due to sexual orientation of victim", - "shortCode" : "SEXOV", - "level" : "O", - "rank" : 23700, - "wordGroups" : [ { - "wordGroup" : [ "aggravted", "sexual", "orientation", "victiim" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AV", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "98dc94c8-45f0-4961-bb34-cd979dcc2874", - "label" : "Order that dog be destroyed", - "shortCode" : "DDES", - "level" : "O", - "rank" : 23800, - "wordGroups" : [ { - "wordGroup" : [ "dog", "destroyed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a3ea06d8-b297-4ccc-ac1f-f37bd3054388", - "label" : "Details of dog", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "783e2975-f9aa-4c7e-90a8-2dd6b16144a4", - "label" : "Further information about destruction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3021", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c1b0dedf-1380-4889-9d31-1816b850e348", - "label" : "Community requirement: Foreign travel prohibition with list of countries for dates", - "shortCode" : "FTPLD", - "level" : "O", - "rank" : 3100, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "country", "any", "dates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f77b3b14-91b2-41b7-966b-0f0bad2664e2", - "label" : "Countries", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "464b2a25-dfe4-42b2-8cc7-29a66edf9743", - "label" : "Dates of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "datesOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0b4fee38-ee9b-4aef-9179-cda3e1dbc607", - "label" : "Disqualified from keeping a dog for period", - "shortCode" : "DDIS", - "level" : "O", - "rank" : 23900, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "dog", "keeping", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3022", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e715521c-a4ae-40b3-b127-7612a0b6f32e", - "label" : "Disqualified from keeping a dog for life", - "shortCode" : "DDISL", - "level" : "O", - "rank" : 24000, - "wordGroups" : [ { - "wordGroup" : [ "disqualified", "dog", "keeping", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e0decfd5-5fd4-446b-9120-840ca6825fb8", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3022", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "29c0a838-14ac-42c0-870c-ee1a133601e3", - "label" : "Aggravated due to hostility based on disability of victim", - "shortCode" : "DISV", - "level" : "O", - "rank" : 24100, - "wordGroups" : [ { - "wordGroup" : [ "aggravated", "disability", "victim" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AX", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a395f8db-9473-4172-8474-c0fb5e1bbefb", - "label" : "Motivated by hostility towards persons who have a disability or a particular disability", - "shortCode" : "DISG", - "level" : "O", - "rank" : 24200, - "wordGroups" : [ { - "wordGroup" : [ "motivated", "disability" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AY", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e7ef0248-fe71-4733-8749-ff0c23a04f95", - "label" : "Shotgun Certificate cancelled", - "shortCode" : "CSHOC", - "level" : "O", - "rank" : 24300, - "wordGroups" : [ { - "wordGroup" : [ "shotgun", "cancelled" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3035", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "19026543-7d59-467b-9649-35ddf89b30cc", - "label" : "Firearm Certificate Cancelled", - "shortCode" : "CFIRC", - "level" : "O", - "rank" : 24400, - "wordGroups" : [ { - "wordGroup" : [ "firearm", "cancelled" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3035", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0b472a9c-5bef-4de7-bbd9-20d22e6d07eb", - "label" : "Defendant's costs payable from central funds - sum assessed", - "shortCode" : "DCCFSA", - "level" : "O", - "rank" : 24500, - "wordGroups" : [ { - "wordGroup" : [ "defendant", "Costs", "central", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "672c8f19-2f64-4720-8638-1d7c7e66deda", - "label" : "Sum assessed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label" : "Creditor's name and address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b2fb2c0e-5c71-4a07-a870-506030f2d5ce", - "label" : "Defendant's costs payable from central funds - sum to be assessed", - "shortCode" : "DCCFSTA", - "level" : "O", - "rank" : 24600, - "wordGroups" : [ { - "wordGroup" : [ "defendant", "Costs", "central", "to", "be", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b17f9f16-20d4-4bb0-8872-5ab4878245c2", - "label" : "Legal / defendant's personal costs", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5609ef92-3d72-4106-915a-aa83401bcaa3", - "label" : "Percentage reduction ordered", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "feb9ebe0-b9bf-4b71-92e3-dcf5ceeeeada", - "label" : "Other party's costs from central funds - sum assessed", - "shortCode" : "CFCAOA", - "level" : "O", - "rank" : 24700, - "wordGroups" : [ { - "wordGroup" : [ "other", "Costs", "central", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", - "label" : "Payment type", - "welshLabel" : "Math o daliad", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label" : "Creditor's name and address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "672c8f19-2f64-4720-8638-1d7c7e66deda", - "label" : "Sum assessed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ed37c314-3700-4646-94f7-b2ec2cf8cef2", - "label" : "Other party's costs from central funds - sum to be assessed", - "shortCode" : "CFCAOTA", - "level" : "O", - "rank" : 24800, - "wordGroups" : [ { - "wordGroup" : [ "other", "Costs", "central", "to", "be", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", - "label" : "Payment type", - "welshLabel" : "Math o daliad", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label" : "Creditor's name and address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "label" : "Community requirement: Foreign travel prohibition any country for dates", - "shortCode" : "FTPCD", - "level" : "O", - "rank" : 3200, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "any", "dates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "464b2a25-dfe4-42b2-8cc7-29a66edf9743", - "label" : "Dates of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "datesOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5ab30f3f-ef9a-46d0-8ccc-ddd2be8f4eee", - "label" : "Prosecutor's costs from central funds - sum assessed", - "shortCode" : "CFCAPA", - "level" : "O", - "rank" : 24900, - "wordGroups" : [ { - "wordGroup" : [ "prosecution", "Costs", "central", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label" : "Creditor's name and address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "672c8f19-2f64-4720-8638-1d7c7e66deda", - "label" : "Sum assessed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ab3df821-8a0b-408e-802d-ea04e3a1a8c5", - "label" : "Prosecutor's costs from central funds - sum to be assessed", - "shortCode" : "CFCAPTA", - "level" : "O", - "rank" : 25000, - "wordGroups" : [ { - "wordGroup" : [ "prosecution", "Costs", "central", "to", "be", "assessed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "c7a816fb-083f-420a-9b48-5d9513014cf8", - "label" : "Creditor's name and address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5609ef92-3d72-4106-915a-aa83401bcaa3", - "label" : "Percentage reduction ordered", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6d2cd232-d38f-413f-bbec-5f83ef379b90", - "label" : "Debtor to be searched", - "shortCode" : "SRCH", - "level" : "D", - "rank" : 25100, - "wordGroups" : [ { - "wordGroup" : [ "debtor", "searched" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d1f3066a-2d42-432a-9531-4194c42c9759", - "label" : "Money found to be applied to debt", - "shortCode" : "APMONEY", - "level" : "D", - "rank" : 25200, - "wordGroups" : [ { - "wordGroup" : [ "money", "applied", "debt" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8d72d822-d3e2-4c30-b089-ab36f58ebefe", - "label" : "Amount to be applied", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "57bec156-6591-4449-8bc4-4981d71b4e8c", - "label" : "Money found not to be taken", - "shortCode" : "NTMONEY", - "level" : "D", - "rank" : 25300, - "wordGroups" : [ { - "wordGroup" : [ "money", "not", "taken" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "dc0a94ae-d212-44ab-b350-8a566533eeb4", - "label" : "Amount of money court directs should not be taken", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d1aa9b8b-2aca-49a0-9f04-99eba9fd8491", - "label" : "Reason for not taking money", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "261c0c09-d9ef-4422-b30e-248461d777ee", - "label" : "Imprisonment in default of payment - on same date as imposition", - "shortCode" : "IMPDP", - "level" : "O", - "rank" : 25400, - "wordGroups" : [ { - "wordGroup" : [ "imprisonment", "default", "payment" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8849cbc-f083-465b-af48-528ba436b90f", - "label" : "Imprisonment reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f2cff709-d97f-4a59-b971-c9adba389319", - "label" : "Further reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label" : "Total amount enforced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "TOTENF", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "96cab958-f6f1-460b-875a-2b1e80a8b1e4", - "label" : "Detention in default of payment - on same date as imposition", - "shortCode" : "DETDP", - "level" : "O", - "rank" : 25500, - "wordGroups" : [ { - "wordGroup" : [ "detention", "default", "payment" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8849cbc-f083-465b-af48-528ba436b90f", - "label" : "Imprisonment reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f2cff709-d97f-4a59-b971-c9adba389319", - "label" : "Further reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "e36171b4-d3fb-4260-88f3-deca99288512", - "label" : "Total amount enforced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1510", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "85c75b3b-18c4-460b-8e06-6358ae410536", - "label" : "Notification of driver's disability to DVLA", - "shortCode" : "DRDIS", - "level" : "D", - "rank" : 25600, - "wordGroups" : [ { - "wordGroup" : [ "notification", "disability", "dvla" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "c00d52fa-2c76-4681-ae67-94d0a9cec02c", - "label" : "Defendant told DVLA would be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9c5e9397-6c28-4484-b075-fd0d08143dd4", - "label" : "Defendant not told DVLA would be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4f97544b-1c9b-4350-8dcb-62e2017e3f8c", - "label" : "Nature and source of disability information", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "58a92700-b229-4b6d-bf63-d9df9cbc59af", - "label" : "Court contact (SPOC)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a96c1135-3057-453e-80c8-602a7f79013a", - "label" : "Hospital order", - "shortCode" : "MHHO", - "level" : "O", - "rank" : 25700, - "wordGroups" : [ { - "wordGroup" : [ "hospital", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "701b27ad-c54a-4011-a605-8c438ff685c9", - "label" : "Name of hospital where defendant will be admitted or detained", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39001635-2dc8-4a58-9934-eeb60fa4d93b", - "label" : "Name of hospital unit", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", - "label" : "Hospital address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "611a9bc2-4a25-438c-90cc-bf86fdd30d86", - "label" : "Mental health conviction status", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label" : "Place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label" : "Conveyor/custodian", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96949d0c-a59c-4a6f-a563-97456c985987", - "label" : "Further directions regarding conveyance to place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1008", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ef1f6633-3c0b-4adc-b5b8-8ef21e91417f", - "label" : "Guardianship Order", - "shortCode" : "MHGO", - "level" : "O", - "rank" : 25800, - "wordGroups" : [ { - "wordGroup" : [ "guardianship", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "440b778c-98c6-4764-b627-8851b5ef0834", - "label" : "Name of the guardian with whom defendant will be placed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "85e500c7-5cf4-4e23-8dcf-1e413c805031", - "label" : "Guardian's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "611a9bc2-4a25-438c-90cc-bf86fdd30d86", - "label" : "Mental health conviction status", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1014", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a19714a0-5d58-4666-bc15-3d9dd2692f77", - "label" : "Community requirement: Foreign travel with list of countries for dates", - "shortCode" : "FTCD", - "level" : "O", - "rank" : 3300, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "country", "dates" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "37853bb7-8844-4cc1-8a34-fa7e4d89d87f", - "label" : "Restitution Order", - "shortCode" : "RESTIT", - "level" : "O", - "rank" : 25900, - "wordGroups" : [ { - "wordGroup" : [ "restitution", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d71816c-6972-4a50-9493-719295a99ac8", - "label" : "Person to recover goods / money", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "eb3a82b0-b56b-4341-977d-9b76a377ce91", - "label" : "Specify stolen goods to be restored to victim", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "43627e85-4cc4-4e2c-8fb6-95a70cd378d1", - "label" : "Specify goods representing stolen goods (proceeds) to be transferred to victim", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c26d561-9275-4406-b38e-26c1e6f22d6e", - "label" : "Specify sum to be paid out of money taken out of offender's possession on apprehension", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3013", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "62510cc8-7dd6-4c98-bc3a-fa24c730f91c", - "label" : "Proceedings stayed", - "shortCode" : "STAYP", - "level" : "O", - "rank" : 26000, - "wordGroups" : [ { - "wordGroup" : [ "proceedings", "stayed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8e36cc12-aabc-485d-bda7-76230bab0399", - "label" : "Circumstances leading to staying proceedings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fde3814-b542-4623-8bf6-8db5fcb86b11", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2061", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ef2eb362-dae5-4ad7-87c6-d1262d55533e", - "label" : "Disqualification order relating to animals for period", - "shortCode" : "ADISQ", - "level" : "O", - "rank" : 26100, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "animal", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2bf54447-328c-4c1b-a123-341adbd52172", - "label" : "Disqualification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", - "label" : "Type of animal", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "db46c413-91e0-46d9-9b56-9eb54232761e", - "label" : "Type of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ce6cdc61-03af-4807-bc55-17e57e263434", - "label" : "All animals kept in contravention of this disqualifciation to be seized", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "269324e9-52a1-4b7c-a023-b41f57b4b811", - "label" : "Directions regarding seizure", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "01431fda-56cf-4447-89b4-64b0777d791d", - "label" : "Minimum period before defendant may apply to terminate order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label" : "Order suspended pending appeal", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", - "label" : "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3115", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "94f2989a-f4fd-4a39-a67f-71a4c0828f9d", - "label" : "Disqualification order relating to animals for life", - "shortCode" : "ADISQL", - "level" : "O", - "rank" : 26200, - "wordGroups" : [ { - "wordGroup" : [ "disqualification", "animal", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", - "label" : "Type of animal", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "db46c413-91e0-46d9-9b56-9eb54232761e", - "label" : "Type of disqualification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ce6cdc61-03af-4807-bc55-17e57e263434", - "label" : "All animals kept in contravention of this disqualifciation to be seized", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "269324e9-52a1-4b7c-a023-b41f57b4b811", - "label" : "Directions regarding seizure", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "01431fda-56cf-4447-89b4-64b0777d791d", - "label" : "Minimum period before defendant may apply to terminate order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label" : "Order suspended pending appeal", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", - "label" : "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3115", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a05f96e2-d36f-48aa-b6f4-1daefd10bca3", - "label" : "Surety discharged", - "shortCode" : "SURDIS", - "level" : "O", - "rank" : 26300, - "wordGroups" : [ { - "wordGroup" : [ "surety", "discharged" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a3cd0c91-9d16-446a-94a7-7d3db6216587", - "label" : "Surety's Name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a22f62fa-b9c5-45be-bd79-07d3ae7418f9", - "label" : "Payment terms - no payment term set - defendant serving custodial sentence", - "shortCode" : "PTNC", - "level" : "D", - "rank" : 26500, - "wordGroups" : [ { - "wordGroup" : [ "no", "payment", "terms" ] - }, { - "wordGroup" : [ "payment", "custody" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "851e2be3-1436-47a4-824d-ca3168647f0c", - "label" : "Collecting Magistrates' Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e26940b7-2534-42f2-9c44-c70072bf6ad2", - "label" : "Remanded In custody with bail direction", - "shortCode" : "RIB", - "level" : "O", - "rank" : 26600, - "wordGroups" : [ { - "wordGroup" : [ "remand", "conditional", "bail", "direction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label" : "Remand basis", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : "prison", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9ecac6aa-a205-481f-b67d-e2425ad074cf", - "label" : "Bail date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e200e964-628a-4284-bd4e-fab9c819f7f1", - "label" : "Bail time", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", - "label" : "Bail condition reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual" : null, - "reference" : "bailConditionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "680e4cfd-36e0-4b22-8a30-4142bd42bf16", - "label" : "BASS provider", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4046", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand conditional bail", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "16a25613-487d-4359-8fc6-9a3968ff669f", - "label" : "Remanded in custody for medical reports", - "shortCode" : "REMMED", - "level" : "O", - "rank" : 26700, - "wordGroups" : [ { - "wordGroup" : [ "remand", "medical" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3c16ae6f-a6cf-4adc-b483-67875213d4f2", - "label" : "Remanded under Section number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a74b54d3-a8f9-49bf-b2d7-edd991d1537a", - "label" : "Type of medical report required", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "febc23f3-db6f-41ae-8ed7-37920638f597", - "label" : "Reason for report", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8fa194e5-6d5f-41f1-9315-14a779586727", - "label" : "Medical History", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "34b5e96c-ae6c-4b38-91ee-2a04349b8871", - "label" : "Offence Details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c3bcc21e-48e1-43f0-9546-4223f223e7a7", - "label" : "Criminal Record", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8061b2b3-ca56-4002-a76b-6d452bbfa61f", - "label" : "Home Circumstances", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "749a0db6-4186-4f82-935d-d8084f353d19", - "label" : "Officer in case", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7f5235bc-673b-47a7-97d3-616d9095f606", - "label" : "Probation/Probation Services Officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4ddda002-526e-4d70-9df7-eeaae75cfab7", - "label" : "Pre-release bail condition: Passport - give to the court any passport held", - "shortCode" : "PRBCP1", - "level" : "O", - "rank" : 26800, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "passport", "court" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JL", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d85486c4-06f1-4813-859b-5495ca578bde", - "label" : "Pre-release bail condition: Passport - give to HM Revenue and Customs any passport held", - "shortCode" : "PRBCP2", - "level" : "O", - "rank" : 27000, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "passport", "hmrc" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "rollUpPrompts": false, - "publishedForNows": false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "label" : "Community requirement: Foreign travel prohibition with excepted country for period", - "shortCode" : "FTPEP", - "level" : "O", - "rank" : 3400, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "except", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3638606d-b2b5-40f4-ab5b-453a51391dcb", - "label" : "Period of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "periodOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", - "label" : "Country allowed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "countryAllowed", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "rollUpPrompts": false, - "publishedForNows": false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bb0a2862-a565-46aa-96ed-1e6f972949d0", - "label" : "Pre-release bail condition: Passport - give to Police Station", - "shortCode" : "PRBCP3", - "level" : "O", - "rank" : 27100, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "passport", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label" : "Police Station Name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1ebd5ca1-866d-43a0-ad9a-464e8a228235", - "label" : "Pre-release bail condition: Passport - surrender to Police Station during football control period", - "shortCode" : "PRBCP4", - "level" : "O", - "rank" : 27200, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "football", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label" : "Police Station Name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "279fd36e-17c5-42b2-b56b-a6ab27b9b592", - "label" : "Pre-release bail condition: Passport - give to the court any identity card held which could be used as a travel document within the European Economic Area", - "shortCode" : "PRBCP5", - "level" : "O", - "rank" : 27300, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "travel", "document", "European", "court" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JL", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", - "label" : "Pre-release bail condition: Passport - give to HM Revenue and Customs any identity card held which could be used as a travel document within the European Economic Area", - "shortCode" : "PRBCP6", - "level" : "O", - "rank" : 27400, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "travel", "document", "European", "hmrc" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e5864697-640a-47be-9289-9e6205bbe579", - "label" : "Pre-release bail condition: Passport - give to police station any identity card held which could be used as a travel document within the European Economic Area", - "shortCode" : "PRBCP7", - "level" : "O", - "rank" : 27500, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "travel", "document", "European", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label" : "Police Station Name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] + "id": "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", + "label": "Adjournment reason: Unexpected circumstances meant that the case could not be heard", + "shortCode": "UNF", + "level": "O", + "rank": 11100, + "canBeSubjectOfBreach": true, + "canBeSubjectOfVariation": true, + "wordGroups": [ + { + "wordGroup": [ + "unexpected", + "circumstances" + ] + }, + { + "wordGroup": [ + "adjournment", + "unforseen" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rheswm dros ohirio: Gwrthodwyd gohirio’r achos", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "KU", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "alwaysPublished": true, + "resultDefinitionRules": [] }, { - "id": "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", - "label": "Pre-release bail condition: Passport - surrender identity card to police station during football control period", - "shortCode": "PRBCP8", + "id": "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", + "label": "Adjournment reason: Insufficient court time to hear the case", + "shortCode": "INSUF", "level": "O", - "rank": 83800, - "isBooleanResult": false, + "rank": 11200, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "insufficient", + "Time" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio: Nid oedd digon o amser i wrando'r achos", "isAvailableForCourtExtract": true, - "financial": "N", - "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "KQ", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, "publishedAsAPrompt": true, "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9fd6a4ef-1055-4e54-b035-f1130a524388", + "label": "Adjournment reason: Non-standard reason", + "shortCode": "NSR", + "level": "O", + "rank": 11300, "wordGroups": [ { "wordGroup": [ - "PRBCP8" + "adjournment", + "reason", + "other" ] }, { "wordGroup": [ - "pre-release", - "travel", - "document", - "European", - "police", - "football" + "adjournment", + "reason", + "non-standard" ] } ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Pre-release bail conditions", - "qualifier": "JM", - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "resultTextTemplate": "Passport - surrender identity card to {policeStationName} police station during football control period", - "terminatesOffenceProceedings": false, + "userGroups": [], "prompts": [ { - "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", - "label": "Police Station Name", + "id": "28a271c5-aff0-4e60-b599-88e441960699", + "label": "Reason for adjournment", + "welshLabel": "Rheswm dros ohirio", "resultPromptRule": "mandatory", "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, "sequence": 100, - "userGroups": [], + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "NSR", "courtExtract": "Y", - "financial": "N", - "jurisdiction": "B", - "min": "1", - "max": "70", - "reference": "policeStationName" + "durationSequence": null } - ] + ], + "welshLabel": "Rheswm dros ohirio: Rheswm ansafonol", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] }, { - "id" : "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", - "label" : "Pre-release bail condition: Surety - find a surety", - "shortCode" : "PRBCS1", - "level" : "O", - "rank" : 27700, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "surety" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", - "label" : "In the sum of", - "welshLabel" : "Y swm o", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JU", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", - "label" : "Pre-release bail condition: Surety - find a continuous surety", - "shortCode" : "PRBCS2", - "level" : "O", - "rank" : 27800, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "surety", "conditional" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", - "label" : "In the sum of", - "welshLabel" : "Y swm o", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JV", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4558f9b2-47f8-4430-a0f8-684df5d55761", - "label" : "Pre-release bail condition: Surety - find sureties", - "shortCode" : "PRBCS3", - "level" : "O", - "rank" : 27900, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "sureties" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5139e711-b645-4b1c-af81-84f5887abdf6", - "label" : "Number of sureties", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", - "label" : "In the sum of", - "welshLabel" : "Y swm o", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JW", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b9581c12-81c9-434d-8851-03d9638547fa", - "label" : "Pre-release bail condition: Security - lodge with Court", - "shortCode" : "PRBCSE1", - "level" : "O", - "rank" : 28000, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "security", "lodge" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e18066ab-1dd0-4bee-a43d-30417de4c3c3", - "label" : "Specify what is to be lodged", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "364d3065-0699-4df1-a68f-a69c429d0867", - "label" : "Community requirement: Foreign travel prohibition with excepted country for dates", - "shortCode" : "FTPED", - "level" : "O", - "rank" : 3500, - "wordGroups" : [ { - "wordGroup" : [ "foreign", "travel", "except", "dates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", - "label" : "Country allowed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "countryAllowed", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "464b2a25-dfe4-42b2-8cc7-29a66edf9743", - "label" : "Dates of prohibition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "datesOfProhibition", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3147", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "rollUpPrompts": false, - "publishedForNows": true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b922e6bd-70a4-4b28-b583-165179af6162", - "label" : "Pre-release bail condition: Security - pay a deposit to Court", - "shortCode" : "PRBCSE2", - "level" : "O", - "rank" : 28100, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "security", "deposit" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "04d4075d-b306-44f4-9200-db9ad9577ea2", - "label" : "Amount", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", - "label" : "Pre-release bail condition: Other - give the court a telephone number and tell the court immediately if the number changes or you can no longer be contacted on that number", - "shortCode" : "PRBCT", - "level" : "O", - "rank" : 28200, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "telephone", "number" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "68972040-55eb-42c8-aac6-975f88d64511", - "label" : "Date by which must give telephone number", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JG", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c51e3522-5363-4af0-b5af-97a5f9eb5462", - "label" : "Pre-release bail condition: Other", - "shortCode" : "PRBCO", - "level" : "O", - "rank" : 28300, - "wordGroups" : [ { - "wordGroup" : [ "pre-release", "other" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad5ad2de-35e5-4395-b5e7-913d0fc09349", - "label" : "Specify", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Pre-release bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "525c4660-9a0b-4a86-80fc-0efce539d6a5", - "label" : "Bail condition: Assessments/Reports - undergo an assessment for dependency on Class A drugs and participate in any follow-up assessment, assistance or treatment considered appropriate", - "shortCode" : "PORAR1", - "level" : "O", - "rank" : 28400, - "wordGroups" : [ { - "wordGroup" : [ "bail", "assessment", "Drug" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fc5fe29-28f8-47dc-86f9-7b3221a71975", - "label" : "Specify qualified person to conduct assessments/reports", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "specifyQualifiedPersonToConductAssessmentsreports", - "courtExtract" : "Y", - "durationSequence" : null, - "hidden": true - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "GT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e073f3ba-2585-4c0d-8c31-e51a1662d143", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Bail condition: Assessments/Reports - participate in any assistance or treatment considered appropriate for misuse of class A drugs", - "shortCode" : "PORAR2", - "level" : "O", - "rank" : 28500, - "wordGroups" : [ { - "wordGroup" : [ "bail", "treatment", "Drug" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7656ce22-8bee-497c-8e27-c7718a743652", - "label" : "Specify qualified person who will decide treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "specifyQualifiedPersonWhowillDecideTreatment", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "GT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1aa6a828-fedb-43bd-89e8-bc74586d5e85", - "label" : "Bail condition: Assessments/Reports - provide pre-sentence drug test samples", - "shortCode" : "PORAR3", - "level" : "O", - "rank" : 28600, - "wordGroups" : [ { - "wordGroup" : [ "bail", "Drug", "test" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2e4bf9d6-5184-45bf-bd33-b4e2d1430e2f", - "label" : "Date to provide samples by", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a124724e-2348-41fc-a4b6-6f22c8ef421e", - "label" : "Specify details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "GT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "136725da-5b0a-43d3-adac-54f916bcf2bb", - "label" : "Bail condition: Assessments/Reports - report to the local probation office for a report to be made", - "shortCode" : "PORAR4", - "level" : "O", - "rank" : 28700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "probation", "office", "report" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f4da7a9c-a52e-4fbc-a21b-ce1a1d7c6b5d", - "label" : "Probation office", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d351e768-f0f8-4e14-a042-f8306981b1c8", - "label" : "Time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "55be2d17-7b95-4cc9-b8f0-290f84e66d85", - "label" : "Date", - "welshLabel" : "Dyddiad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "919ca489-f98d-4776-8b44-2e42958247d4", - "label" : "Provider of probation services", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JZ", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", - "label" : "Bail condition: Assessments/Reports - report to the local office of a provider of probation services for a report to be made", - "shortCode" : "PORAR5", - "level" : "O", - "rank" : 28800, - "wordGroups" : [ { - "wordGroup" : [ "bail", "probation", "provider", "report" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JZ", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Bail condition: Assessments/Reports - make available for reports to be prepared", - "shortCode" : "PORAR6", - "level" : "O", - "rank" : 28900, - "wordGroups" : [ { - "wordGroup" : [ "bail", "available", "report" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JZ", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", - "label" : "Bail condition: Assessments/Reports - report to a youth justice team for a report to be made", - "shortCode" : "PORAR7", - "level" : "O", - "rank" : 29000, - "wordGroups" : [ { - "wordGroup" : [ "bail", "report", "yjt" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ae2e98c1-1b4b-4b19-8f60-22bd56aaed72", - "label" : "Youth Justice Team Location", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d351e768-f0f8-4e14-a042-f8306981b1c8", - "label" : "Time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "55be2d17-7b95-4cc9-b8f0-290f84e66d85", - "label" : "Date", - "welshLabel" : "Dyddiad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RE", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "label" : "Community requirement: Alcohol treatment", - "shortCode" : "ATR", - "level" : "O", - "rank" : 3600, - "wordGroups" : [ { - "wordGroup" : [ "Alcohol", "treatment", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f092fe58-2297-4d10-818a-8b303692ac39", - "label" : "Under direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3110", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", - "label" : "Bail condition: Computer - not to use any device capable of accessing the internet unless it can retain and display a history of internet use and it is made available to police for inspection upon request", - "shortCode" : "PORCO1", - "level" : "O", - "rank" : 29100, - "wordGroups" : [ { - "wordGroup" : [ "bail", "device", "internet", "history" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RF", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "rollUpPrompts": false, - "publishedForNows": true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6889288e-5e4a-4523-be2c-cc993a00af29", - "label" : "Bail condition: Computer - not to delete any history of computer use", - "shortCode" : "PORCO2", - "level" : "O", - "rank" : 29200, - "wordGroups" : [ { - "wordGroup" : [ "bail", "delete", "history" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RG", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0649851f-01f8-48fb-928d-6fe100042b2a", - "label" : "Bail condition: Computer - not to use", - "shortCode" : "PORCO3", - "level" : "O", - "rank" : 29300, - "wordGroups" : [ { - "wordGroup" : [ "bail", "computer", "not", "use" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b862676c-a945-4fa4-b0fc-551a2d043593", - "label" : "Specify device / service", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4f585f53-f68c-41f1-9734-e88aa1e91f14", - "label" : "Specify restriction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", - "label" : "Bail condition: Computer - not to possess any device capable of storing digital images unless you make it available on request", - "shortCode" : "PORCO4", - "level" : "O", - "rank" : 29400, - "wordGroups" : [ { - "wordGroup" : [ "bail. device", "images" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", - "label" : "Bail condition: Curfew", - "shortCode" : "PORCU1", - "level" : "O", - "rank" : 29500, - "wordGroups" : [ { - "wordGroup" : [ "bail", "Curfew" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JD", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "03edddce-c188-4b38-9832-988d9d1ee802", - "label" : "Bail condition: Curfew with electronic monitoring - first notification", - "shortCode" : "PORCU2", - "level" : "O", - "rank" : 29600, - "wordGroups" : [ { - "wordGroup" : [ "bail", "Electronic", "Monitoring", "first" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5c02ff4c-6a33-4089-8c9e-f120a688b018", - "label" : "Bail condition: Curfew with electronic monitoring - variation notification", - "shortCode" : "PORCU2V", - "level" : "O", - "rank" : 29700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "Electronic", "Monitoring", "variation" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b271650b-0203-4d68-bcef-307038acfdf0", - "label" : "Date of original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "afc73f23-3308-40a1-ae8e-c00a8f282699", - "label" : "Original case number if different", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d45c8150-3095-4cb3-a55e-b4fd094af560", - "label" : "Bail condition: Curfew with electronic monitoring - additional notification", - "shortCode" : "PORCU2A", - "level" : "O", - "rank" : 29800, - "wordGroups" : [ { - "wordGroup" : [ "bail electronic", "Monitoring", "Additional" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b271650b-0203-4d68-bcef-307038acfdf0", - "label" : "Date of original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "afc73f23-3308-40a1-ae8e-c00a8f282699", - "label" : "Original case number if different", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "922386e1-bdc2-403e-8902-af1da14e1fd8", - "label" : "Bail condition: Curfew with electronic monitoring - continuation notification", - "shortCode" : "PORCU2C", - "level" : "O", - "rank" : 29900, - "wordGroups" : [ { - "wordGroup" : [ "bail", "Electronic", "Monitoring", "continuation" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d34b643e-74d5-4288-a4b9-bce14d0069d5", - "label" : "Bail condition: Curfew - and present him/herself to a police officer who asks to see them between these times", - "shortCode" : "PORCU3", - "level" : "O", - "rank" : 30000, - "wordGroups" : [ { - "wordGroup" : [ "bail", "present", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3dc08eca-ae74-432e-909e-1060d6a7b098", - "label" : "Frequency", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JE", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "label" : "Community requirement: Alcohol treatment non-residential", - "shortCode" : "ATRNR", - "level" : "O", - "rank" : 3700, - "wordGroups" : [ { - "wordGroup" : [ "Alcohol", "treatment", "Non-residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "62882318-42b3-4bf9-8bc5-e724aeaaa19a", - "label" : "Treatment institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f092fe58-2297-4d10-818a-8b303692ac39", - "label" : "Under direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6aaf3645-0806-4917-ada5-b019c6a606c5", - "label" : "Treatment intervals", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3110", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BS", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fb9b273e-06c3-4a4a-940c-3c053c559abe", - "label" : "Bail condition: Exclusion - not drive a motor vehicle on any road or in any other public place", - "shortCode" : "PORE1", - "level" : "O", - "rank" : 30100, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "drive" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JF", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "481547e6-9099-475e-8028-2bce2c52ff5f", - "label" : "Bail condition: Exclusion - not to associate with", - "shortCode" : "PORE2", - "level" : "O", - "rank" : 30200, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "associate" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", - "label" : "Names", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JK", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", - "label" : "Bail condition: Exclusion - not to contact directly or indirectly", - "shortCode" : "PORE3", - "level" : "O", - "rank" : 30300, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "contact" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", - "label" : "Names", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JK", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dfa19118-e944-43f4-93b2-2ed49df5553f", - "label" : "Bail condition: Exclusion - not to enter a place except to attend court or pre-arranged appointment with solicitor", - "shortCode" : "PORE4", - "level" : "O", - "rank" : 30400, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "enter", "court", "solicitor" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1559b30a-b931-4e3d-86e9-88ab8b116a81", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JO", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c1d490ed-1754-43b8-a485-fdab1a25f8cb", - "label" : "Bail condition: Exclusion - not to enter a place", - "shortCode" : "PORE5", - "level" : "O", - "rank" : 30500, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "enter" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1559b30a-b931-4e3d-86e9-88ab8b116a81", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JO", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "90146942-b1b9-4a2e-af2b-141f50d45e5c", - "label" : "Bail condition: Exclusion - not go to any public house, licensed club or off licence", - "shortCode" : "PORE6", - "level" : "O", - "rank" : 30600, - "wordGroups" : [ { - "wordGroup" : [ "bail", "public", "house" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JN", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9da5909e-d715-4f79-a1b8-34780c57acf1", - "label" : "Bail condition: Exclusion - not go within a radius", - "shortCode" : "PORE7", - "level" : "O", - "rank" : 30700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "radius" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ef055240-4c06-45f3-961a-1344ebd56ea5", - "label" : "Radius", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JO", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d709a455-02cc-40d9-b3d2-e4194dc46792", - "label" : "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer", - "shortCode" : "PORE8", - "level" : "O", - "rank" : 30800, - "wordGroups" : [ { - "wordGroup" : [ "bail", "radius", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ce3ef725-44bf-480c-954a-a2f5cbf75daf", - "label" : "Radius", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JP", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", - "label" : "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer. One visit only", - "shortCode" : "PORE9", - "level" : "O", - "rank" : 30900, - "wordGroups" : [ { - "wordGroup" : [ "bail", "radius", "police", "visit" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ce3ef725-44bf-480c-954a-a2f5cbf75daf", - "label" : "Radius", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4637e296-9fff-42fd-8d91-0556ff8bee7a", - "label" : "Place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JP", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, - { - "id" : "99586f43-5b18-45da-87f7-1764ad149985", - "label" : "Community requirement: Alcohol treatment residential", - "shortCode" : "ATRR", - "level" : "O", - "rank" : 3800, - "wordGroups" : [ { - "wordGroup" : [ "Alcohol", "treatment", "Residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "62882318-42b3-4bf9-8bc5-e724aeaaa19a", - "label" : "Treatment institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f092fe58-2297-4d10-818a-8b303692ac39", - "label" : "Under direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3110", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "74046e6e-ecb8-4f1f-b210-c5731f080913", - "label" : "Restraining order until further order", - "shortCode" : "RESTRAOF", - "level" : "O", - "rank" : 1000, - "wordGroups" : [ { - "wordGroup" : [ "Restraining", "Order", "Further" ] - }, { - "wordGroup" : [ "RESTRAOF" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "3054909b-15b6-499f-b44f-67b2b1215c76", - "label" : "Protected person's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "ADDRESS", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", - "label" : "Protected person", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "8df0ec7e-5985-4998-af1a-5da293d9cb3c", - "label" : "Order details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47337f1c-e343-4093-884f-035ba96c4db0", - "label" : "Conviction / acquittal", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8dc70c95-fb09-4842-9138-bc579fceb605", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ea26f773-0a91-4526-b4ad-84d07b5bf940", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3047", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", - "label" : "Bail condition: Exclusion - not to leave", - "shortCode" : "PORE11", - "level" : "O", - "rank" : 31100, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "leave" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", - "label" : "Place or area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", - "label" : "Bail condition: Exclusion - not to go more than a specified radius from a specified place", - "shortCode" : "PORE12", - "level" : "O", - "rank" : 31200, - "wordGroups" : [ { - "wordGroup" : [ "bail", "radius", "place" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ce3ef725-44bf-480c-954a-a2f5cbf75daf", - "label" : "Radius", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", - "label" : "Place or area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "075cc0f1-eb22-407b-a958-bfbb80cf50e2", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4c79ea50-6e14-4c47-8836-c0d0f647e45a", - "label" : "Bail condition: Exclusion - the exclusion condition to be electronically monitored with a GPS tag", - "shortCode" : "PORE13", - "level" : "O", - "rank" : 31300, - "wordGroups" : [ { - "wordGroup" : [ "bail", "exclusion", "GPS" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "834ed20a-d7d8-419b-b72d-61b30db36560", - "label" : "Bail condition: Other", - "shortCode" : "PORO1", - "level" : "O", - "rank" : 31400, - "wordGroups" : [ { - "wordGroup" : [ "bail", "other" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9be3658b-f425-4673-8c17-b2407badb8c2", - "label" : "Specify post-release bail condition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "46051d94-0e60-4010-b86d-cf65e1a464d8", - "label" : "Bail condition: Other - to keep mobile phone switched on, fully charged and on your person 24 hours a day", - "shortCode" : "PORO2", - "level" : "O", - "rank" : 31500, - "wordGroups" : [ { - "wordGroup" : [ "bail", "mobile", "phone" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0163061b-ac29-4d49-9491-13168ac60f82", - "label" : "Mobile number", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RH", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", - "label" : "Bail condition: Other - report to police station", - "shortCode" : "PORO3", - "level" : "O", - "rank" : 31600, - "wordGroups" : [ { - "wordGroup" : [ "bail", "report", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b9bc8c23-dc0b-433d-b9e4-4b957fd1b7d4", - "label" : "Police Station Name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd68ee58-86a8-471a-bb8d-f4da3b07076d", - "label" : "Time 1", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label" : "Time 2", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e834e96c-f300-4da9-b781-51d38204deb5", - "label" : "Reporting days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JQ", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", - "label" : "Bail condition: Other - see solicitor", - "shortCode" : "PORO4", - "level" : "O", - "rank" : 31700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "see", "solicitor" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", - "label" : "Bail condition: Other - see barrister", - "shortCode" : "PORO5", - "level" : "O", - "rank" : 31800, - "wordGroups" : [ { - "wordGroup" : [ "bail", "see", "barrister" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", - "label" : "Bail condition: Residence - live, and sleep each night, at bail hostel", - "shortCode" : "PORR1", - "level" : "O", - "rank" : 31900, - "wordGroups" : [ { - "wordGroup" : [ "bail", "live", "sleep", "hostel" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "16816060-7454-460c-a177-c8da502e18ab", - "label" : "Hostel name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JR", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a50ad03e-d299-4da7-874c-0f233d7d503d", - "label" : "Bail condition: Residence - live, and sleep each night, at bail hostel or at any other place where you may be told to go by specified person", - "shortCode" : "PORR2", - "level" : "O", - "rank" : 32000, - "wordGroups" : [ { - "wordGroup" : [ "bail", "live", "sleep", "hostel", "other" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "16816060-7454-460c-a177-c8da502e18ab", - "label" : "Hostel name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "713e61b8-4899-408f-b6e4-77cc33abbb1a", - "label" : "Supervisor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JS", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "label" : "Community requirement: Attendance centre", - "shortCode" : "ACR", - "level" : "O", - "rank" : 3900, - "wordGroups" : [ { - "wordGroup" : [ "attendance", "centre", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6724800d-3f2d-4503-a078-3a50497a3a20", - "label" : "Number of hours", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Hours", - "wordGroup" : [ "Hours" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "28e2f7e0-8886-4cf6-a828-776849f8d3d4", - "label" : "Additional / concurrent to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3111", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c18dd89d-e057-42aa-b071-0a91226da3bf", - "label" : "Bail condition: Residence - live and sleep each night at address", - "shortCode" : "PORR3", - "level" : "O", - "rank" : 32100, - "wordGroups" : [ { - "wordGroup" : [ "bail", "live", "sleep" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", - "label" : "Address", - "welshLabel" : "Cyfeiriad", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RB", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "795079ed-4b5a-4750-b077-d653180d43ae", - "label" : "Bail condition: Residence - not to live in the same household", - "shortCode" : "PORR4", - "level" : "O", - "rank" : 32200, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "live" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4f585f53-f68c-41f1-9734-e88aa1e91f14", - "label" : "Specify restriction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "HC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "71efa12c-a68e-4537-ac7d-27ebf91557a6", - "label" : "Bail condition: Residence BASS - live and sleep each night at specified address and comply with the conditions of BASS", - "shortCode" : "PORR5", - "level" : "O", - "rank" : 32300, - "wordGroups" : [ { - "wordGroup" : [ "bail", "live", "sleep", "bass" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0dbf39c0-02e9-498f-87cd-c1221270c535", - "label" : "BASS address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "RB", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "36951b36-de01-45bc-91a7-1c68f5989ed5", - "label" : "Bail condition: Residence BASS - take part in additional mandatory support sessions (more than the minimum of one session per week)", - "shortCode" : "PORR6", - "level" : "O", - "rank" : 32400, - "wordGroups" : [ { - "wordGroup" : [ "bail", "support", "sessions" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "91141263-7f27-494f-95e9-04a113952974", - "label" : "Bail condition: Surety - find continuous surety / sureties", - "shortCode" : "PORS", - "level" : "O", - "rank" : 32500, - "wordGroups" : [ { - "wordGroup" : [ "bail", "continuous", "surety" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5139e711-b645-4b1c-af81-84f5887abdf6", - "label" : "Number of sureties", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "088ef869-d7f9-4184-b624-6c1e9fab8bee", - "label" : "In the sum of", - "welshLabel" : "Y swm o", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JX", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", - "label" : "Bail condition: Travel - not to apply for international travel documents or be in possession of any", - "shortCode" : "PORT1", - "level" : "O", - "rank" : 32600, - "wordGroups" : [ { - "wordGroup" : [ "bail", "travel", "documents" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", - "label" : "Bail condition: Travel - not to leave England and Wales", - "shortCode" : "PORT2", - "level" : "O", - "rank" : 32700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "not", "leave", "England", "Wales" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "JY", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bail conditions", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fbed768b-ee95-4434-87c8-e81cbc8d24c8", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Next hearing in Crown Court", - "shortCode" : "NHCCS", - "level" : "O", - "rank" : 500, - "wordGroups" : [ { - "wordGroup" : [ "NHCCS" ] - }, { - "wordGroup" : [ "adjournment", "Crown" ] - }, { - "wordGroup" : [ "next", "hearing", "Crown" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : "Hours", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : "Minutes", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dfac671c-5b85-42a1-bb66-9aeee388a08d", - "label" : "Time of hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTIME", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f507153-6dc9-4ec0-94db-c821eff333f1", - "label" : "Courtroom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HCROOM", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7746831a-d5dd-4fa8-ac13-528573948c8a", - "label" : "Courthouse name", - "welshLabel" : "Enw’r adeilad llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HCHOUSE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9403f0d7-90b5-4377-84b4-f06a77811362", - "label" : "Remand Status", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "c82897b8-7e25-4b5d-9cd3-dbf3e1cb7c0c", - "qual" : null, - "reference" : "remandStatus", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "42962373-587c-4324-9ae6-7c99171d1c69", - "label" : "Week commencing", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HDATE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7e72e671-295a-4e56-a419-2a59a14863b0", - "label" : "Fixed date", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : null, - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : "fixedDate", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Next hearing", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3a529001-2f43-45ba-a0a8-d3ced7e9e7ad", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Remanded on conditional bail", - "shortCode" : "RC", - "reference" : "", - "level" : "O", - "rank" : 32800, - "wordGroups" : [ { - "wordGroup" : [ "remanded", "conditional", "bail" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label" : "Is the defendant excused attendance?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantExcusedAttendance", - "courtExtract" : "Y", - "durationSequence" : null, - "hidden" : false - }, { - "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", - "label" : "Bail condition reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual" : null, - "reference" : "bailConditionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dec5104c-3342-4544-b287-31ea969e0f15", - "label" : "BASS provider", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bassProvider", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4027", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand conditional bail", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "mandatory" - }, { - "childResultDefinitionId" : "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "ruleType" : "mandatory" - }, { - "childResultDefinitionId" : "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "ruleType" : "optional" - } ] - }, { - "id" : "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", - "label" : "Remanded on unconditional bail", - "shortCode" : "RU", - "level" : "O", - "rank" : 33000, - "wordGroups" : [ { - "wordGroup" : [ "remand", "unconditional" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label" : "Is the defendant excused attendance?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantExcusedAttendance", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4047", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand unconditional bail", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "label" : "Community requirement: Alcohol abstinence", - "shortCode" : "AAR", - "level" : "O", - "rank" : 4000, - "wordGroups" : [ { - "wordGroup" : [ "Alcohol", "abstinence", "Requirement" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3146", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d0a369c9-5a28-40ec-99cb-da7943550b18", - "label" : "Remanded in custody", - "shortCode" : "RI", - "level" : "O", - "rank" : 33300, - "wordGroups" : [ { - "wordGroup" : [ "remand", "custody" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "21ecdc07-7397-4eac-9c26-e66dfeb32d01", - "label" : "TV link at next hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "tvLinkAtNextHearing", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "343de039-f33b-4770-b61c-4d6db4ae369c", - "label" : "TV link pre-hearing conference time", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "tVLinkPrehearingConferenceTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label" : "Remand basis", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual" : null, - "reference" : "remandBasis", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "7b2e6219-ddcb-4afa-8615-8de978e60af1", - "label" : "Bail exception", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "10a769e8-1b1c-430d-844b-8948942cf353", - "qual" : null, - "reference" : "bailException", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", - "label" : "Bail exception reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "c0fb2ca5-7702-4f01-b344-33029cfdcd47", - "qual" : null, - "reference" : "bailExceptionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4028", - "drivingTestStipulation":1, - "pointsDisqualificationCode":"TT99", - "dvlaCode": "C", - "secondaryCJSCodes": [ - { - "cjsCode":"1234", - "text":"SecondaryCjsCode text1" - }, - { - "cjsCode":"5678", - "text":"SecondaryCjsCode text2" - } - ], - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "C", - "resultDefinitionGroup" : "Remand in custody", - "policeSubjectLineTitle" : "Final Sentence", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6af22d8d-6157-460e-b641-e6db90d15289", - "label" : "Remanded in custody pending receipt of Prosecutor's written notice of appeal", - "shortCode" : "RIBA2", - "level" : "O", - "rank" : 33500, - "wordGroups" : [ { - "wordGroup" : [ "remand", "appeal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e1b8b750-af91-466a-acf8-c7f6685d3b26", - "label" : "Time when oral notice of appeal was given", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "timeOfOralNotice", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8b0bf6d4-e48a-425c-bc0d-fed8948010e5", - "label" : "Custodian name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "custodianName", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand appeal", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7a0932f5-8264-412e-a83c-2b6d1dce1506", - "label" : "Prosecutor's notice of appeal received. Remanded in custody", - "shortCode" : "RIBA48", - "level" : "O", - "rank" : 33600, - "wordGroups" : [ { - "wordGroup" : [ "remand", "custody", "appeal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "66f338f2-6c3b-4511-b224-97cbc1eab1c0", - "label" : "Time when written notice of appeal was received", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "timeofWrtittenNotice", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "de91870f-f1e3-4dcd-a8ee-fa409ee34beb", - "label" : "Crown Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "crownCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6730aae5-9e6b-45e6-8a2e-0e06cc70c7ca", - "label" : "Date otherwise bailed to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4049", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "C", - "resultDefinitionGroup" : "Remand appeal", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "074124d5-b07a-4b73-8b9a-792e8462138a", - "label" : "Prosecutor's bail appeal withdrawn. (D in local custody). Release in accordance with earlier decision", - "shortCode" : "RIBAWL", - "level" : "O", - "rank" : 33700, - "wordGroups" : [ { - "wordGroup" : [ "bail", "appeal", "wthdrawn" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7af5471c-34c1-4176-b595-8f9a796ac455", - "label" : "Basis of appeal being withdrawn", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand appeal", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6511006f-b40d-4fcb-8372-bc38fde69b64", - "label" : "Remitted to youth court for trial", - "shortCode" : "REMYCT", - "level" : "O", - "rank" : 33800, - "wordGroups" : [ { - "wordGroup" : [ "remit", "youth", "trial" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "44e3bc06-0c07-422a-84a1-bcca57f898f4", - "label" : "Youth Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7f2d58f4-ca3d-4059-9df5-19f7cb744676", - "label" : "Remitted to youth court for sentence", - "shortCode" : "REMYCS", - "level" : "O", - "rank" : 33900, - "wordGroups" : [ { - "wordGroup" : [ "remit", "youth", "sentence" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "44e3bc06-0c07-422a-84a1-bcca57f898f4", - "label" : "Youth Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fcbf777d-1a73-47e7-ab9b-7c51091a022c", - "label" : "Direction made under Section 45 of the Youth Justice and Criminal Evidence Act 1999", - "shortCode" : "D45", - "level" : "O", - "rank" : 34000, - "wordGroups" : [ { - "wordGroup" : [ "direction", "45", "youth" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "03983f51-f937-4dd8-9656-276b1ca86785", - "label" : "Restricting publicity in respect of youth - Specify name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label" : "Further details", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4510", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", - "label" : "Direction under Section 45A of the Youth Justice and Criminal Evidence Act 1999", - "shortCode" : "D45A", - "level" : "O", - "rank" : 34200, - "wordGroups" : [ { - "wordGroup" : [ "direction", "45a", "youth" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "03983f51-f937-4dd8-9656-276b1ca86785", - "label" : "Restricting publicity in respect of youth - Specify name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label" : "Further details", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4510", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "89e3c24b-acbf-42fb-9eee-169b83423035", - "label" : "Direction made under Section 46 of the Youth Justice and Criminal Evidence Act 1999", - "shortCode" : "D46", - "level" : "O", - "rank" : 34300, - "wordGroups" : [ { - "wordGroup" : [ "direction", "46", "youth" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "27247b35-5013-41cb-9b24-26d38332e547", - "label" : "Restricting publicity in respect of adult witness - specify name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label" : "Further details", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4510", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c265d589-fcc0-451b-be43-7856e32524ba", - "label" : "Direction made under Section 39 of the Children and Young Persons Act 1933", - "shortCode" : "D39", - "level" : "O", - "rank" : 34400, - "wordGroups" : [ { - "wordGroup" : [ "direction", "39", "children" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ff5f8083-5413-467f-b359-9abfb49ecbb2", - "label" : "State if youth is defendant, witness or victim or combination of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", - "label" : "Further details", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4510", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d683f73c-488e-4d8e-a685-d37049c2a3e5", - "label" : "Community requirement: Alcohol abstinence with alcohol limit", - "shortCode" : "AARAL", - "level" : "O", - "rank" : 4100, - "wordGroups" : [ { - "wordGroup" : [ "Alcohol", "abstinence", "limit" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2d340f59-2b74-437b-8d7d-6b316613021c", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fac82e4b-7c37-4a46-a689-3f1defe2474a", - "label" : "Alcohol limit", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3146", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "393c5be8-dadb-484b-ab39-0f1eb57aeae5", - "label" : "Order made under Section 11 of the Contempt of Court Act 1981 until date", - "shortCode" : "D11", - "level" : "O", - "rank" : 34500, - "wordGroups" : [ { - "wordGroup" : [ "11", "contempt", "until" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a73b3f21-1978-45fc-b413-0299c60e07ad", - "label" : "Details of the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3ea2cb5c-397e-4dd3-8328-d375135f3191", - "label" : "Date of expiry", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", - "label" : "Purpose of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9647428f-0946-4a09-aec1-7bdfcd324ac6", - "label" : "Order made under Section 11 of the Contempt of Court Act 1981 until further order", - "shortCode" : "D11FO", - "level" : "O", - "rank" : 34600, - "wordGroups" : [ { - "wordGroup" : [ "11", "contempt", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a73b3f21-1978-45fc-b413-0299c60e07ad", - "label" : "Details of the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", - "label" : "Purpose of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "21271525-76f4-4134-9c93-1be012a574c8", - "label" : "Order made under Section 4 of the Contempt of Court Act 1981", - "shortCode" : "D4", - "level" : "O", - "rank" : 34700, - "wordGroups" : [ { - "wordGroup" : [ "Order", "4", "contempt" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a73b3f21-1978-45fc-b413-0299c60e07ad", - "label" : "Details of the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "318c9eb2-cf3c-4592-a353-1b2166c15f81", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4510", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d023e3a7-33ef-45b4-a19b-5137afecbf1f", - "label" : "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until date - derogatory assertions", - "shortCode" : "D58", - "level" : "O", - "rank" : 34800, - "wordGroups" : [ { - "wordGroup" : [ "Order", "58", "until" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", - "label" : "Assertions", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", - "label" : "Witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3ea2cb5c-397e-4dd3-8328-d375135f3191", - "label" : "Date of expiry", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2c18aff1-b535-47b6-8415-8841e85eac49", - "label" : "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until further order - derogatory assertions", - "shortCode" : "D58FO", - "level" : "O", - "rank" : 34900, - "wordGroups" : [ { - "wordGroup" : [ "Order", "58", "Further" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", - "label" : "Assertions", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", - "label" : "Witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2e725ba6-0e29-4ffb-a5c7-31b67344c211", - "label" : "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity in respect of youth", - "shortCode" : "D49Y", - "level" : "O", - "rank" : 35100, - "wordGroups" : [ { - "wordGroup" : [ "Order", "49", "publicity", "youth" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "788bb732-5467-4c0b-ba88-96a0ef8aaeb4", - "label" : "Name of youth", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94084f13-fa2f-4d24-938b-0656292edd59", - "label" : "Details of reporting restriction lifted", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "98366b12-b70a-4e66-b71d-a5bbd39bd595", - "label" : "Order made allowing reporting", - "shortCode" : "DALLOW", - "level" : "O", - "rank" : 35200, - "wordGroups" : [ { - "wordGroup" : [ "allow", "reporting" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "42711aff-3d3a-4d85-8e68-f03065823422", - "label" : "Details of directions allowed to be reported", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", - "label" : "Direction restricting publicity revoked", - "shortCode" : "DPR", - "level" : "O", - "rank" : 35300, - "wordGroups" : [ { - "wordGroup" : [ "publicity", "revoked" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1a7da720-a95a-46e4-b2ee-6b8e9db430cc", - "label" : "Date direction allowing publicity made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", - "label" : "Excepting direction varied", - "shortCode" : "DV", - "level" : "O", - "rank" : 35400, - "wordGroups" : [ { - "wordGroup" : [ "exception", "direction", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "851f11ed-99d5-4d2a-96c0-227df6743250", - "label" : "Date excepting direction made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", - "label" : "Details of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "label" : "Community requirement: Mental health treatment", - "shortCode" : "MHTR", - "level" : "O", - "rank" : 4200, - "wordGroups" : [ { - "wordGroup" : [ "Mental", "Health", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HG", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", - "label" : "Excepting direction revoked", - "shortCode" : "DR", - "level" : "O", - "rank" : 35500, - "wordGroups" : [ { - "wordGroup" : [ "exception", "direction", "revoked" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "851f11ed-99d5-4d2a-96c0-227df6743250", - "label" : "Date excepting direction made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b3035ace-15d4-44ca-9d79-c83a57dc0e30", - "label" : "Excepting direction made dispensing with publicity restrictions", - "shortCode" : "DP", - "level" : "O", - "rank" : 35600, - "wordGroups" : [ { - "wordGroup" : [ "dispense", "publicity" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5b4ddad9-db87-43b4-a127-cc8312a7d56c", - "label" : "Date publicity restriction made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7d61ec4e-f75a-489d-9950-5584e354659c", - "label" : "Extent of dispensation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "84222bcb-05ac-4c67-82df-cc8742a850d1", - "label" : "The Court directs that information relating to the complainant may be published in connection with the summary trial of the case", - "shortCode" : "DST", - "level" : "O", - "rank" : 35700, - "wordGroups" : [ { - "wordGroup" : [ "complainant", "published", "trial" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1ffa4f8d-2e22-4226-8f29-fe09b0ef00f6", - "label" : "Complainant information", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "07d8fab1-366d-43c5-bdb4-223f8c1229f5", - "label" : "Complainant's anonymity protected by virtue of Section 1 of the Sexual Offences Amendment Act 1992", - "shortCode" : "DSOA", - "level" : "O", - "rank" : 35800, - "wordGroups" : [ { - "wordGroup" : [ "anonymity", "protrected", "sexual" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2e83102c-a262-4bb3-a48d-c2107a094a66", - "label" : "Order revoked", - "shortCode" : "OREV", - "level" : "O", - "rank" : 35900, - "wordGroups" : [ { - "wordGroup" : [ "Order", "revoked" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7e8ec1d3-e8fb-4116-9e37-842120700c48", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "917a6802-ef7e-4449-8df9-6f9a49fcbe91", - "label" : "Order revoked", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "50f095ad-e289-433a-817a-6d79c567a5fa", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0eba630e-a486-439f-8d76-b49b1363067c", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "94fbf012-b9a6-4b3c-8743-0803aff0e25c", - "label" : "Date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1029", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "14f22747-685e-4bd9-91e7-fb372d8c3b72", - "label" : "Order to continue", - "shortCode" : "OTC", - "level" : "O", - "rank" : 36000, - "wordGroups" : [ { - "wordGroup" : [ "Order", "continue" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1040", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c98cb51f-8639-49c1-91f0-a7e820c34355", - "label" : "Warrant for arrest without bail", - "shortCode" : "WOFN", - "level" : "O", - "rank" : 36100, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "without", "bail" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label" : "Grounds for warrant", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label" : "Process server name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4576", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b4f7c223-b9d1-4409-b6d3-039f66eb9645", - "label" : "Warrant for arrest with bail (dated)", - "shortCode" : "WOFD", - "level" : "O", - "rank" : 36300, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "with", "bail", "dated" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label" : "Grounds for warrant", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label" : "Process server name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "507c4249-d897-43bb-b64d-5c156ef6ba85", - "label" : "Bail to be allowed on these conditions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4575", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "optional" - } ] - }, { - "id" : "671df737-9901-4fa5-b245-aeff0c4c7495", - "label" : "Warrant for arrest with bail (undated)", - "shortCode" : "WOFU", - "level" : "O", - "rank" : 36400, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "with", "bail", "undated" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label" : "Grounds for warrant", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8ef9613e-f19c-11e8-904a-f2801f1b9fd1", - "label" : "Bail allowed on conditions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label" : "Process server name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4577", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c8c962df-e28c-4ea8-8496-721badb77b7b", - "label" : "Warrant for arrest redated", - "shortCode" : "WOFR", - "level" : "O", - "rank" : 36500, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "redated" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4575", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "optional" - } ] - }, { - "id" : "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "label" : "Community requirement: Mental health treatment residential patient", - "shortCode" : "MHTRR", - "level" : "O", - "rank" : 4300, - "wordGroups" : [ { - "wordGroup" : [ "Mental", "Health", "Non-residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fb580537-9d36-4139-811b-77af09547b0d", - "label" : "Care home / Hospital", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HE", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "73242763-44db-4d57-a855-44a6cf4f6226", - "label" : "Warrant for arrest without bail executed on day of issue", - "shortCode" : "WOFEX", - "level" : "O", - "rank" : 36600, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "issue" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", - "label" : "Grounds for warrant", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "423e0d8d-9de6-4790-b5bd-d52c2501d444", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b9d81454-a565-4a86-bcf9-e7c58bb89dba", - "label" : "Anti-social behaviour order varied", - "shortCode" : "ASBOV", - "level" : "O", - "rank" : 36700, - "wordGroups" : [ { - "wordGroup" : [ "asbo", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7e8ec1d3-e8fb-4116-9e37-842120700c48", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3f441b7c-e9ac-4f1c-b731-babfd2fa94d9", - "label" : "Anti-social order type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2da599de-da03-492e-b66f-e7aad32fcfa5", - "label" : "Terms of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c491a47d-b167-467b-b2f4-f9e567bd4da0", - "label" : "Start of date of variation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "90d8268d-cc6a-4a09-bdb3-ddf8ea8ef2f9", - "label" : "Variation of bail conditions", - "shortCode" : "RCBV", - "level" : "O", - "rank" : 36800, - "wordGroups" : [ { - "wordGroup" : [ "bail", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "77eb185c-03e7-4971-8dcc-77089d048731", - "label" : "Date bail previously granted", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "21541638-82dd-4a9f-a05c-67589dc8dce9", - "label" : "Court which previously granted bail", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label" : "Is the defendant excused attendance?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", - "label" : "Bail condition reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual" : null, - "reference" : "bailConditionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f7995d94-bf13-41df-a599-79ead4123aad", - "label" : "BASS provider", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4574", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Remand conditional bail", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "bb90e801-0066-4bdf-85e6-8d64bc683f0c", - "label" : "Reporting restriction continues", - "shortCode" : "REPC", - "level" : "O", - "rank" : 36900, - "wordGroups" : [ { - "wordGroup" : [ "reporting", "restrictions", "continue" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "18f255dd-103f-494f-81d0-82db5b5ee7bd", - "label" : "Date restriction imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Press", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "961962dd-70c3-463c-89d9-a2b2a393b165", - "label" : "Remitted from Crown Court to magistrates' court for trial", - "shortCode" : "REMITMC", - "level" : "O", - "rank" : 37000, - "wordGroups" : [ { - "wordGroup" : [ "remittal", "trial" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b09fdfef-bde4-4804-8731-f1c2632fbfcc", - "label" : "Local Justice Area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8542b0d9-27f0-4df3-a4a3-0ac0a85c33ad", - "label" : "Notice to magistrates' court that summary offence dismissed", - "shortCode" : "SUMD", - "level" : "O", - "rank" : 37100, - "wordGroups" : [ { - "wordGroup" : [ "summary", "Dismissed", "magistrates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b09fdfef-bde4-4804-8731-f1c2632fbfcc", - "label" : "Local Justice Area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "306c1775-ec96-4e1d-b35e-bcea099ce10a", - "label" : "Notice to magistrates' court that Crown Court powers regarding summary offence have ceased", - "shortCode" : "SUMC", - "level" : "O", - "rank" : 37200, - "wordGroups" : [ { - "wordGroup" : [ "magistrates", "powers", "ceased" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b09fdfef-bde4-4804-8731-f1c2632fbfcc", - "label" : "Local Justice Area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3fdf077e-92b3-4b58-abd1-040a42c35a45", - "label" : "Remanded to hospital for treatment", - "shortCode" : "RHT", - "level" : "O", - "rank" : 37300, - "wordGroups" : [ { - "wordGroup" : [ "remanded", "hospital" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f8ff8214-14b0-4425-94eb-64e6ae320f80", - "label" : "Specify hospital", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label" : "Remand basis", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual" : null, - "reference" : "remandBasis", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "7b2e6219-ddcb-4afa-8615-8de978e60af1", - "label" : "Bail exception", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "10a769e8-1b1c-430d-844b-8948942cf353", - "qual" : null, - "reference" : "bailException", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", - "label" : "Bail exception reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "c0fb2ca5-7702-4f01-b344-33029cfdcd47", - "qual" : null, - "reference" : "bailExceptionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label" : "Place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "placeOfSafety", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label" : "Conveyor/custodian", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96949d0c-a59c-4a6f-a563-97456c985987", - "label" : "Further directions regarding conveyance to place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4051", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "C", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "68c97f89-1672-417d-8513-74cded9d2322", - "label" : "Restriction order", - "shortCode" : "RISTO", - "level" : "O", - "rank" : 37400, - "wordGroups" : [ { - "wordGroup" : [ "restriction", "Order" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1004", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "04437aef-8b44-424e-9cd0-75a10a00f256", - "label" : "Hospital direction and limitation direction", - "shortCode" : "DHA", - "level" : "O", - "rank" : 37500, - "wordGroups" : [ { - "wordGroup" : [ "hospital", "limitation" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1000, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label" : "Early release provisions apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : [ "Early", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label" : "Early release provisions do not apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : [ "Early", "not", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1500, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ff8214-14b0-4425-94eb-64e6ae320f80", - "label" : "Specify hospital", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "specifyHospital", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6baa9e89-7d7d-47b4-bb99-3e3d22cbb011", - "label" : "Name of hospital unit", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label" : "Place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "placeOfSafety", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label" : "Conveyor/custodian", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96949d0c-a59c-4a6f-a563-97456c985987", - "label" : "Further directions regarding conveyance to place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1088", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "label" : "Community requirement: Mental health treatment non-residential patient", - "shortCode" : "MHTRNR", - "level" : "O", - "rank" : 4400, - "wordGroups" : [ { - "wordGroup" : [ "Mental", "Health", "Residential" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HF", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cb0842d5-9b42-4930-99b3-ae835b56aa56", - "label" : "Conditional discharge (no notice produced)", - "shortCode" : "CDN", - "level" : "O", - "rank" : 37600, - "wordGroups" : [ { - "wordGroup" : [ "conditional", "discharge", "notice" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label" : "Duration of conditional discharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label" : "Duration of conditional discharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label" : "Duration of conditional discharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e233917e-eeee-45fa-af4d-ca50e4f33af8", - "label" : "Duration of conditional discharge", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1018", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7dcc9315-917f-408c-bb77-df8b978f503d", - "label" : "Deferred sentence", - "shortCode" : "DS", - "level" : "O", - "rank" : 37700, - "wordGroups" : [ { - "wordGroup" : [ "deferred", "sentence" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2e93862b-2412-41ca-be12-5321815294f2", - "label" : "Requirements that must be carried out", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49806ee4-d2d8-40ce-b651-5fee1510aff4", - "label" : "The court has appointed a supervisor to supervise you", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1ab4b20a-9421-494f-8b17-843450050a6e", - "label" : "Name of victim involved in restorative justice", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e76ed20a-768a-41ad-8b95-921539ac3550", - "label" : "Address of victim involved in restorative justice", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4005", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "mandatory" - } ] - }, { - "id" : "b91a9688-6542-4132-84f2-a3ffff60edfa", - "label" : "Deferred sentence with restorative justice activity involving victim", - "shortCode" : "DEFRJ", - "level" : "O", - "rank" : 37800, - "wordGroups" : [ { - "wordGroup" : [ "deferred", "sentence", "victim" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2e93862b-2412-41ca-be12-5321815294f2", - "label" : "Requirements that must be carried out", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1ab4b20a-9421-494f-8b17-843450050a6e", - "label" : "Name of victim involved in restorative justice", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e76ed20a-768a-41ad-8b95-921539ac3550", - "label" : "Address of victim involved in restorative justice", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49806ee4-d2d8-40ce-b651-5fee1510aff4", - "label" : "The court has appointed a supervisor to supervise you", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4005", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2e3cdfca-8bce-4ad4-93c9-075bead61b0d", - "label" : "Notification of requirement to register with police until case dealt with", - "shortCode" : "NORRDW", - "level" : "O", - "rank" : 37900, - "wordGroups" : [ { - "wordGroup" : [ "register", "police" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7780ed3c-ab05-4a53-acce-316b5486d3ec", - "label" : "Parent's name if parental direction required", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "859b99d5-de74-4a84-b160-c914467af86d", - "label" : "Name of police station to report to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", - "label" : "Conviction / finding / insanity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3052", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c4c7db1f-673b-4633-8400-4739f483c68e", - "label" : "Notification of requirement to register with police for a period", - "shortCode" : "NORR", - "level" : "O", - "rank" : 38000, - "wordGroups" : [ { - "wordGroup" : [ "register", "police", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label" : "Notification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label" : "Notification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label" : "Notification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cb805e95-c265-4b4b-8b4d-678111bead6c", - "label" : "Notification period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7780ed3c-ab05-4a53-acce-316b5486d3ec", - "label" : "Parent's name if parental direction required", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "859b99d5-de74-4a84-b160-c914467af86d", - "label" : "Name of police station to report to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", - "label" : "Conviction / finding / insanity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3052", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "55b91429-8dda-4a8f-8b84-d4cd1a398ab5", - "label" : "Notification of requirement to register with police indefinately", - "shortCode" : "NORRI", - "level" : "O", - "rank" : 38100, - "wordGroups" : [ { - "wordGroup" : [ "register", "police", "indefinately" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7780ed3c-ab05-4a53-acce-316b5486d3ec", - "label" : "Parent's name if parental direction required", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "859b99d5-de74-4a84-b160-c914467af86d", - "label" : "Name of police station to report to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", - "label" : "Conviction / finding / insanity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3052", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9ea0d845-5096-44f6-9ce0-8ae801141eac", - "rollUpPrompts": false, - "publishedForNows": false, - "label" : "Collection order", - "shortCode" : "COLO", - "level" : "C", - "rank" : 38200, - "wordGroups" : [ { - "wordGroup" : [ "COLO" ] - }, { - "wordGroup" : [ "collection", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6b36e5ff-e116-4dc3-b438-8c02d493959e", - "label" : "Collection order type", - "welshLabel" : "Math o orchymyn casglu", - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "d7d75420-aace-11e8-98d0-529269fb1459", - "qual" : null, - "reference" : "collectionOrderType", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "369b6e22-4678-4b04-9fe9-5bb53bed5067", - "label" : "Reason for not making an attachment of earnings order or deduction from benefit application", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "reasonForNotMakingAnAttachment", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dc44f589-6dd2-4a8d-9164-c1796c6b0e36", - "label" : "Reason for making an attachment of earnings order", - "welshLabel" : "Rheswm dros wneud gorchymyn atafaelu enillion", - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "1fa26fa6-da67-48f7-9bb4-9b55d825854e", - "qual" : null, - "reference" : "reasonForMakingAnAttachment", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "16ade3fb-9f0f-4ce4-a6c8-fa96277e1519", - "label" : "Reason for making an application for deductions from benefit", - "welshLabel" : "Rheswm dros wneud cais i ddidynnu o fudd-dal", - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "1fa26fa6-da67-48f7-9bb4-9b55d825854e", - "qual" : null, - "reference" : "reasonForMakingAnApplication", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Gorchymyn Casglu", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "76b02133-4927-4f21-9f79-1ce361a17b0f", - "label" : "Confiscation order where Court decides the available amount - makes a statement of findings", - "shortCode" : "CONFAA", - "level" : "O", - "rank" : 38400, - "wordGroups" : [ { - "wordGroup" : [ "confiscation", "Order", "decide" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1700, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1700, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1700, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1700, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b613add5-2657-4a13-ad6f-cf01079f1f1a", - "label" : "The benefit is a result of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e9e6e941-db50-4eed-b388-f6dafe09f9d5", - "label" : "Value of the benefit", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "97ba9a67-9cf9-4357-bed9-1c38b9a037c0", - "label" : "Available amount that may be realised", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5a954d49-da57-4952-893c-82f57d2dbed8", - "label" : "The defendant's assets are those described in the schedule (form 5050A) and were a matter relevant to the Court's decision", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6275de58-7ba0-4141-b872-19e49707a0e2", - "label" : "Total value of assets presented in the schedule (form 5050A)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "CURR", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b2281817-6d7f-48f2-a27c-a61ba506a007", - "label" : "Total value of assets decided by the Court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "CURR", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "52b9ac44-e6d5-4494-a94c-16b23b5a890b", - "label" : "The statement of the prosecutor was a matter relevant to the Court's decision", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5d3e131-3031-4c92-ba48-a2d132767476", - "label" : "Matters in the defendant's response to the statement of the prosecutor were relevant to the Court's decision", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8fdf6804-ac49-42c4-9ffe-a1c35b76f8ca", - "label" : "Matters in the defendant's response to a court order requiring the defendant to give infomation specified in the order were relevant to the Court's decision", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "42d8c319-ddda-4af6-bc84-53450378b77f", - "label" : "Total value of assets presented to Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b2281817-6d7f-48f2-a27c-a61ba506a007", - "label" : "Total value of assets decided by the Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9e2ea5fd-b373-43e4-81ae-04f1b0b9ed2c", - "label" : "Amount ordered to pay", - "welshLabel" : "Swm a orchmynnwyd i’w dalu", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6ca8afa4-ec62-4ca1-a914-181418db8961", - "label" : "Description of amount to be paid", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cef4a3b2-b279-404c-a6ae-3552f2a9151d", - "label" : "Amount of confiscation sum to be paid as compensation", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "CURR", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "851e2be3-1436-47a4-824d-ca3168647f0c", - "label" : "Collecting Magistrates' Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", - "label" : "Confiscation unit to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 1600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5437f354-b075-4dd0-87cb-260c4fd8dd1f", - "label" : "Defendant's custody location", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "869beaee-71bd-4e33-8ea6-3e5554fcb6c8", - "label" : "Priority order directions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3056", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Confiscation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "733545c5-5612-40b8-bd81-df1a6a154182", - "label" : "Confiscation order where Court does not decide the available amount", - "shortCode" : "CONF", - "level" : "O", - "rank" : 38500, - "wordGroups" : [ { - "wordGroup" : [ "confiscation", "Order", "not", "decide" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a3bbf5d2-e553-4c42-809d-7906929cdf4d", - "label" : "Default prison term", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d1142456-f354-42ec-ba25-1556d99230c6", - "label" : "The benefit is a result of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "de6587cb-7892-48ef-bf6c-3b63471a0422", - "label" : "Value of the benefit", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "587ba904-51cc-4284-9883-6724acc55531", - "label" : "Available amount that may be realised", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7798fac0-1e5a-4e53-ae3f-e49d825ac560", - "label" : "Total value of assets presented to Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a7fc546f-ca75-4aed-98b4-4cdce26238ba", - "label" : "Total value of assets decided by the Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fdd30c91-11d4-4511-b1f8-dfd1b9fbcc5d", - "label" : "Amount ordered to pay", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b838babb-4b10-4534-ad6e-794da31d6976", - "label" : "Description of amount to be paid", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4ceb1e93-25ce-4f6e-aaf6-195083faadb6", - "label" : "Amount of confiscation sum to be paid as compensation", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "CURR", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "851e2be3-1436-47a4-824d-ca3168647f0c", - "label" : "Collecting Magistrates' Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", - "label" : "Confiscation unit to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5437f354-b075-4dd0-87cb-260c4fd8dd1f", - "label" : "Defendant's custody location", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c66d10aa-b197-49d8-87e5-28eb356fde1e", - "label" : "Priority order directions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3056", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Confiscation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "label" : "Community requirement: Exclusion not to enter for a period", - "shortCode" : "ERP", - "level" : "O", - "rank" : 4500, - "wordGroups" : [ { - "wordGroup" : [ "exclusion", "Requirement", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5bdaf75-2138-45a5-98c9-421d652a65d6", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6d322ff1-1d95-4053-ac79-19d1b7874f2d", - "label" : "End date of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "adbdbb76-8ff7-4a22-881f-6b95adbf915b", - "label" : "Electronic Monitoring End - notify contractor", - "shortCode" : "EMONE", - "level" : "O", - "rank" : 38600, - "wordGroups" : [ { - "wordGroup" : [ "EM", "end" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6bc0a7e8-ecd6-4607-896c-e8e8e88bd616", - "label" : "Electronic monitoring type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7946cf86-d0f6-4611-815f-fc4d6fc05e34", - "label" : "Date last electronic monitoring order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fef836f8-cae7-410f-b006-989d884a8d14", - "label" : "Name of court that imposed electronic monitoring", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "83aef1c6-1246-4894-b44b-6a76d1e4d99b", - "label" : "Name of prison defendant remanded or committed to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a0b426c1-74b8-43cd-9885-f0f31625352e", - "label" : "Payment terms - on release", - "shortCode" : "PTFOR", - "level" : "D", - "rank" : 38700, - "wordGroups" : [ { - "wordGroup" : [ "payment", "on", "release" ] - }, { - "wordGroup" : [ "payment", "full" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", - "label" : "Remanded in custody - to hospital", - "shortCode" : "RIH", - "level" : "O", - "rank" : 38800, - "wordGroups" : [ { - "wordGroup" : [ "remanded", "hospital", "custody" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label" : "Remand basis", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "qual" : null, - "reference" : "remandBasis", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ff8214-14b0-4425-94eb-64e6ae320f80", - "label" : "Specify hospital", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "specifyHospital", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "7b2e6219-ddcb-4afa-8615-8de978e60af1", - "label" : "Bail exception", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "10a769e8-1b1c-430d-844b-8948942cf353", - "qual" : null, - "reference" : "bailException", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", - "label" : "Bail exception reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "c0fb2ca5-7702-4f01-b344-33029cfdcd47", - "qual" : null, - "reference" : "bailExceptionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label" : "Place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "placeOfSafety", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4051", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "C", - "resultDefinitionGroup" : "Remand in custody", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9be66be8-58d2-430c-a0b7-7f759ab0e48a", - "label" : "Interim hospital order", - "shortCode" : "MHHI", - "level" : "O", - "rank" : 38900, - "wordGroups" : [ { - "wordGroup" : [ "hospital", "Order", "interim" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "701b27ad-c54a-4011-a605-8c438ff685c9", - "label" : "Name of hospital where defendant will be admitted or detained", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39001635-2dc8-4a58-9934-eeb60fa4d93b", - "label" : "Name of hospital unit", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", - "label" : "Hospital address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ab28a61-d96c-4403-a522-0e58d0e750bf", - "label" : "Place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "placeOfSafety", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5ff1e80f-8581-4ba2-a7e3-57de41448034", - "label" : "Conveyor/custodian", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96949d0c-a59c-4a6f-a563-97456c985987", - "label" : "Further directions regarding conveyance to place of safety", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "3132", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "C", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cf50fa81-671e-4598-b42b-721e45288240", - "label" : "Interim hospital order extended", - "shortCode" : "MHHIC", - "level" : "O", - "rank" : 39000, - "wordGroups" : [ { - "wordGroup" : [ "hospital", "Order", "extended" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "701b27ad-c54a-4011-a605-8c438ff685c9", - "label" : "Name of hospital where defendant will be admitted or detained", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39001635-2dc8-4a58-9934-eeb60fa4d93b", - "label" : "Name of hospital unit", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", - "label" : "Hospital address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "48648c9f-4553-4d01-8eaa-91af63353a26", - "label" : "Date on which original interim order was made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "3132", - "adjournment" : false, - "convicted" : false, - "qualifier" : "E", - "postHearingCustodyStatus" : "C", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b993d756-e5a8-4204-9d58-b344b79998e1", - "label" : "Notice of Custodial Sentence to Border and Immigration Agency regarding Deportation", - "shortCode" : "DEPN", - "level" : "O", - "rank" : 39100, - "wordGroups" : [ { - "wordGroup" : [ "deportation", "borders" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "099bd432-cf4e-4274-861d-4a665e2f4314", - "label" : "Deportation power", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "16bb9f17-d3c3-42f1-a4dc-2d953114a214", - "label" : "Nationality", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7610d8a1-07fe-4e69-812d-22f821d3f334", - "label" : "Forfeiture order (cash)", - "shortCode" : "FORFC", - "level" : "O", - "rank" : 39200, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "cash" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9bc76b55-37b4-42eb-b16d-52e83f86b8a2", - "label" : "Amount of cash forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "48d71903-ce47-432a-8706-3619355f7738", - "label" : "Currency of cash forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "98a562ee-7583-405a-ab05-3f922ada4872", - "label" : "Type of forfeiture", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "26d4c112-a7ae-11e8-98d0-529269fb1459", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3134", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6532b8f4-7794-420a-9f30-8aced3e41517", - "label" : "Forfeiture of personal licence to sell alcohol", - "shortCode" : "FLIC", - "level" : "O", - "rank" : 39300, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "licence", "Alcohol" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label" : "Order suspended pending appeal", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3136", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "661bdce3-ce01-4cb6-a152-6424540bbbce", - "label" : "Suspension of personal licence to sell alcohol", - "shortCode" : "SLIC", - "level" : "O", - "rank" : 39400, - "wordGroups" : [ { - "wordGroup" : [ "suspension", "licence", "Alcohol" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "60a23936-2446-4813-945c-7b42548f526b", - "label" : "Period of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "60a23936-2446-4813-945c-7b42548f526b", - "label" : "Period of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "60a23936-2446-4813-945c-7b42548f526b", - "label" : "Period of suspension", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "67cc7055-06f7-4393-a8df-b3fbabe9fce2", - "label" : "Order suspended pending appeal", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3119", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cebb3aa8-fed4-4784-b8bd-57901452344b", - "label" : "Order to give date of birth", - "shortCode" : "DOB", - "level" : "D", - "rank" : 39500, - "wordGroups" : [ { - "wordGroup" : [ "Order", "dob" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4b055468-4534-4ded-b866-2895afae3f49", - "label" : "Date the information must be returned by", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3503", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "label" : "Community requirement: Exclusion not to enter with between dates", - "shortCode" : "ERBD", - "level" : "O", - "rank" : 4600, - "wordGroups" : [ { - "wordGroup" : [ "exclusion", "Requirement", "dates" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ac46c9c8-976d-40ef-a913-85c64a6859bc", - "label" : "From date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9e41b95c-c776-4d95-b057-05b7fcb155aa", - "label" : "Until date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a0a0f576-5f6c-4924-ac60-f4d289f15938", - "label" : "Order to give statement of person's sex", - "shortCode" : "SPS", - "level" : "D", - "rank" : 39600, - "wordGroups" : [ { - "wordGroup" : [ "Order", "sex" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4b055468-4534-4ded-b866-2895afae3f49", - "label" : "Date the information must be returned by", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3503", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8fce92ff-22af-4d33-999f-e9c5b9b0f429", - "label" : "No further action taken in respect of conduct (contempt)", - "shortCode" : "NFAC", - "level" : "O", - "rank" : 39700, - "wordGroups" : [ { - "wordGroup" : [ "nfa", "contempt" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8c858e3e-1ade-4e90-869a-160c2bb5da90", - "label" : "Postponement of enquiry into contempt", - "shortCode" : "POSTC", - "level" : "O", - "rank" : 39800, - "wordGroups" : [ { - "wordGroup" : [ "postpone", "enquiry", "contempt" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "30d79db7-37fa-4c89-9129-926aa633d186", - "label" : "Contempt of court findings", - "shortCode" : "CONTF", - "level" : "O", - "rank" : 39900, - "wordGroups" : [ { - "wordGroup" : [ "contempt", "findings" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "66388542-24fa-475b-8af0-18183ac282e9", - "label" : "Findings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3169a020-99f3-4ff8-a76b-c3be37a60b71", - "label" : "Committed to prison for refusal to produce items", - "shortCode" : "P", - "level" : "O", - "rank" : 40000, - "wordGroups" : [ { - "wordGroup" : [ "commit", "prison", "refuse" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "18084ac5-1158-49f5-94b6-9ca619f2374b", - "label" : "Document or item to be produced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8a4d068d-ca0f-4056-848e-b55b343f1090", - "label" : "Witness summons withdrawn", - "shortCode" : "WSW", - "level" : "C", - "rank" : 40100, - "wordGroups" : [ { - "wordGroup" : [ "witness", "summons", "withdrawn" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", - "label" : "Witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "18084ac5-1158-49f5-94b6-9ca619f2374b", - "label" : "Document or item to be produced", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4eb18e66-67e9-43df-8ed6-4b02c486dcc2", - "label" : "No parental bind over made", - "shortCode" : "NPARBOR", - "level" : "D", - "rank" : 40200, - "wordGroups" : [ { - "wordGroup" : [ "no", "parental", "bind" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3657fa70-aec5-4009-99c0-9e5bcab7319f", - "label" : "Reason why court did not make the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d89d0e29-1cc8-4bac-8ff2-80c052398ca6", - "label" : "No parenting order made", - "shortCode" : "NPAROR", - "level" : "D", - "rank" : 40300, - "wordGroups" : [ { - "wordGroup" : [ "no", "parenting", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3657fa70-aec5-4009-99c0-9e5bcab7319f", - "label" : "Reason why court did not make the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1628d7d4-b9ec-4680-88dd-0483ee20ed48", - "label" : "No reparation order made", - "shortCode" : "NREPOR", - "level" : "D", - "rank" : 40400, - "wordGroups" : [ { - "wordGroup" : [ "no", "reparation", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3657fa70-aec5-4009-99c0-9e5bcab7319f", - "label" : "Reason why court did not make the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "66a52d4d-7ec6-430d-a2fe-5963fe9ba095", - "label" : "Detention and training order", - "shortCode" : "DTO", - "level" : "O", - "rank" : 40500, - "wordGroups" : [ { - "wordGroup" : [ "detention", "training", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", - "label" : "Period of detention and training", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", - "label" : "Period of detention and training", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49f8c150-93ea-48e7-ae86-f1a467c72a3a", - "label" : "DTO reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7f1c407a-8d1b-40ce-9720-66467e723d5c", - "label" : "Why the reason for DTO applies", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1003078-ca9c-43ba-a131-8fa755c3a9f4", - "label" : "Defendant is a persistent offender", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "81ed0c6f-7a58-4d4c-b8a0-6425de4f1d29", - "label" : "Detention centre", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1081", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "091cd45b-4312-476e-a122-18cc02fd1699", - "label" : "Community requirement: Exclusion not to enter for a period with electronic monitoring", - "shortCode" : "ERPEM", - "level" : "O", - "rank" : 4700, - "wordGroups" : [ { - "wordGroup" : [ "exclusion", "electronic monitoring", "Period", "first" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", - "label" : "Start date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f02e3b28-83e7-4650-a8e1-810bbb464bb4", - "label" : "Start time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", - "label" : "End date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "487358be-eccc-46e4-aa8e-e41495638a2c", - "label" : "End time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f9d43a8f-dd19-4c0f-9fad-a3d339fd09b4", - "label" : "Total detention and training order", - "shortCode" : "TDTO", - "level" : "D", - "rank" : 40600, - "wordGroups" : [ { - "wordGroup" : [ "Total", "detention", "training" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0a1207ad-d35d-478f-a77d-c0277c463507", - "label" : "Total detention and training order period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6ab74bbd-3b3b-4658-a6f7-b2be94bd3baa", - "label" : "Reparation order", - "shortCode" : "REPO", - "level" : "O", - "rank" : 40700, - "wordGroups" : [ { - "wordGroup" : [ "reparation", "Order" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8a044676-c316-4d4c-81bf-b52af663be85", - "label" : "Number of reparation hours", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30d0efcf-41df-48e8-891d-ebec2d0ef8fc", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8636315-3ef2-4b2e-ae42-92c249c19a49", - "label" : "Local authority", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "57227a07-3b72-4f96-907c-fe13b5d7847f", - "label" : "Order details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47f34fca-6355-4612-881a-07a2121b86ba", - "label" : "Supervising court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1083", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4feb6756-ffe5-4c38-8c90-e3c94f81b359", - "label" : "Certificate that the case is fit for appeal to the Court of Appeal Criminal Division", - "shortCode" : "CERTA", - "level" : "O", - "rank" : 40800, - "wordGroups" : [ { - "wordGroup" : [ "case", "fit", "appeal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "fae932b8-99cd-45d5-856e-14226aaa67a1", - "label" : "Certificate granted Criminal Appeal Act 1968", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4067c886-1d7f-4079-874e-d798c11a8429", - "label" : "Conviction / sentence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e5a86c23-5e4f-49e7-8ab0-1827bb77a253", - "label" : "Bail granted unconditionally pending appeal to the Court of Appeal Criminal Division", - "shortCode" : "UCBCA", - "level" : "O", - "rank" : 40900, - "wordGroups" : [ { - "wordGroup" : [ "unconditional", "bail", "appeal" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "4047", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9b816cc1-7836-44b2-a706-b09ab110f790", - "label" : "Bail granted conditionally pending appeal to the Court of Appeal Criminal Division", - "shortCode" : "CBBCA", - "level" : "O", - "rank" : 41000, - "wordGroups" : [ { - "wordGroup" : [ "conditional", "bail", "appeal" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f7995d94-bf13-41df-a599-79ead4123aad", - "label" : "BASS provider", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "4027", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "75fc296e-d16a-44ec-a04c-c0affb549952", - "label" : "Bind over surety", - "shortCode" : "BOS", - "level" : "O", - "rank" : 41100, - "wordGroups" : [ { - "wordGroup" : [ "bind", "surety" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "30916e4c-8224-4a1f-a542-6f1bf1d47a46", - "label" : "Duration of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc717d96-41ce-43bd-b0ac-33830c52eea6", - "label" : "Surety name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e449e677-80fd-4037-8e84-34e40bba95cd", - "label" : "Surety address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "69a4e7f0-866f-4c31-846a-dd909666ef85", - "label" : "Amount of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "440ad312-35f7-42c5-bbae-899a60457abb", - "label" : "Defendant or respondent", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1a235ff2-a76f-414c-be31-58db18360810", - "label" : "Basis of bind over", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "33bdd72c-430b-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a8ca6ddf-6dbd-4cc8-9699-7902297157df", - "label" : "Conduct or activity to be refrained from", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "516dbb2c-d9e1-4186-b458-e3b6f798db58", - "label" : "To keep the peace especially towards - name of person", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9b35f4f5-531e-48b4-858d-d81e15e77c23", - "label" : "Warrant of arrest without bail on sentence of imprisonment in absence", - "shortCode" : "WABSN", - "level" : "O", - "rank" : 41200, - "wordGroups" : [ { - "wordGroup" : [ "warrant", "arrest", "without", "bail", "imprisonment" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "29970ab4-99a6-48dd-bc7a-bfa68edef13e", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", - "label" : "Process server name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e498ec52-0adf-41cf-89e2-40955a418393", - "label" : "Courthouse name", - "welshLabel" : "Enw’r adeilad llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label" : "Courtroom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "4576", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Warrants of arrest", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2360acdb-4667-4f64-ab40-c2383271ea18", - "label" : "Surety", - "shortCode" : "suret", - "level" : "C", - "rank" : 41300, - "wordGroups" : [ { - "wordGroup" : [ "suret" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b20eb2e5-a012-4805-9713-8868579a8ec2", - "label" : "Surety's name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9f4821b8-a160-40a0-b01e-0b0ba4f4c39e", - "label" : "Surety's address", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "921cd8cc-0af1-46a7-8bfe-403a3e831a85", - "label" : "Amount of recognisance", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e498ec52-0adf-41cf-89e2-40955a418393", - "label" : "Courthouse name", - "welshLabel" : "Enw’r adeilad llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "19d80e10-7792-4988-bfed-3bb09cd287b5", - "label" : "Date of next court hearing", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8f8965c6-fe32-445c-9752-65b36d6f7e08", - "label" : "Time of next court hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f6125c7b-0f0d-4cae-a98f-54b1e230c485", - "label" : "This applies at each time and place until the conclusion of the case", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3e43af75-59bd-457e-a22a-1f61215a42df", - "label" : "Surety declared forfeit (to pay)", - "shortCode" : "SFOP", - "level" : "O", - "rank" : 41400, - "wordGroups" : [ { - "wordGroup" : [ "surety", "forfeit" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e88fae27-272b-4ab0-b10f-af26d5951c19", - "label" : "Date recognizance forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1289c3f-b81b-4abb-93cc-546b340312b0", - "label" : "Amount to pay", - "welshLabel" : "Swm i’w dalu", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3016", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "673d90bc-e8d7-40fd-8ad1-39517526452d", - "label" : "Principal declared forfeit (to pay)", - "shortCode" : "PFOP", - "level" : "O", - "rank" : 41500, - "wordGroups" : [ { - "wordGroup" : [ "principal", "forfeit" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e88fae27-272b-4ab0-b10f-af26d5951c19", - "label" : "Date recognizance forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1289c3f-b81b-4abb-93cc-546b340312b0", - "label" : "Amount to pay", - "welshLabel" : "Swm i’w dalu", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3016", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "label" : "Community requirement: Exclusion not to leave a place for a period with electronic monitoring", - "shortCode" : "ERLPEM", - "level" : "O", - "rank" : 4800, - "wordGroups" : [ { - "wordGroup" : [ "exclusion", "electronic monitoring", "residence", "Period", "first" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a597f480-868c-4552-a1b3-70b9906dde09", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", - "label" : "Start date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f02e3b28-83e7-4650-a8e1-810bbb464bb4", - "label" : "Start time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", - "label" : "End date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "487358be-eccc-46e4-aa8e-e41495638a2c", - "label" : "End time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", - "version": "2021-11-04T13:58:39.210Z", - "startDate": "2021-11-05", - "label": "Community order England / Wales", - "shortCode": "co", + "id": "29e02fa1-42ce-4eec-914e-e62508397a16", + "label": "No compensation reason", + "shortCode": "NCR", "level": "O", - "rank": 27300, + "rank": 11400, "wordGroups": [ { "wordGroup": [ - "co", - "Community" + "compensation", + "no" ] } ], + "userGroups": [], "prompts": [ { - "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", - "label": "Judge reserves breach proceedings", - "welshLabel": "Barnwr yn neilltuo achos torri amodau", - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 500, - "financial": "N", - "reference": "judgeReservesBreachProceedings", - "wordGroup": [ - "reserved" - ], + "id": "e263de82-47ca-433a-bb41-cad2e1c5bb72", + "label": "Reason for no compensation", + "welshLabel": "Rheswm dros beidio â rhoi iawndal", + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 100, + "duration": null, + "wordGroup": null, "userGroups": [ - + "Court Clerks", + "Legal Advisers" ], + "fixedListId": "5f29ba24-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": "reasonForNoCompensation", "courtExtract": "Y", - "jurisdiction": "C", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, + "durationSequence": null + } + ], + "welshLabel": "Rheswm dros beidio â dyfarnu iawndal", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "baf94928-04ae-4609-8e96-efc9f081b2be", + "label": "No order for costs", + "shortCode": "NCOSTS", + "level": "O", + "rank": 11500, + "wordGroups": [ { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", + "wordGroup": [ + "no", + "Costs" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "be2a46db-709d-4e0d-9b63-aeb831564c1d", + "label": "Reason for no costs", + "welshLabel": "", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedOrganisationName", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, "userGroups": [ - + "Court Clerks", + "Legal Advisers" ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "OrganisationName", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null + "fixedListId": null, + "qual": null, + "reference": "reasonForNoCosts", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "52770cf4-41a8-4c04-a41c-2b12a95cb8dd", + "label": "Defendant has died", + "shortCode": "dead", + "level": "O", + "rank": 11600, + "wordGroups": [ + { + "wordGroup": [ + "dead" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2065", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8f9539a0-bd05-4002-9146-d55920cbab9e", + "label": "Defendant committed suicide", + "shortCode": "deads", + "level": "O", + "rank": 11700, + "wordGroups": [ + { + "wordGroup": [ + "deads" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2503", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4632d712-6cf7-4929-af0d-9bf4a4436ee3", + "label": "The Court did not proceed with the trial in the defendant's absence", + "shortCode": "NOTRIAL", + "level": "O", + "rank": 11800, + "wordGroups": [ + { + "wordGroup": [ + "trial", + "adjourned" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "reason", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "88fd00c6-d63c-4f4e-9a86-4628856a9557", + "label": "No evidence offered - verdict of not guilty by order of Judge", + "shortCode": "NGJ", + "level": "O", + "rank": 11900, + "wordGroups": [ + { + "wordGroup": [ + "judge", + "not", + "guilty" + ] + }, + { + "wordGroup": [ + "prosecution", + "no", + "evidence" + ] + }, + { + "wordGroup": [ + "prosecution", + "neo" + ] + }, + { + "wordGroup": [ + "no", + "evidence" + ] + }, + { + "wordGroup": [ + "not", + "guilty" + ] + }, + { + "wordGroup": [ + "NGJ" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2050", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "14d66587-8fbe-424f-a369-b1144f1684e3", + "label": "Dismissed", + "shortCode": "DISM", + "level": "O", + "rank": 12000, + "wordGroups": [ + { + "wordGroup": [ + "DISM" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2006", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "56e808c5-cd8f-4882-b8e2-c2f615e09c11", + "label": "Criminal behaviour order", + "shortCode": "CRIMBO", + "level": "O", + "rank": 12100, + "wordGroups": [ + { + "wordGroup": [ + "criminal", + "behaviour", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6c3f5d58-d206-46ca-a652-23ee198b371a", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c3f5d58-d206-46ca-a652-23ee198b371a", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c3f5d58-d206-46ca-a652-23ee198b371a", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label": "Start date of order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4461f7f5-f984-4b6d-9f60-3084e5071382", + "label": "Requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label": "Supervisor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label": "Supervisor's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1177", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c2fa19f6-dabf-43fc-9f12-2347fc9b8cc5", + "label": "Interim criminal behaviour order", + "shortCode": "CRIMBI", + "level": "O", + "rank": 12200, + "wordGroups": [ + { + "wordGroup": [ + "interim", + "criminal", + "behaviour", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4461f7f5-f984-4b6d-9f60-3084e5071382", + "label": "Requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label": "Supervisor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label": "Supervisor's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1178", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3cf4b38f-004d-4eb4-8fdb-5d285c11ab47", + "label": "Criminal behaviour order variation", + "shortCode": "CRIMBV", + "level": "O", + "rank": 12300, + "wordGroups": [ + { + "wordGroup": [ + "criminal", + "behaviour", + "Order", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "84f70920-235c-4747-a0d5-545a2f761b37", + "label": "Name of person on criminal behaviour order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3e9e09fd-f512-4cd1-95ad-f4ddd06a0d41", + "label": "Date original criminal behaviour order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d2b6a2eb-53e5-440b-991d-65ee4ef806a0", + "label": "Requirements (added, varied or removed)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label": "Supervisor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label": "Supervisor's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd92da3a-193a-4b87-98ae-b8622f4148ce", + "label": "Prohibitions (added, varied or removed)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d2ed5c6c-2ebc-421b-834b-6f66ecb90e4e", + "label": "Is the person on the original order a youth?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b509d44-fb0e-463f-8b7f-675cb6903265", + "label": "Parent's name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", + "label": "Parent's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1177", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "23d744a1-d71c-4849-b6a3-b736d71ea438", + "label": "No video link reason", + "shortCode": "NOVID", + "level": "O", + "rank": 12400, + "wordGroups": [ + { + "wordGroup": [ + "no", + "video", + "link" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "318c9eb2-cf3c-4592-a353-1b2166c15f81", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7959646e-ce77-4862-b6fe-5fb3a953c427", + "label": "Order discharged", + "shortCode": "ODIS", + "level": "O", + "rank": 12500, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "discharged" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "27c32341-8aed-4ccc-8894-7adb6f5eaf55", + "label": "Type of order discharged", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "44554ccd-9975-4e36-b06d-8f58aebe788c", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47f34fca-6355-4612-881a-07a2121b86ba", + "label": "Supervising court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "204fc6b8-d6c9-4fb8-acd0-47d23c087625", + "label": "No surcharge", + "shortCode": "NOVS", + "level": "D", + "rank": 13100, + "wordGroups": [ + { + "wordGroup": [ + "no", + "surcharge" + ] + }, + { + "wordGroup": [ + "no", + "vs" + ] + }, + { + "wordGroup": [ + "no", + "victim", + "surcharge" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "042742a1-8d47-4558-9b3e-9f34b358e034", + "label": "Reason for no surcharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9fdeff80-84c8-4dc0-8fcf-f8805d8e57ee", + "label": "Surcharge reduced", + "shortCode": "VSR", + "level": "D", + "rank": 13200, + "wordGroups": [ + { + "wordGroup": [ + "vs", + "reduced" + ] + }, + { + "wordGroup": [ + "surcharge", + "reduced" + ] + }, + { + "wordGroup": [ + "victim", + "surcharge", + "reduced" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "910d207e-29ac-4891-b0f8-4d0ade9ac224", + "label": "Reason for reducing surcharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c3179e14-8754-4496-9190-3a9e47da0af7", + "label": "Football banning order", + "shortCode": "FBO", + "level": "O", + "rank": 13300, + "wordGroups": [ + { + "wordGroup": [ + "FBO" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", + "label": "Police station name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "192c8ce6-57dd-463a-b588-bb7189f4c4c1", + "label": "Police station address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "243f72af-801e-409e-b807-8878719d832a", + "label": "Report within 5 days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", + "label": "Reasons for making the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "164d3778-bb74-4bdb-b006-8df4cd05a905", + "label": "Additional requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", + "label": "Prison address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3068", + "adjournment": false, + "convicted": true, + "qualifier": "FA", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "adf86eb7-2eb7-4575-bab5-63001eb23382", + "label": "Football banning order terminated", + "shortCode": "FBOT", + "level": "O", + "rank": 13400, + "wordGroups": [ + { + "wordGroup": [ + "FBO", + "terminated" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", + "label": "End date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", + "label": "Prison address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "73265700-cb68-4a88-86a8-53fcc6f5d6ba", + "label": "Football banning order varied", + "shortCode": "FBOV", + "level": "O", + "rank": 13500, + "wordGroups": [ + { + "wordGroup": [ + "FBO", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f4ffbd41-eea5-4465-b910-b1eaf033d30e", + "label": "Details of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "297a984c-71fa-436e-b9bd-068255e6d530", + "label": "Original court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "a12f9e9a-3c9d-41b9-aca6-21d7fce038d7", + "label": "Prison address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fefede3e-436b-4cd6-a967-7c63d1cb4bce", + "label": "Football banning order termination refused", + "shortCode": "FBOTR", + "level": "O", + "rank": 13600, + "wordGroups": [ + { + "wordGroup": [ + "fbo. terminated", + "refused" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d14c2611-0b4c-478c-a1ec-53bf44bcaa1f", + "label": "Football banning order arising from offence outside England and Wales", + "shortCode": "FBOI", + "level": "O", + "rank": 13700, + "wordGroups": [ + { + "wordGroup": [ + "FBO", + "England" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b5e737ea-1dda-41a2-9c30-3db8044ab9cc", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b5f4c5a3-89e1-4531-8479-1d45ac9269fe", + "label": "Police station name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "192c8ce6-57dd-463a-b588-bb7189f4c4c1", + "label": "Police station address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "243f72af-801e-409e-b807-8878719d832a", + "label": "Report within 5 days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6dbe4f7e-d8f8-4881-bee5-59d2bce460f7", + "label": "Reasons for making the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "164d3778-bb74-4bdb-b006-8df4cd05a905", + "label": "Additional requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3068", + "adjournment": false, + "convicted": false, + "qualifier": "FB", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5e272729-a76b-485c-8784-bddef53f700e", + "label": "No football banning order", + "shortCode": "NFBO", + "level": "O", + "rank": 13800, + "wordGroups": [ + { + "wordGroup": [ + "no", + "FBO" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "46afed44-cb35-43bb-9f7e-78c4d9be298f", + "label": "Reasons for not making a football banning order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c4705a6b-7914-4fc8-bf1e-3553ff1cccf5", + "label": "Declaration of relevance relating to football matches", + "shortCode": "DRF", + "level": "O", + "rank": 13900, + "wordGroups": [ + { + "wordGroup": [ + "declaration", + "football", + "match" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e44817e6-cc08-464f-8c21-1f3ba0af562d", + "label": "Type of football match", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "5ba4aaa6-04d9-4495-bcad-6d1006209ea6", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3099", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e2f51977-ea53-4ac8-8951-75975da06bc5", + "label": "Bind over to keep the peace", + "shortCode": "BOCOND", + "level": "O", + "rank": 14000, + "wordGroups": [ + { + "wordGroup": [ + "bind", + "over" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label": "Amount of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a8ca6ddf-6dbd-4cc8-9699-7902297157df", + "label": "Conduct or activity to be refrained from", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "516dbb2c-d9e1-4186-b458-e3b6f798db58", + "label": "To keep the peace especially towards - name of person", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1016", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "label": "Community requirement: Drug rehabilitation non-residential", + "shortCode": "DRWR", + "level": "O", + "rank": 2100, + "wordGroups": [ + { + "wordGroup": [ + "Drug", + "Rehabilitation", + "Non-residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "underDirectionOf", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10028ef8-efc7-4a40-9703-1e121a6fbc84", + "label": "Period to provide samples", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodToProvideSamples", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0b74fb53-acb7-42db-b9b6-976ce74b59b5", + "label": "Treatment place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "treatmentPlace", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6aaf3645-0806-4917-ada5-b019c6a606c5", + "label": "Treatment intervals", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3109", + "adjournment": false, + "convicted": true, + "qualifier": "BS", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "76c0d994-decd-4a2a-93ca-958f4595181e", + "label": "Bind over to come up for judgment when called on", + "shortCode": "BOJ", + "level": "O", + "rank": 14100, + "wordGroups": [ + { + "wordGroup": [ + "bind", + "over", + "judgement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label": "Amount of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "407bf65d-8be7-4996-b7e7-91d0ae7dfa75", + "label": "Conditions of bind over to be complied with", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1016", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2c2bc8f2-4dd5-4670-b391-bdaca5b3e4f0", + "label": "Bind over witness to keep the peace", + "shortCode": "BOW", + "level": "O", + "rank": 14200, + "wordGroups": [ + { + "wordGroup": [ + "bind", + "over", + "witness", + "peace" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", + "label": "Witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e23c9dab-1dc4-4522-86db-2bcd29121134", + "label": "Witness address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label": "Amount of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a8ca6ddf-6dbd-4cc8-9699-7902297157df", + "label": "Conduct or activity to be refrained from", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "516dbb2c-d9e1-4186-b458-e3b6f798db58", + "label": "To keep the peace especially towards - name of person", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1016", + "adjournment": false, + "convicted": false, + "qualifier": "W", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "92a97bb2-adfe-42bd-a705-6f538b3145f9", + "label": "Sexual harm prevention order for period", + "shortCode": "shopp", + "level": "O", + "rank": 14300, + "wordGroups": [ + { + "wordGroup": [ + "shopp" + ] + }, + { + "wordGroup": [ + "sexual", + "harm", + "prevention", + "Order", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4aee5e0c-959b-4ed9-b589-71c1fe28134d", + "label": "Type of order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1179", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7fd3992e-c1dd-4fd1-abbc-a816f1250bae", + "label": "Sexual harm prevention order until further order", + "shortCode": "SHOPF", + "level": "O", + "rank": 14400, + "wordGroups": [ + { + "wordGroup": [ + "sexual", + "harm", + "prevention", + "Order", + "Further" + ] + }, + { + "wordGroup": [ + "shopo", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4aee5e0c-959b-4ed9-b589-71c1fe28134d", + "label": "Type of order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1179", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2b418a7d-a48d-4c75-a912-8112f1010ab9", + "label": "Sexual harm prevention order until end date", + "shortCode": "SHOPE", + "level": "O", + "rank": 14500, + "wordGroups": [ + { + "wordGroup": [ + "shopo", + "until" + ] + }, + { + "wordGroup": [ + "sexual", + "harm", + "prevention", + "Order", + "until" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4aee5e0c-959b-4ed9-b589-71c1fe28134d", + "label": "Type of order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "fb085e8e-8392-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "eea72b76-275c-4eef-9021-a99c59d088cc", + "label": "End date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "Date", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1179", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "69cf9e2e-f117-4311-952d-e286af84c3be", + "label": "Sexual harm prevention order varied", + "shortCode": "SHOPV", + "level": "O", + "rank": 14600, + "wordGroups": [ + { + "wordGroup": [ + "shopo", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "671e3bd7-0c84-461c-aada-7c73d6fad03b", + "label": "Type of sexual harm prevention order varied", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label": "Date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "Date", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94514093-d8de-4400-93de-9e3366f5af8c", + "label": "Name of defendant on original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label": "Name of court that made the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2def6a67-bdb7-4596-8544-53ebb5811880", + "label": "Variation of prohibitions (other than foreign)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f0b5c085-202d-4b96-9409-959f950c6bf3", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label": "Start date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03501a9a-2668-4587-acc1-b8e880f7c3f4", + "label": "Parent's name (deft is a youth)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8ae877b4-acc6-4dca-8e1d-0611fdb5e294", + "label": "Parent's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dc954e27-f35a-46e2-98a2-9e0ca1fbabb4", + "label": "Total suspended detention", + "shortCode": "STDET", + "level": "D", + "rank": 14700, + "wordGroups": [ + { + "wordGroup": [ + "Total", + "SSO", + "detention" + ] + }, + { + "wordGroup": [ + "STDET" + ] + }, + { + "wordGroup": [ + "Total", + "suspended", + "detention" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "699055ee-d41c-4311-91bd-b8ca38aaca84", + "label": "Suspended period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 2 + }, + { + "id": "699055ee-d41c-4311-91bd-b8ca38aaca84", + "label": "Suspended period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 2 + }, + { + "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label": "Supervision period", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label": "Supervision period", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label": "Supervision period", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "876f9c5c-1ec5-4232-ae1d-fce8aaa7a97a", + "label": "Supervision period", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06a61bd3-ca3e-4871-b83e-000dfb6289e5", + "label": "Judge reserves review hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": [ + "Review" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1300, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc01db7c-d110-4d3c-9efa-d05a72742ddb", + "label": "Review frequency", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", + "label": "First review date", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", + "label": "Time of hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dab2947a-9b21-450e-8fd1-d82ea3e0f42f", + "label": "Courthouse", + "welshLabel": "Adeilad llys", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "335094b9-94ab-44de-b43e-8fcbc7600008", + "label": "Courthouse", + "welshLabel": "Adeilad llys", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d6ac217f-6864-416e-89cf-3f31e1885cfc", + "label": "Courtroom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ccb76b76-b883-41c3-bd5c-7723531a8909", + "label": "Defendant to attend review", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6d72674d-1ca6-490a-a1c4-0a6404169f66", + "label": "Disqualification from involvement as a director etc of a company", + "shortCode": "DCO", + "level": "O", + "rank": 14800, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "director" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label": "Duration of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label": "Duration of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e7e298e3-4182-4e0a-b7d4-75f223a36549", + "label": "Specify Section of Company Directors Disqualification Act 1986", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "350608f2-3deb-4c23-9643-1c7ad33a09f7", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "89cea994-e319-4a90-8899-8a4fd03e3afa", + "label": "Disqualification start date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "21aadaea-89ef-424c-8606-b5d74811aeaf", + "label": "Section 243 exemption applies", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0491c27e-7fdb-4e93-9358-620332372f25", + "label": "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3002", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5fed2cbd-0d51-4848-8f9b-f0e574e9b0e7", + "label": "Disqualification against a body corporate / firm", + "shortCode": "DCOB", + "level": "O", + "rank": 14900, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "firm" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label": "Duration of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7e722068-37c0-4d15-b630-7e2b23fcea91", + "label": "Duration of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e7e298e3-4182-4e0a-b7d4-75f223a36549", + "label": "Specify Section of Company Directors Disqualification Act 1986", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "350608f2-3deb-4c23-9643-1c7ad33a09f7", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "89cea994-e319-4a90-8899-8a4fd03e3afa", + "label": "Disqualification start date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "543324ec-da1d-456b-8d9f-32300f8fe371", + "label": "Company registration number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "64a61a50-ba04-46f8-b624-09494db4bb5a", + "label": "Country of registration", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0491c27e-7fdb-4e93-9358-620332372f25", + "label": "Name of company(ies) / LLP(s) in respect of conduct leading to disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bcf1b451-af1e-4603-9605-586310d0e61e", + "label": "Community requirement: Drug rehabilitation residential", + "shortCode": "DRRWR", + "level": "O", + "rank": 2200, + "wordGroups": [ + { + "wordGroup": [ + "Drug", + "Rehabilitation", + "Residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "10028ef8-efc7-4a40-9703-1e121a6fbc84", + "label": "Period to provide samples", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10028ef8-efc7-4a40-9703-1e121a6fbc84", + "label": "Period to provide samples", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0b74fb53-acb7-42db-b9b6-976ce74b59b5", + "label": "Treatment place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3109", + "adjournment": false, + "convicted": true, + "qualifier": "BM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ccfc452e-ebe4-4cd7-b8a0-4f90768447b4", + "label": "Discretionary with ordinary disqualification", + "shortCode": "DDD", + "level": "O", + "rank": 15000, + "wordGroups": [ + { + "wordGroup": [ + "DDD" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03fe43ad-1857-4ba1-8481-6c660744b617", + "label": "Starting from date (date of interim disqualification)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3071", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "a67b959b-b2e6-4741-b758-d7ef27f973a7", + "label": "Discretionary with ordinary disqualification for life", + "shortCode": "DDDL", + "level": "O", + "rank": 15100, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "03fe43ad-1857-4ba1-8481-6c660744b617", + "label": "Starting from date (date of interim disqualification)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3071", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "8c81d29b-5621-4f2c-9e05-297241822ba6", + "label": "Obligatory but reduced disqualification for special reasons", + "shortCode": "DDDR", + "level": "O", + "rank": 15200, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "special", + "reasons" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03fe43ad-1857-4ba1-8481-6c660744b617", + "label": "Starting from date (date of interim disqualification)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dcaf502b-44d2-4be0-acfc-2f7d29142da6", + "label": "Special reasons", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3070", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "20a7e0f4-abc5-4beb-8af0-a327de1d6e7e", + "label": "Discretionary with disqualification until ordinary test passed", + "shortCode": "DDDT", + "level": "O", + "rank": 15300, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "test", + "until" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03fe43ad-1857-4ba1-8481-6c660744b617", + "label": "Starting from date (date of interim disqualification)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3071", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "cf8a3c59-63f5-4757-8783-88f1e31aa653", + "label": "Discretionary disqualification until test passed only", + "shortCode": "DDDTO", + "level": "O", + "rank": 15400, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "test", + "until", + "only" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3073", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "c2c346d1-dc13-48c8-b557-ef3dabcb1b9b", + "label": "Obligatory disqualification until extended test passed", + "shortCode": "DDOTE", + "level": "O", + "rank": 15500, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "until", + "extended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03fe43ad-1857-4ba1-8481-6c660744b617", + "label": "Starting from date (date of interim disqualification)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3070", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "73fe22ca-76bd-4aba-bdea-6dfef8ee03a2", + "label": "Points disqualification", + "shortCode": "DDP", + "level": "O", + "rank": 15600, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "points" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label": "Notional penalty points", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3072", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "651cbf5b-b7f0-4921-ba01-e18ad2ac763b", + "label": "Points disqualification for life", + "shortCode": "DDPL", + "level": "O", + "rank": 15700, + "wordGroups": [ + { + "wordGroup": [ + "disqualificatiom", + "ponts", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label": "Notional penalty points", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3072", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "7b0933f8-405e-434a-9bfe-871f794260cb", + "label": "Points but reduced disqualification for mitigating circumstance", + "shortCode": "DDPR", + "level": "O", + "rank": 15800, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "points", + "mitigating" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label": "Notional penalty points", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a541edb8-fead-4a88-8665-79b5a59c183c", + "label": "Mitigating circumstances", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "mitigatingCircumStances", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3072", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "097dfa33-6c62-4ed1-af46-6c6786b66d65", + "label": "Points with disqualification until extended test passed", + "shortCode": "DDPTE", + "level": "O", + "rank": 15900, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "points", + "extended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "462d5ba8-7a1c-44a0-a732-6c75601bd6af", + "label": "Notional penalty points", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3072", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "a5aa694e-4729-40f5-814e-60a75d9429e0", + "label": "Community requirement: Programme", + "shortCode": "PR", + "level": "O", + "rank": 2300, + "wordGroups": [ + { + "wordGroup": [ + "PR" + ] + }, + { + "wordGroup": [ + "Programme", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "60e386e4-51df-4c91-81f7-9a25751de426", + "label": "Number of days", + "welshLabel": "Nifer o ddyddiau", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3103", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "90ef1e35-b19a-4ad9-a4e1-e511e9d1d00e", + "label": "Driving Disq - Reduction for course (discretionary)", + "shortCode": "DDRCD", + "level": "O", + "rank": 16000, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "course", + "dicretionary" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7326f05d-54b3-450e-92dd-a5bc0710f8f7", + "label": "Name of course", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "286cc674-a4f8-408e-aa6d-8dbc175ab968", + "label": "Date by which course must be completed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label": "Defendant's mobile number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e2ae845f-12f4-498e-bddf-a90c8cb499ba", + "label": "Defendant's home telephone number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label": "Special needs", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3071", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "990e8cad-c8e0-4ad9-ba86-13180338986d", + "label": "Driving Disq - Reduction for course (obligatory)", + "shortCode": "DDRCO", + "level": "O", + "rank": 16100, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "course", + "obligatory" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7326f05d-54b3-450e-92dd-a5bc0710f8f7", + "label": "Name of course", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "286cc674-a4f8-408e-aa6d-8dbc175ab968", + "label": "Date by which course must be completed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label": "Defendant's mobile number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e2ae845f-12f4-498e-bddf-a90c8cb499ba", + "label": "Defendant's home telephone number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label": "Special needs", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3070", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "7ee02b35-88ca-4acc-ab8b-70f3e95a32d0", + "label": "Obligatory Disqualification until extended test passed - reduction for course", + "shortCode": "DDRCOT", + "level": "O", + "rank": 16200, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "course", + "obligatory", + "extended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b36c6fc-eb8e-4651-b88b-944843741c7c", + "label": "Disqualification reduction period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7326f05d-54b3-450e-92dd-a5bc0710f8f7", + "label": "Name of course", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "286cc674-a4f8-408e-aa6d-8dbc175ab968", + "label": "Date by which course must be completed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label": "Defendant's mobile number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e2ae845f-12f4-498e-bddf-a90c8cb499ba", + "label": "Defendant's home telephone number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label": "Special needs", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3070", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "4414bffb-c62e-442c-841a-2ebed0e688b6", + "label": "Interim disqualification", + "shortCode": "DDRI", + "level": "O", + "rank": 16300, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "inerim" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3096", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "3ae7caf1-d5ff-4534-9fbb-17a3a04cb9ab", + "label": "Disqualification for non-endorsable offence", + "shortCode": "DDRN", + "level": "O", + "rank": 16400, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "non-endorsable" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3094", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "3fa139cc-efe0-422b-93d6-190a5be50953", + "label": "Driving record endorsed with additional points (points on more than one offence)", + "shortCode": "LEA", + "level": "O", + "rank": 16500, + "wordGroups": [ + { + "wordGroup": [ + "endorsed", + "Additional", + "points" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a8719de4-7783-448a-b792-e3f94e670ad0", + "label": "Penalty points for this offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PENPT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bbbb47bb-3418-463c-bfc3-43c6f72bb7c9", + "label": "Reasons for imposing penalty points on more than one offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3008", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "b0aeb4fc-df63-4e2f-af88-97e3f23e847f", + "label": "Driving record endorsed (no points)", + "shortCode": "LEN", + "level": "O", + "rank": 16600, + "wordGroups": [ + { + "wordGroup": [ + "endorsed", + "no", + "points" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3008", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "cee54856-4450-4f28-a8a9-72b688726201", + "label": "Driving record endorsed with penalty points", + "shortCode": "LEP", + "level": "O", + "rank": 16700, + "wordGroups": [ + { + "wordGroup": [ + "endorsed", + "points" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a8719de4-7783-448a-b792-e3f94e670ad0", + "label": "Penalty points for this offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PENPT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3008", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "af322d0a-ba2a-47f1-8d46-7b3ea423d689", + "rollUpPrompts": true, + "publishedForNows": true, + "label": "No disqualification - Mitigating Circumstances", + "shortCode": "NDMC", + "level": "C", + "rank": 16800, + "wordGroups": [ + { + "wordGroup": [ + "no", + "disqualification", + "mitigating" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a541edb8-fead-4a88-8665-79b5a59c183c", + "label": "Mitigating circumstances", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "mitigatingCircumStances", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3509", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "808313d1-f450-4410-b2f1-97409d7b4074", + "label": "No disqualification - Special Reasons", + "shortCode": "NDSR", + "level": "O", + "rank": 16900, + "wordGroups": [ + { + "wordGroup": [ + "no", + "disqualification", + "special", + "reason" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dcaf502b-44d2-4be0-acfc-2f7d29142da6", + "label": "Special reasons", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3509", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "label": "Community requirement: Rehabilitation activity", + "shortCode": "RAR", + "level": "O", + "rank": 2400, + "wordGroups": [ + { + "wordGroup": [ + "Rehabilitation", + "Activity" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1bc7246f-89f2-4b2f-b765-d01297d7b4aa", + "label": "Max number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3149", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f121db73-57fb-4f74-9ab1-0843aabe4605", + "label": "No endorsement - Special Reasons", + "shortCode": "NESR", + "level": "O", + "rank": 17000, + "wordGroups": [ + { + "wordGroup": [ + "no", + "endorsement", + "special", + "reason" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "dcaf502b-44d2-4be0-acfc-2f7d29142da6", + "label": "Special reasons", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3508", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b5ee3936-2cd5-47f4-9192-3737c7093a7f", + "label": "Removal of Driving Disqualification", + "shortCode": "RDD", + "level": "O", + "rank": 17100, + "wordGroups": [ + { + "wordGroup": [ + "remove", + "disqualification" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fb28be9c-0f74-4c02-a70e-0fffa9b0614b", + "label": "Date disqualification imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7a6d9bb9-a042-4234-8b92-d871437fd15a", + "label": "Date disqualification ends", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "73f005c6-11e7-4d45-a378-85ea5919e553", + "label": "Original date of conviction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "37ee2b08-1950-4b04-bea5-f6f66b768bb0", + "label": "Original offence date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5813ddb2-e987-44fd-bdcf-4148e6fb9cda", + "label": "DVLA offence code", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "84a42b46-f384-410d-a4d9-46fe0cb74678", + "label": "Applicant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c70597c0-a333-4828-959f-e6c8174a311c", + "label": "Original convicting court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "663d9c78-0e56-4931-9f3a-5301a7e94147", + "label": "Disqualification for non-endorsable offence (assault by driving a motor vehicle)", + "shortCode": "DDRA", + "level": "O", + "rank": 17200, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "non-endorsable", + "assault" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7a353b75-acd8-4a69-b779-d14c194fa3fd", + "label": "Extension period section 147A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "975c0985-7ee4-4560-85fc-5eecf97f9b34", + "label": "Extension period section 147B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3095", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "6ef33dcf-3fd3-46d6-bc41-f7bfb7f5ced6", + "label": "Disqualification for non-endorsable offence (vehicle used for purposes of crime)", + "shortCode": "DDRV", + "level": "O", + "rank": 17300, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "non-endorsable", + "crime" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7a353b75-acd8-4a69-b779-d14c194fa3fd", + "label": "Extension period section 147A (immediate custodial sentence)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "975c0985-7ee4-4560-85fc-5eecf97f9b34", + "label": "Extension period section 147B (effect of custodial sentence noted)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3095", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": true, + "resultDefinitionRules": [] + }, + { + "id": "238fc228-f948-430e-b0a1-7c9bdcafac46", + "label": "Disqualification suspended pending appeal", + "shortCode": "DSPA", + "level": "O", + "rank": 17400, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "suspended", + "appeal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantDrivingLicenseNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3075", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d3ca848c-ab33-4650-a0e6-36f1b86998a2", + "label": "Disqualification suspended pending appeal in a later session", + "shortCode": "DSPAS", + "level": "O", + "rank": 17500, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "suspended", + "appeal", + "later" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", + "label": "Convicting court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "00ff3bf4-a872-4c16-a671-f05b8aa147f3", + "label": "Sentencing court if different from convicting court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e3764c59-4e25-4864-a3af-1c2e3390af99", + "label": "Date of conviction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9c1c1ba5-eb13-45be-a7d3-dcc83debe0ba", + "label": "Date of offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "71b1cc98-8b41-4d65-906a-3b4940c4ce1d", + "label": "Date of sentence if different from conviction date", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9dc27662-6953-4acf-a7ac-9b9165e12e2d", + "label": "DVLA code for offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "72faf2d6-b362-4e7a-9f89-102c7e820868", + "label": "Court contact (SPOC)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "84a42b46-f384-410d-a4d9-46fe0cb74678", + "label": "Applicant driving licence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3076", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "39988e30-159a-442e-bb83-7f6df78fea34", + "label": "Driving licence disposal", + "shortCode": "DLDIS", + "level": "D", + "rank": 17600, + "wordGroups": [ + { + "wordGroup": [ + "driving", + "license", + "disposal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ff701645-f700-48d0-a247-19f177b0e976", + "label": "Driving licence type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5fe6673d-24ff-445b-b247-03c71e95fb2c", + "label": "Driving licence destination", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0556c55a-439b-4020-8bff-ad0d5c0bb7fa", + "label": "Reason driving licence sent to DVLA", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dd3ef017-5020-4fec-832a-98028ebf3097", + "label": "Driving licence suspended pending production", + "shortCode": "DLSUS", + "level": "C", + "rank": 17700, + "wordGroups": [ + { + "wordGroup": [ + "driving", + "license", + "suspended", + "production" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3510", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3bfd5af4-b80a-405c-9089-1a533aec0ace", + "label": "Licensed Premises - Exclusion Order", + "shortCode": "LPEX", + "level": "O", + "rank": 17800, + "wordGroups": [ + { + "wordGroup": [ + "licensed", + "premises", + "exclusion" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "04446df0-88b9-4f3b-97cd-cf663346c6d0", + "label": "Duration of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "04446df0-88b9-4f3b-97cd-cf663346c6d0", + "label": "Duration of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "57d0b15c-746a-4376-a4d8-5917ecd5e8eb", + "label": "Name of licensed premises excluded from", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c70d64d-9c95-48bc-b8d2-5c38643e7d65", + "label": "Reason for exclusion", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3041", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0ced3039-579c-48a3-9274-cee8c68ba608", + "label": "Contingent destruction order for dog (proper control)", + "shortCode": "DCDO", + "level": "O", + "rank": 18000, + "wordGroups": [ + { + "wordGroup": [ + "dog", + "destruction", + "control" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e8a64fc3-081f-4461-84e8-65774cce7021", + "label": "Details of dog", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "31abd0a3-c2e2-4e15-91de-f2917b4fbadd", + "label": "To be securely held on a lead by a person who is not less than 16 years old", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2e674f8b-dc14-4731-8ff4-a13c85be7318", + "label": "To be securely fitted with a muzzle sufficient to prevent it biting any person", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0879a258-7feb-4675-ba94-abc679b23aa9", + "label": "Places excluded from", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a8548173-c4a4-43a6-adbc-364fbdfcef58", + "label": "Other directions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3082", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bbc3f8e9-b29c-40d2-8564-0e918693ed89", + "label": "Order for dog to be neutered", + "shortCode": "DN", + "level": "O", + "rank": 18100, + "wordGroups": [ + { + "wordGroup": [ + "dog", + "neutered" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e8a64fc3-081f-4461-84e8-65774cce7021", + "label": "Details of dog", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "75ae5570-cdc0-42c7-9024-68985fd3bf73", + "label": "Date by which dog is to be neutered", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "03e32b0e-ce6a-4d00-bc21-88c1849d6faf", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3020", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b6eeca33-a188-4d00-a470-391b245c45a4", + "label": "Order for deprivation of animal", + "shortCode": "ADEP", + "level": "O", + "rank": 18200, + "wordGroups": [ + { + "wordGroup": [ + "deprivation", + "animal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0f52987f-309d-4357-95e1-8f4da8effb60", + "label": "This order also deprives the defendant of the animal's dependent offspring and provides for its disposal. The offspring are", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0949b347-3c72-4688-9ecb-deabb17ee175", + "label": "Directions regarding the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a795188-50e5-4587-9097-610219269455", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3055", + "adjournment": false, + "convicted": true, + "qualifier": "YZ", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cf10ee96-c82c-46c7-8a34-0c9d08aca134", + "label": "Order for destruction in the interests of the animal made under Section 37 Animal Welfare Act 2006", + "shortCode": "ADES", + "level": "O", + "rank": 18300, + "wordGroups": [ + { + "wordGroup": [ + "destruction", + "interest", + "animal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0949b347-3c72-4688-9ecb-deabb17ee175", + "label": "Directions regarding the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a795188-50e5-4587-9097-610219269455", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3116", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "852cf8c1-bb0f-444f-97f1-64ff8561413d", + "label": "Destruction of animals involved in fighting made under Section 38 Animal Welfare Act 2006", + "shortCode": "ADESF", + "level": "O", + "rank": 18400, + "wordGroups": [ + { + "wordGroup": [ + "destruction", + "animal", + "fighting" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "03934cce-feb2-43b5-aaf8-20aeccb3336d", + "label": "Animal to be destroyed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0949b347-3c72-4688-9ecb-deabb17ee175", + "label": "Directions regarding the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a795188-50e5-4587-9097-610219269455", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3116", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "26eec36f-7bdc-4b1a-9b46-ba161f52a4e2", + "label": "Disqualified from keeping animal stated for a defined period", + "shortCode": "ANI", + "level": "O", + "rank": 18500, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "keeping", + "animal", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e07c6156-730e-4b66-a913-edc7366b13c0", + "label": "Specify the animal to which the order applies", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a795188-50e5-4587-9097-610219269455", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3025", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "577acd37-0473-4ad8-ac06-adbf7e9beb2c", + "label": "Disqualified from keeping stated animal for life", + "shortCode": "ANIL", + "level": "O", + "rank": 18600, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "keeping", + "animal", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e07c6156-730e-4b66-a913-edc7366b13c0", + "label": "Specify the animal to which the order applies", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a795188-50e5-4587-9097-610219269455", + "label": "Reason for order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3025", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", + "label": "Foreign travel prohibition", + "shortCode": "FTPN", + "level": "O", + "rank": 100, + "userGroups": [], + "prompts": [ + { + "id": "63ff5f8d-07ac-4b2d-ae61-fbb75613dfab", + "label": "Not to travel to any country outside the United Kingdom", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "63173301-f05d-4bb3-8ca0-2fefd8f9e84d", + "label": "Not to travel to the following countries outside the United Kingdom", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3333058f-1977-4fcb-a70a-98d1510898b5", + "label": "Not to travel to any country outside the United Kingdom other than", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5d2dd546-d773-44d6-b030-0de2d049b245", + "label": "Period of foreign travel prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "67de7451-2805-40ee-9d4c-6e75aa04069c", + "label": "Foreign travel prohibition removed", + "shortCode": "FTPR", + "level": "O", + "rank": 18700, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "removed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e86b1bce-49f5-46db-8c2e-3df6321ecfdb", + "label": "Date removed with effect from", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2a9ff8a6-c0cf-45eb-b9e5-252238a5140c", + "label": "Foreign travel prohibition extended", + "shortCode": "FTPE", + "level": "O", + "rank": 18800, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "extended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "32b624af-30b4-4ef9-8eae-cb178a64e2be", + "label": "Date foreign travel prohibition made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3332ddb2-2c45-496a-8306-92ab4ddc726d", + "label": "Foreign travel prohibition extended until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "label": "Community requirement: Prohibited activity for period", + "shortCode": "PARP", + "level": "O", + "rank": 2600, + "wordGroups": [ + { + "wordGroup": [ + "prohibited", + "Activity", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "382ff620-7645-4b1f-9905-4620b8d2f0e9", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label": "Prohibited activities", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3104", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dcdcd240-3ebe-4e80-b84c-a06a2a4a17ae", + "label": "Sexual harm prevention order discharged", + "shortCode": "SHPOD", + "level": "O", + "rank": 18900, + "wordGroups": [ + { + "wordGroup": [ + "shopo", + "discharged" + ] + }, + { + "wordGroup": [ + "sexual", + "harm", + "prevention", + "discharged" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "471d4d9d-b267-410a-be01-7c8c5e762992", + "label": "Sexual harm prevention order type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label": "Date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "Date", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94514093-d8de-4400-93de-9e3366f5af8c", + "label": "Name of defendant on original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label": "Name of court that made the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bb09512f-3d01-4f3d-ab7e-fefa5a7ccba4", + "label": "Sexual harm prevention order renewed", + "shortCode": "SHPOR", + "level": "O", + "rank": 19000, + "wordGroups": [ + { + "wordGroup": [ + "shopo", + "renewed" + ] + }, + { + "wordGroup": [ + "sexual", + "harm", + "prevention", + "renewed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "471d4d9d-b267-410a-be01-7c8c5e762992", + "label": "Sexual harm prevention order type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "a0be0a3f-bace-4f16-9c3b-f8ac9b9bb9f2", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label": "Date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "Date", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94514093-d8de-4400-93de-9e3366f5af8c", + "label": "Name of defendant on original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label": "Name of court that made the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "35dd25e2-0017-46fd-ae5f-0ed8eb67d545", + "label": "Foreign travel prohibition varied", + "shortCode": "FTPV", + "level": "O", + "rank": 19100, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "32b624af-30b4-4ef9-8eae-cb178a64e2be", + "label": "Date foreign travel prohibition made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", + "label": "Details of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cd612502-9cf9-4365-b6db-bf70022c40e5", + "label": "Foreign travel prohibition added", + "shortCode": "FTPA", + "level": "O", + "rank": 19200, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "added" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label": "Period of foreign travel prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label": "Period of foreign travel prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label": "Period of foreign travel prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b93f6c31-a231-4963-ac85-fd80dc2737de", + "label": "Period of foreign travel prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "137b456b-1f56-42f6-9b5a-e45a3171724e", + "label": "Not to travel to any country outside the United Kingdom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a8b1ab81-4ef1-40bc-9aa8-ccdba9a6efca", + "label": "Not to travel to the following countries outside the United Kingdom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e9b15a52-c842-4e33-b779-537360158228", + "label": "Not to travel to any country outside the United Kingdom other than", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "23fff13d-9741-4209-88ce-83e14c8c3388", + "label": "Slavery and trafficking prevention order for period", + "shortCode": "SATPO", + "level": "O", + "rank": 19300, + "wordGroups": [ + { + "wordGroup": [ + "slavery", + "prevention", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3285", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "17bcc2c7-51f3-4449-aeed-3e7c65a0854d", + "label": "Slavery and trafficking prevention order until further order", + "shortCode": "SATPOFO", + "level": "O", + "rank": 19400, + "wordGroups": [ + { + "wordGroup": [ + "slavery", + "prevention", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3285", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dcdbe62e-ff8f-48d9-acf9-6b6b86b3487d", + "label": "Slavery and trafficking prevention order until end date", + "shortCode": "SATPOED", + "level": "O", + "rank": 19500, + "wordGroups": [ + { + "wordGroup": [ + "slavery", + "prevention", + "end" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3285", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ee94aaf8-5152-4a6e-b17e-63891e6209c4", + "label": "Slavery and trafficking prevention order varied", + "shortCode": "SATPOV", + "level": "O", + "rank": 19700, + "wordGroups": [ + { + "wordGroup": [ + "slavery", + "prevention", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "36ffa2d3-2a08-43da-b2c2-5027b6c16d3a", + "label": "Date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "Date", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94514093-d8de-4400-93de-9e3366f5af8c", + "label": "Name of defendant on original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "24d4d58a-d3cf-4536-9caf-cf251b1fab36", + "label": "Name of court that made the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2def6a67-bdb7-4596-8544-53ebb5811880", + "label": "Variation of prohibitions (other than foreign)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f0b5c085-202d-4b96-9409-959f950c6bf3", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label": "Start date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "381648c7-ca3e-4368-a75d-dbdebbf22bcd", + "label": "Interim slavery and trafficking prevention order", + "shortCode": "SATPOI", + "level": "O", + "rank": 19800, + "wordGroups": [ + { + "wordGroup": [ + "interim", + "slavery", + "prevention" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "050b4899-5383-4894-9970-ff227cdd5686", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3284", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", + "ruleType": "optional" + } + ] + }, + { + "id": "0021c162-50ee-4769-b30c-c15be2202427", + "label": "Travel restriction order", + "shortCode": "TRO", + "level": "O", + "rank": 19900, + "wordGroups": [ + { + "wordGroup": [ + "travel", + "restriction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef4db11b-fc46-44a3-b96d-07df138200bf", + "label": "Direction to deliver up passport to Court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3078", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1c40353b-a3b8-4437-8691-6b54d5842010", + "label": "Community requirement: Prohibited activity for dates", + "shortCode": "PARD", + "level": "O", + "rank": 2700, + "wordGroups": [ + { + "wordGroup": [ + "prohibited", + "Activity", + "dates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label": "Prohibited activities", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96a36529-f9ff-4804-86d1-361bc9c12910", + "label": "Dates", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3104", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e513f78d-6ba3-45b2-a3f9-668c9543f76c", + "label": "No travel restriction order", + "shortCode": "NOTRO", + "level": "O", + "rank": 20000, + "wordGroups": [ + { + "wordGroup": [ + "no", + "travel", + "restriction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "88d784e0-e85f-47ac-9c04-a96a9862056e", + "label": "Reasons for not making a travel restriction order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0f1dce52-dfe0-4ed9-ba4e-ca0f30cfb30f", + "label": "Travel restriction order revoked", + "shortCode": "TROR", + "level": "O", + "rank": 20100, + "wordGroups": [ + { + "wordGroup": [ + "travel", + "restriction", + "revoked" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc5bb638-52c0-4815-9816-a473f7503684", + "label": "Date travel prohibition revoked with effect from", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d624b709-013b-4865-8de8-e91dc00957af", + "label": "Travel restriction order suspended", + "shortCode": "TROS", + "level": "O", + "rank": 20200, + "wordGroups": [ + { + "wordGroup": [ + "travel", + "restriction", + "suspended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label": "Duration of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label": "Duration of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label": "Duration of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ebd5a31-b9b9-446f-b757-6cb716e96fc0", + "label": "Duration of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc28ef15-b7ce-4be0-98ca-342e0b8df374", + "label": "Original order contained a direction to surrender passport", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "af519666-bd10-423a-8f4b-9173a5daafca", + "label": "Psychoactive Substances Prohibition Order", + "shortCode": "PSPO", + "level": "O", + "rank": 20400, + "wordGroups": [ + { + "wordGroup": [ + "psychoactive", + "subatance" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a2984926-eec3-4a76-8c47-ac6d708ca853", + "label": "General prohibitions and restrictions", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4bc401db-3334-4b50-9e4b-df2068e9a675", + "label": "Describe item to be disposed of", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "54d27556-06bb-411c-80e6-cb8cc82908f8", + "label": "Specify who is to dispose of item", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3288", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "08f9b07e-ed90-4522-9d14-7d9162186758", + "label": "Psychoactive Substances Prohibition Order with premises access prohibition", + "shortCode": "PSPOA", + "level": "O", + "rank": 20500, + "wordGroups": [ + { + "wordGroup": [ + "psychoactive", + "subatance", + "premises", + "prohibited" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bc3ae01d-a965-40c7-87ab-3dcc8738785e", + "label": "Duration", + "welshLabel": "Hyd", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b037d41d-d72c-4dcb-a3f0-37adc12aae52", + "label": "Prohibition duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b037d41d-d72c-4dcb-a3f0-37adc12aae52", + "label": "Prohibition duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b037d41d-d72c-4dcb-a3f0-37adc12aae52", + "label": "Prohibition duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a2984926-eec3-4a76-8c47-ac6d708ca853", + "label": "General prohibitions and restrictions", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4bc401db-3334-4b50-9e4b-df2068e9a675", + "label": "Describe item to be disposed of", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "54d27556-06bb-411c-80e6-cb8cc82908f8", + "label": "Specify who is to dispose of item", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "01c2bbdc-5765-4952-8575-cca2077349e7", + "label": "Prohibition applies to whole or part of premises", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0335a74d-2142-413f-9bbc-753581a43707", + "label": "Prohibited premises", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f9704321-7770-467e-a94b-3e8544c857bc", + "label": "Describe the part of premises", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bcaf62cd-7270-4e86-b41e-7fcfa3aae1eb", + "label": "Persons times and circumstances of access prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3288", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f0395277-4d26-4785-acb5-5be597d97ae6", + "label": "Criminal behaviour order until further order", + "shortCode": "CRIMBOF", + "level": "O", + "rank": 20600, + "wordGroups": [ + { + "wordGroup": [ + "criminal", + "behaviour", + "Order", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3e8e3caa-b09d-4532-813d-433ffc1df1c5", + "label": "Start date of order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4461f7f5-f984-4b6d-9f60-3084e5071382", + "label": "Requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8e61bd5a-acd9-40d7-b72b-fa3e10fb311d", + "label": "Supervisor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d3b43a30-5e82-4d02-9bcc-8bcd55911a5a", + "label": "Supervisor's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1177", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "187f05c9-8467-4741-8b9e-7a3a5b06f6f6", + "label": "No evidence offered (summary offence in the Crown Court)", + "shortCode": "NOEVS", + "level": "O", + "rank": 20700, + "wordGroups": [ + { + "wordGroup": [ + "no", + "evidence", + "offered" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2050", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f8bd4d1f-1467-4903-b1e6-d2249ccc8c25", + "label": "Dismissed (No evidence offered)", + "shortCode": "DINE", + "level": "O", + "rank": 20800, + "wordGroups": [ + { + "wordGroup": [ + "Dismissed", + "no", + "evidence" + ] + }, + { + "wordGroup": [ + "no evidence", + "offered", + "Dismissed" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Gwrthod (Dim tystiolaeth wedi’i chyflwyno)", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2050", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5edd3a3a-8dc7-43e4-96c4-10fed16278ac", + "label": "Vehicle Excise Back Duty", + "shortCode": "FVEBD", + "level": "O", + "rank": 20900, + "wordGroups": [ + { + "wordGroup": [ + "vehicle", + "back", + "duty" + ] + }, + { + "wordGroup": [ + "FVEBD" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f7c7c088-f88e-4c28-917c-78571517aca1", + "label": "Amount of back duty", + "welshLabel": "Swm yr ôl-doll", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOBD", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Ôl-doll Treth Car", + "isAvailableForCourtExtract": true, + "financial": true, + "category": "F", + "cjsCode": "3014", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "label": "Community requirement: Prohibited activity for days of week", + "shortCode": "PARW", + "level": "O", + "rank": 2800, + "wordGroups": [ + { + "wordGroup": [ + "prohibited", + "Activity", + "days" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label": "Prohibited activities", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "53f817cd-0070-455e-9826-a103bd4a4a26", + "label": "Days", + "welshLabel": "Diwrnod", + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "e652a90a-31cf-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3104", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b81ac80b-81a9-48b6-87b0-cc34610eec97", + "label": "Restraining order for period", + "shortCode": "RESTRAOP", + "level": "O", + "rank": 700, + "wordGroups": [ + { + "wordGroup": [ + "Restraining", + "Order", + "Period" + ] + }, + { + "wordGroup": [ + "RESTRAOP" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a20665cc-6877-40f4-b85e-d4c87e62987b", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", + "label": "Protected person", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "8df0ec7e-5985-4998-af1a-5da293d9cb3c", + "label": "Order details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47337f1c-e343-4093-884f-035ba96c4db0", + "label": "Conviction / acquittal", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8dc70c95-fb09-4842-9138-bc579fceb605", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ea26f773-0a91-4526-b4ad-84d07b5bf940", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3047", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "920183ea-c82a-4110-a937-6a2e7071d908", + "label": "Certificate of conviction under Section 113 of the Powers of Criminal Courts (Sentencing) Act 2000", + "shortCode": "QCON", + "level": "O", + "rank": 21000, + "wordGroups": [ + { + "wordGroup": [ + "certificate", + "conviction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e3764c59-4e25-4864-a3af-1c2e3390af99", + "label": "Date of conviction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6e108b9d-bac5-4b01-945e-b0d2c2c7031e", + "label": "Convicting court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "59828fc1-e8f2-46be-866c-4c8c1d165273", + "label": "Type of offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bfb02d14-243f-4450-9c20-4c0ed9c5d64c", + "label": "No further review of order required", + "shortCode": "REVUE", + "level": "O", + "rank": 21100, + "wordGroups": [ + { + "wordGroup": [ + "no", + "Further", + "Review" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9bb5d310-0fef-450d-91d6-117f894001bb", + "label": "Offences taken into consideration", + "shortCode": "TIC", + "level": "D", + "rank": 21200, + "wordGroups": [ + { + "wordGroup": [ + "TIC" + ] + }, + { + "wordGroup": [ + "taken", + "into", + "consideration" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a292fb05-4b6b-43b3-8fdc-1ce5c1114a45", + "label": "Number of offences admitted and taken into consideration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3118", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "87eed0b7-b141-4a3c-b7b0-ea8bb23ec3b2", + "label": "Warrant not executed", + "shortCode": "WNE", + "level": "O", + "rank": 21300, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "not", + "executed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9565f244-bef4-43a0-b32c-0d12faceb5de", + "label": "Reason for warrant not executed", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "381cb2bd-4993-476d-9c8f-3bd19f288120", + "label": "Reason warrant not executed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "2509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4d5f25a5-9102-472f-a2da-c58d1eeb9c93", + "label": "Warrant withdrawn", + "shortCode": "WWDN", + "level": "O", + "rank": 21400, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "withdrawn" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "81aaac7d-84c3-45cb-a845-69b7f3fb20fe", + "label": "Reason for withdrawing warrant", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "2509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8e7f7ffd-eceb-44ea-8efd-bc6c99913d85", + "label": "Restraining order discharged", + "shortCode": "RESTRAD", + "level": "O", + "rank": 21500, + "wordGroups": [ + { + "wordGroup": [ + "Restraining", + "Order", + "discharged" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8a11df41-cc91-4b67-80c4-6108c9b5e324", + "label": "Third party's name (victim or police)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a06952c1-4bfe-4004-b6ac-6908afefdd6a", + "label": "Third party's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2ade6e72-ee41-4718-87a0-1a396579ac56", + "label": "Original order made by", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c2200b1d-a47d-4d02-9b88-58f8bbed7ea9", + "label": "Restraining order varied", + "shortCode": "RESTRAV", + "level": "O", + "rank": 21600, + "wordGroups": [ + { + "wordGroup": [ + "Restraining", + "Order", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8a11df41-cc91-4b67-80c4-6108c9b5e324", + "label": "Third party's name (victim or police)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a06952c1-4bfe-4004-b6ac-6908afefdd6a", + "label": "Third party's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2ade6e72-ee41-4718-87a0-1a396579ac56", + "label": "Original order made by", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2da599de-da03-492e-b66f-e7aad32fcfa5", + "label": "Terms of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49a85507-8a96-4201-965d-a11879c73f8c", + "label": "Order now expires", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c32b9ca1-78da-4c7c-bde6-8218aed2bb80", + "label": "Adjournment refused", + "shortCode": "ADR", + "level": "O", + "rank": 21700, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "refused" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "61d8be36-adac-4a47-aa65-a46962f2bd8b", + "label": "Reason for refusal", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Bydd y gwrandawiad nesaf yn y llys ynadon", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bc4bb54f-1fa8-43d8-8021-c1e07994d5f6", + "label": "Racially aggravated offence", + "shortCode": "RA", + "level": "O", + "rank": 21800, + "wordGroups": [ + { + "wordGroup": [ + "racially", + "aggravated" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "07f5229c-cf4c-45f2-a49b-703d11bf5b41", + "label": "Racially and religiously aggravated offence", + "shortCode": "RARE", + "level": "O", + "rank": 21900, + "wordGroups": [ + { + "wordGroup": [ + "racially", + "religious", + "aggravated" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "label": "Community requirement: Foreign travel prohibition any country for period", + "shortCode": "FTPCP", + "level": "O", + "rank": 2900, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "any", + "country", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bcd4f58f-c53e-420f-8d54-c42f125522f9", + "label": "Religiously aggravated offence", + "shortCode": "RE", + "level": "O", + "rank": 22000, + "wordGroups": [ + { + "wordGroup": [ + "religious", + "aggravated" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f25de68a-e719-42dd-9153-6687af843434", + "label": "Aggravated due to transgender", + "shortCode": "TGG", + "level": "O", + "rank": 22100, + "wordGroups": [ + { + "wordGroup": [ + "transgender", + "aggravated" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6fcb509f-1343-46df-a79b-7f650d84d3f2", + "label": "Aggravated due to transgender of victim", + "shortCode": "TGV", + "level": "O", + "rank": 22200, + "wordGroups": [ + { + "wordGroup": [ + "transgender", + "aggravated", + "victim" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cfe8ea34-4461-42e1-836c-2319924b4ea6", + "label": "General disqualification for a period", + "shortCode": "DGEN", + "level": "O", + "rank": 22300, + "wordGroups": [ + { + "wordGroup": [ + "general", + "disqualification", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label": "Period of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label": "Period of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label": "Period of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "842b1b19-ff4f-4f33-bb12-15ef4cdd80b2", + "label": "Period of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b7eacb5-af56-4f40-b808-40270fb900cd", + "label": "Nature of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "db41c015-10b7-4947-9524-ce61344c8d6a", + "label": "Reason for disqualification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "95d8d079-3680-4819-9bf7-5e268aae8ff0", + "label": "General disqualification for life", + "shortCode": "DGENL", + "level": "O", + "rank": 22400, + "wordGroups": [ + { + "wordGroup": [ + "general", + "disqualification", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1b7eacb5-af56-4f40-b808-40270fb900cd", + "label": "Nature of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "db41c015-10b7-4947-9524-ce61344c8d6a", + "label": "Reason for disqualification", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "49297a56-1d57-4f3a-862a-351a9c7372a7", + "label": "Female genital mutilation protection order until further order", + "shortCode": "FGMPO", + "level": "O", + "rank": 22500, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "Further" + ] + }, + { + "wordGroup": [ + "fgm", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0987a7f2-c628-43f4-b978-1a4db2e4c45b", + "label": "Terms of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b3c338ee-3a15-4f46-bf51-4ed3dd9fa831", + "label": "Female genital mutilation protection order for period", + "shortCode": "FGMPOP", + "level": "O", + "rank": 22600, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "Period" + ] + }, + { + "wordGroup": [ + "fgm", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0987a7f2-c628-43f4-b978-1a4db2e4c45b", + "label": "Terms of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3f6ea21a-1e7a-4fbf-b6bd-a1d0d59d9636", + "label": "Female genital mutilation protection order until end date", + "shortCode": "FGMPOE", + "level": "O", + "rank": 22700, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "end" + ] + }, + { + "wordGroup": [ + "fgm", + "end" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", + "label": "End date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0987a7f2-c628-43f4-b978-1a4db2e4c45b", + "label": "Terms of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a9ec3d80-c37a-4f51-9706-e33b6feb6d2d", + "label": "Female genital mutilation protection order varied (until further order)", + "shortCode": "FGMPOV", + "level": "O", + "rank": 22800, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "varied", + "Further" + ] + }, + { + "wordGroup": [ + "fgm", + "varied", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f7d348da-6f8b-4170-9660-55ee16453865", + "label": "Terms of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9f707be3-97fb-4ea8-984b-41547adc189c", + "label": "Female genital mutilation protection order varied (for period)", + "shortCode": "FGMPOVP", + "level": "O", + "rank": 22900, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "varied", + "Period" + ] + }, + { + "wordGroup": [ + "fgm", + "varied", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f53b6349-3926-4562-b5a7-d8c40930bcfe", + "label": "Period of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f7d348da-6f8b-4170-9660-55ee16453865", + "label": "Terms of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "label": "Community requirement: Foreign travel prohibition with list of countries for period", + "shortCode": "FTPLP", + "level": "O", + "rank": 3000, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "country", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f77b3b14-91b2-41b7-966b-0f0bad2664e2", + "label": "Countries", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "694af16b-9c84-42a4-a659-3f9ce4cf7d02", + "label": "Female genital mutilation protection order varied (until end date)", + "shortCode": "FGMPOVE", + "level": "O", + "rank": 23000, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "varied", + "end" + ] + }, + { + "wordGroup": [ + "fgm", + "varied", + "end" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "968b8acc-e43b-486d-8c8f-9b3fc9653bae", + "label": "Name of girl protected", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f7d348da-6f8b-4170-9660-55ee16453865", + "label": "Terms of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b30f8ca-2393-49e1-b7f7-fb75846e6f6a", + "label": "End date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f0d12a39-5c34-43c4-8816-968a9b9e3b60", + "label": "Female genital mutilation protection order discharged", + "shortCode": "FGMPOD", + "level": "O", + "rank": 23100, + "wordGroups": [ + { + "wordGroup": [ + "female", + "genital", + "mutilation", + "discharged" + ] + }, + { + "wordGroup": [ + "fgm", + "discharged" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", + "label": "Passport surrender", + "shortCode": "PASSS", + "level": "O", + "rank": 600, + "wordGroups": [ + { + "wordGroup": [ + "passport", + "surrender" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "68077602-7fa8-4645-9bc6-bc59ed409f6f", + "label": "Name of Police Station to surrender passport", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b87786ca-5112-4841-9c3e-a131186b1762", + "label": "Passport to be surrendered on or before", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0cee6bf5-21e4-403f-ba45-73e029ab0c73", + "label": "Specify how many days to surrender passport in", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e0294281-d95d-48e2-8bd0-d7af53740ac9", + "label": "Passport surrender variation", + "shortCode": "PASSSV", + "level": "O", + "rank": 23200, + "wordGroups": [ + { + "wordGroup": [ + "passport", + "surrender", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "68077602-7fa8-4645-9bc6-bc59ed409f6f", + "label": "Name of Police Station to surrender passport", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b87786ca-5112-4841-9c3e-a131186b1762", + "label": "Passport to be surrendered on or before", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0cee6bf5-21e4-403f-ba45-73e029ab0c73", + "label": "Specify how many days to surrender passport in", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "62eb1129-38b8-43aa-855c-bec3569bd17f", + "label": "Specify date passport originally surrendered on date (now to be returned)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "63f54361-69dd-4d8e-aece-8d87a6064d20", + "label": "Disqualified for having custody of a dog for period", + "shortCode": "DCUST", + "level": "O", + "rank": 23300, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "dog", + "custody", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3023", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a59be074-10ea-4552-bc83-51d069304402", + "label": "Disqualified for having custody of a dog for life", + "shortCode": "DCUSTL", + "level": "O", + "rank": 23400, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "dog", + "custody", + "Life" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3023", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "95d2a99a-d8ce-43ae-b5d0-d0dfd8d850f1", + "label": "Order to keep dog under proper control", + "shortCode": "DKPC", + "level": "O", + "rank": 23500, + "wordGroups": [ + { + "wordGroup": [ + "dog", + "control" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bfbb887-7b2d-4423-b80f-f55b19224806", + "label": "Dog to be fitted with a muzzle sufficient to prevent it biting any person", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e71dd017-100f-4fbc-aa8f-07cc33837375", + "label": "Dog to be securely held on a lead by a person who is not less than 16 years old", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4c38a549-71e8-40d2-be69-9309653905c3", + "label": "Dog excluded from", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cdca7321-e930-480a-80bb-60064432f8d1", + "label": "Specify terms", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "690bddca-7264-4e3d-9d64-ac7a00fca7c7", + "label": "Describe dog eg name, breed, colour", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3034", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6bd5d409-d656-4829-9ebd-f795e4564c7c", + "label": "Aggravated due to sexual orientation", + "shortCode": "SEXO", + "level": "O", + "rank": 23600, + "wordGroups": [ + { + "wordGroup": [ + "aggravted", + "sexual", + "orientation" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "qualifier": "AW", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0bfb5f42-062b-4473-9c10-bf98315f8117", + "label": "Aggravated due to sexual orientation of victim", + "shortCode": "SEXOV", + "level": "O", + "rank": 23700, + "wordGroups": [ + { + "wordGroup": [ + "aggravted", + "sexual", + "orientation", + "victiim" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "qualifier": "AV", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "98dc94c8-45f0-4961-bb34-cd979dcc2874", + "label": "Order that dog be destroyed", + "shortCode": "DDES", + "level": "O", + "rank": 23800, + "wordGroups": [ + { + "wordGroup": [ + "dog", + "destroyed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a3ea06d8-b297-4ccc-ac1f-f37bd3054388", + "label": "Details of dog", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "783e2975-f9aa-4c7e-90a8-2dd6b16144a4", + "label": "Further information about destruction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3021", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c1b0dedf-1380-4889-9d31-1816b850e348", + "label": "Community requirement: Foreign travel prohibition with list of countries for dates", + "shortCode": "FTPLD", + "level": "O", + "rank": 3100, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "country", + "any", + "dates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f77b3b14-91b2-41b7-966b-0f0bad2664e2", + "label": "Countries", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "464b2a25-dfe4-42b2-8cc7-29a66edf9743", + "label": "Dates of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "datesOfProhibition", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0b4fee38-ee9b-4aef-9179-cda3e1dbc607", + "label": "Disqualified from keeping a dog for period", + "shortCode": "DDIS", + "level": "O", + "rank": 23900, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "dog", + "keeping", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ace97f4d-2d07-4bae-a1a7-99e1ac750f13", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3022", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e715521c-a4ae-40b3-b127-7612a0b6f32e", + "label": "Disqualified from keeping a dog for life", + "shortCode": "DDISL", + "level": "O", + "rank": 24000, + "wordGroups": [ + { + "wordGroup": [ + "disqualified", + "dog", + "keeping", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e0decfd5-5fd4-446b-9120-840ca6825fb8", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3022", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "29c0a838-14ac-42c0-870c-ee1a133601e3", + "label": "Aggravated due to hostility based on disability of victim", + "shortCode": "DISV", + "level": "O", + "rank": 24100, + "wordGroups": [ + { + "wordGroup": [ + "aggravated", + "disability", + "victim" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "qualifier": "AX", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a395f8db-9473-4172-8474-c0fb5e1bbefb", + "label": "Motivated by hostility towards persons who have a disability or a particular disability", + "shortCode": "DISG", + "level": "O", + "rank": 24200, + "wordGroups": [ + { + "wordGroup": [ + "motivated", + "disability" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "qualifier": "AY", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e7ef0248-fe71-4733-8749-ff0c23a04f95", + "label": "Shotgun Certificate cancelled", + "shortCode": "CSHOC", + "level": "O", + "rank": 24300, + "wordGroups": [ + { + "wordGroup": [ + "shotgun", + "cancelled" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3035", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "19026543-7d59-467b-9649-35ddf89b30cc", + "label": "Firearm Certificate Cancelled", + "shortCode": "CFIRC", + "level": "O", + "rank": 24400, + "wordGroups": [ + { + "wordGroup": [ + "firearm", + "cancelled" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3035", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0b472a9c-5bef-4de7-bbd9-20d22e6d07eb", + "label": "Defendant's costs payable from central funds - sum assessed", + "shortCode": "DCCFSA", + "level": "O", + "rank": 24500, + "wordGroups": [ + { + "wordGroup": [ + "defendant", + "Costs", + "central", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "672c8f19-2f64-4720-8638-1d7c7e66deda", + "label": "Sum assessed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label": "Creditor's name and address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b2fb2c0e-5c71-4a07-a870-506030f2d5ce", + "label": "Defendant's costs payable from central funds - sum to be assessed", + "shortCode": "DCCFSTA", + "level": "O", + "rank": 24600, + "wordGroups": [ + { + "wordGroup": [ + "defendant", + "Costs", + "central", + "to", + "be", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b17f9f16-20d4-4bb0-8872-5ab4878245c2", + "label": "Legal / defendant's personal costs", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5609ef92-3d72-4106-915a-aa83401bcaa3", + "label": "Percentage reduction ordered", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "feb9ebe0-b9bf-4b71-92e3-dcf5ceeeeada", + "label": "Other party's costs from central funds - sum assessed", + "shortCode": "CFCAOA", + "level": "O", + "rank": 24700, + "wordGroups": [ + { + "wordGroup": [ + "other", + "Costs", + "central", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", + "label": "Payment type", + "welshLabel": "Math o daliad", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label": "Creditor's name and address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "672c8f19-2f64-4720-8638-1d7c7e66deda", + "label": "Sum assessed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ed37c314-3700-4646-94f7-b2ec2cf8cef2", + "label": "Other party's costs from central funds - sum to be assessed", + "shortCode": "CFCAOTA", + "level": "O", + "rank": 24800, + "wordGroups": [ + { + "wordGroup": [ + "other", + "Costs", + "central", + "to", + "be", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8d5bcda9-08ec-48d0-bb50-18d7d08f5538", + "label": "Payment type", + "welshLabel": "Math o daliad", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label": "Creditor's name and address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "label": "Community requirement: Foreign travel prohibition any country for dates", + "shortCode": "FTPCD", + "level": "O", + "rank": 3200, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "any", + "dates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "464b2a25-dfe4-42b2-8cc7-29a66edf9743", + "label": "Dates of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "datesOfProhibition", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5ab30f3f-ef9a-46d0-8ccc-ddd2be8f4eee", + "label": "Prosecutor's costs from central funds - sum assessed", + "shortCode": "CFCAPA", + "level": "O", + "rank": 24900, + "wordGroups": [ + { + "wordGroup": [ + "prosecution", + "Costs", + "central", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label": "Creditor's name and address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "672c8f19-2f64-4720-8638-1d7c7e66deda", + "label": "Sum assessed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ab3df821-8a0b-408e-802d-ea04e3a1a8c5", + "label": "Prosecutor's costs from central funds - sum to be assessed", + "shortCode": "CFCAPTA", + "level": "O", + "rank": 25000, + "wordGroups": [ + { + "wordGroup": [ + "prosecution", + "Costs", + "central", + "to", + "be", + "assessed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "c7a816fb-083f-420a-9b48-5d9513014cf8", + "label": "Creditor's name and address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5609ef92-3d72-4106-915a-aa83401bcaa3", + "label": "Percentage reduction ordered", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6d2cd232-d38f-413f-bbec-5f83ef379b90", + "label": "Debtor to be searched", + "shortCode": "SRCH", + "level": "D", + "rank": 25100, + "wordGroups": [ + { + "wordGroup": [ + "debtor", + "searched" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d1f3066a-2d42-432a-9531-4194c42c9759", + "label": "Money found to be applied to debt", + "shortCode": "APMONEY", + "level": "D", + "rank": 25200, + "wordGroups": [ + { + "wordGroup": [ + "money", + "applied", + "debt" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8d72d822-d3e2-4c30-b089-ab36f58ebefe", + "label": "Amount to be applied", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "57bec156-6591-4449-8bc4-4981d71b4e8c", + "label": "Money found not to be taken", + "shortCode": "NTMONEY", + "level": "D", + "rank": 25300, + "wordGroups": [ + { + "wordGroup": [ + "money", + "not", + "taken" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "dc0a94ae-d212-44ab-b350-8a566533eeb4", + "label": "Amount of money court directs should not be taken", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d1aa9b8b-2aca-49a0-9f04-99eba9fd8491", + "label": "Reason for not taking money", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "261c0c09-d9ef-4422-b30e-248461d777ee", + "label": "Imprisonment in default of payment - on same date as imposition", + "shortCode": "IMPDP", + "level": "O", + "rank": 25400, + "wordGroups": [ + { + "wordGroup": [ + "imprisonment", + "default", + "payment" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8849cbc-f083-465b-af48-528ba436b90f", + "label": "Imprisonment reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f2cff709-d97f-4a59-b971-c9adba389319", + "label": "Further reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label": "Total amount enforced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "TOTENF", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "96cab958-f6f1-460b-875a-2b1e80a8b1e4", + "label": "Detention in default of payment - on same date as imposition", + "shortCode": "DETDP", + "level": "O", + "rank": 25500, + "wordGroups": [ + { + "wordGroup": [ + "detention", + "default", + "payment" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8849cbc-f083-465b-af48-528ba436b90f", + "label": "Imprisonment reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f2cff709-d97f-4a59-b971-c9adba389319", + "label": "Further reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "e36171b4-d3fb-4260-88f3-deca99288512", + "label": "Total amount enforced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b6d77ec4-cdf9-4d24-bf6b-de35e05e78ca", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1510", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "85c75b3b-18c4-460b-8e06-6358ae410536", + "label": "Notification of driver's disability to DVLA", + "shortCode": "DRDIS", + "level": "D", + "rank": 25600, + "wordGroups": [ + { + "wordGroup": [ + "notification", + "disability", + "dvla" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "c00d52fa-2c76-4681-ae67-94d0a9cec02c", + "label": "Defendant told DVLA would be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9c5e9397-6c28-4484-b075-fd0d08143dd4", + "label": "Defendant not told DVLA would be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4f97544b-1c9b-4350-8dcb-62e2017e3f8c", + "label": "Nature and source of disability information", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "58a92700-b229-4b6d-bf63-d9df9cbc59af", + "label": "Court contact (SPOC)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a96c1135-3057-453e-80c8-602a7f79013a", + "label": "Hospital order", + "shortCode": "MHHO", + "level": "O", + "rank": 25700, + "wordGroups": [ + { + "wordGroup": [ + "hospital", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "701b27ad-c54a-4011-a605-8c438ff685c9", + "label": "Name of hospital where defendant will be admitted or detained", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39001635-2dc8-4a58-9934-eeb60fa4d93b", + "label": "Name of hospital unit", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", + "label": "Hospital address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "611a9bc2-4a25-438c-90cc-bf86fdd30d86", + "label": "Mental health conviction status", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label": "Place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label": "Conveyor/custodian", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96949d0c-a59c-4a6f-a563-97456c985987", + "label": "Further directions regarding conveyance to place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1008", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ef1f6633-3c0b-4adc-b5b8-8ef21e91417f", + "label": "Guardianship Order", + "shortCode": "MHGO", + "level": "O", + "rank": 25800, + "wordGroups": [ + { + "wordGroup": [ + "guardianship", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "440b778c-98c6-4764-b627-8851b5ef0834", + "label": "Name of the guardian with whom defendant will be placed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "85e500c7-5cf4-4e23-8dcf-1e413c805031", + "label": "Guardian's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "611a9bc2-4a25-438c-90cc-bf86fdd30d86", + "label": "Mental health conviction status", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1014", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a19714a0-5d58-4666-bc15-3d9dd2692f77", + "label": "Community requirement: Foreign travel with list of countries for dates", + "shortCode": "FTCD", + "level": "O", + "rank": 3300, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "country", + "dates" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "37853bb7-8844-4cc1-8a34-fa7e4d89d87f", + "label": "Restitution Order", + "shortCode": "RESTIT", + "level": "O", + "rank": 25900, + "wordGroups": [ + { + "wordGroup": [ + "restitution", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d71816c-6972-4a50-9493-719295a99ac8", + "label": "Person to recover goods / money", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "eb3a82b0-b56b-4341-977d-9b76a377ce91", + "label": "Specify stolen goods to be restored to victim", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "43627e85-4cc4-4e2c-8fb6-95a70cd378d1", + "label": "Specify goods representing stolen goods (proceeds) to be transferred to victim", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c26d561-9275-4406-b38e-26c1e6f22d6e", + "label": "Specify sum to be paid out of money taken out of offender's possession on apprehension", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3013", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "62510cc8-7dd6-4c98-bc3a-fa24c730f91c", + "label": "Proceedings stayed", + "shortCode": "STAYP", + "level": "O", + "rank": 26000, + "wordGroups": [ + { + "wordGroup": [ + "proceedings", + "stayed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8e36cc12-aabc-485d-bda7-76230bab0399", + "label": "Circumstances leading to staying proceedings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fde3814-b542-4623-8bf6-8db5fcb86b11", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2061", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ef2eb362-dae5-4ad7-87c6-d1262d55533e", + "label": "Disqualification order relating to animals for period", + "shortCode": "ADISQ", + "level": "O", + "rank": 26100, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "animal", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", + "label": "Type of animal", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "db46c413-91e0-46d9-9b56-9eb54232761e", + "label": "Type of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ce6cdc61-03af-4807-bc55-17e57e263434", + "label": "All animals kept in contravention of this disqualifciation to be seized", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "269324e9-52a1-4b7c-a023-b41f57b4b811", + "label": "Directions regarding seizure", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "01431fda-56cf-4447-89b4-64b0777d791d", + "label": "Minimum period before defendant may apply to terminate order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label": "Order suspended pending appeal", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", + "label": "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3115", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "94f2989a-f4fd-4a39-a67f-71a4c0828f9d", + "label": "Disqualification order relating to animals for life", + "shortCode": "ADISQL", + "level": "O", + "rank": 26200, + "wordGroups": [ + { + "wordGroup": [ + "disqualification", + "animal", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bfbbcc1d-abfd-4059-b5b6-e89b2c1490a8", + "label": "Type of animal", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "db46c413-91e0-46d9-9b56-9eb54232761e", + "label": "Type of disqualification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "d12dd4b2-46ee-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ce6cdc61-03af-4807-bc55-17e57e263434", + "label": "All animals kept in contravention of this disqualifciation to be seized", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "269324e9-52a1-4b7c-a023-b41f57b4b811", + "label": "Directions regarding seizure", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "01431fda-56cf-4447-89b4-64b0777d791d", + "label": "Minimum period before defendant may apply to terminate order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label": "Order suspended pending appeal", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c60fb7fd-5a6d-4d18-9e3a-ba656745c95b", + "label": "Order suspended to allow alternative arrangements to be made - specify details and period of suspension", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3115", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a05f96e2-d36f-48aa-b6f4-1daefd10bca3", + "label": "Surety discharged", + "shortCode": "SURDIS", + "level": "O", + "rank": 26300, + "wordGroups": [ + { + "wordGroup": [ + "surety", + "discharged" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a3cd0c91-9d16-446a-94a7-7d3db6216587", + "label": "Surety's Name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a22f62fa-b9c5-45be-bd79-07d3ae7418f9", + "label": "Payment terms - no payment term set - defendant serving custodial sentence", + "shortCode": "PTNC", + "level": "D", + "rank": 26500, + "wordGroups": [ + { + "wordGroup": [ + "no", + "payment", + "terms" + ] + }, + { + "wordGroup": [ + "payment", + "custody" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "851e2be3-1436-47a4-824d-ca3168647f0c", + "label": "Collecting Magistrates' Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e26940b7-2534-42f2-9c44-c70072bf6ad2", + "label": "Remanded In custody with bail direction", + "shortCode": "RIB", + "level": "O", + "rank": 26600, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "conditional", + "bail", + "direction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label": "Remand basis", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": "prison", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9ecac6aa-a205-481f-b67d-e2425ad074cf", + "label": "Bail date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e200e964-628a-4284-bd4e-fab9c819f7f1", + "label": "Bail time", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "80be59c8-ffaa-4570-b40a-f3a085058208", + "label": "Bail condition reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual": null, + "reference": "bailConditionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "680e4cfd-36e0-4b22-8a30-4142bd42bf16", + "label": "BASS provider", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4046", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand conditional bail", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "16a25613-487d-4359-8fc6-9a3968ff669f", + "label": "Remanded in custody for medical reports", + "shortCode": "REMMED", + "level": "O", + "rank": 26700, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "medical" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3c16ae6f-a6cf-4adc-b483-67875213d4f2", + "label": "Remanded under Section number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a74b54d3-a8f9-49bf-b2d7-edd991d1537a", + "label": "Type of medical report required", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "febc23f3-db6f-41ae-8ed7-37920638f597", + "label": "Reason for report", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8fa194e5-6d5f-41f1-9315-14a779586727", + "label": "Medical History", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "34b5e96c-ae6c-4b38-91ee-2a04349b8871", + "label": "Offence Details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c3bcc21e-48e1-43f0-9546-4223f223e7a7", + "label": "Criminal Record", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8061b2b3-ca56-4002-a76b-6d452bbfa61f", + "label": "Home Circumstances", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "749a0db6-4186-4f82-935d-d8084f353d19", + "label": "Officer in case", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7f5235bc-673b-47a7-97d3-616d9095f606", + "label": "Probation/Probation Services Officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4ddda002-526e-4d70-9df7-eeaae75cfab7", + "label": "Pre-release bail condition: Passport - give to the court any passport held", + "shortCode": "PRBCP1", + "level": "O", + "rank": 26800, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "passport", + "court" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JL", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d85486c4-06f1-4813-859b-5495ca578bde", + "label": "Pre-release bail condition: Passport - give to HM Revenue and Customs any passport held", + "shortCode": "PRBCP2", + "level": "O", + "rank": 27000, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "passport", + "hmrc" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "label": "Community requirement: Foreign travel prohibition with excepted country for period", + "shortCode": "FTPEP", + "level": "O", + "rank": 3400, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "except", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3638606d-b2b5-40f4-ab5b-453a51391dcb", + "label": "Period of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "periodOfProhibition", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", + "label": "Country allowed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "countryAllowed", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "rollUpPrompts": false, + "publishedForNows": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bb0a2862-a565-46aa-96ed-1e6f972949d0", + "label": "Pre-release bail condition: Passport - give to Police Station", + "shortCode": "PRBCP3", + "level": "O", + "rank": 27100, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "passport", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label": "Police Station Name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1ebd5ca1-866d-43a0-ad9a-464e8a228235", + "label": "Pre-release bail condition: Passport - surrender to Police Station during football control period", + "shortCode": "PRBCP4", + "level": "O", + "rank": 27200, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "football", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label": "Police Station Name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "279fd36e-17c5-42b2-b56b-a6ab27b9b592", + "label": "Pre-release bail condition: Passport - give to the court any identity card held which could be used as a travel document within the European Economic Area", + "shortCode": "PRBCP5", + "level": "O", + "rank": 27300, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "travel", + "document", + "European", + "court" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JL", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", + "label": "Pre-release bail condition: Passport - give to HM Revenue and Customs any identity card held which could be used as a travel document within the European Economic Area", + "shortCode": "PRBCP6", + "level": "O", + "rank": 27400, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "travel", + "document", + "European", + "hmrc" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e5864697-640a-47be-9289-9e6205bbe579", + "label": "Pre-release bail condition: Passport - give to police station any identity card held which could be used as a travel document within the European Economic Area", + "shortCode": "PRBCP7", + "level": "O", + "rank": 27500, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "travel", + "document", + "European", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label": "Police Station Name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", + "label": "Pre-release bail condition: Passport - surrender identity card to police station during football control period", + "shortCode": "PRBCP8", + "level": "O", + "rank": 83800, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, + "financial": "N", + "unscheduled": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, + "wordGroups": [ + { + "wordGroup": [ + "PRBCP8" + ] + }, + { + "wordGroup": [ + "pre-release", + "travel", + "document", + "European", + "police", + "football" + ] + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Pre-release bail conditions", + "qualifier": "JM", + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "resultTextTemplate": "Passport - surrender identity card to {policeStationName} police station during football control period", + "terminatesOffenceProceedings": false, + "prompts": [ + { + "id": "b87444ea-3dd6-4cf6-83ae-d4eb83821185", + "label": "Police Station Name", + "resultPromptRule": "mandatory", + "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, + "userGroups": [], + "courtExtract": "Y", + "financial": "N", + "jurisdiction": "B", + "min": "1", + "max": "70", + "reference": "policeStationName" + } + ] + }, + { + "id": "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", + "label": "Pre-release bail condition: Surety - find a surety", + "shortCode": "PRBCS1", + "level": "O", + "rank": 27700, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "surety" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", + "label": "In the sum of", + "welshLabel": "Y swm o", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JU", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", + "label": "Pre-release bail condition: Surety - find a continuous surety", + "shortCode": "PRBCS2", + "level": "O", + "rank": 27800, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "surety", + "conditional" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", + "label": "In the sum of", + "welshLabel": "Y swm o", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JV", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4558f9b2-47f8-4430-a0f8-684df5d55761", + "label": "Pre-release bail condition: Surety - find sureties", + "shortCode": "PRBCS3", + "level": "O", + "rank": 27900, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "sureties" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5139e711-b645-4b1c-af81-84f5887abdf6", + "label": "Number of sureties", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "35cbbeae-5c3a-4bd3-b4de-fba3089ca14f", + "label": "In the sum of", + "welshLabel": "Y swm o", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JW", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b9581c12-81c9-434d-8851-03d9638547fa", + "label": "Pre-release bail condition: Security - lodge with Court", + "shortCode": "PRBCSE1", + "level": "O", + "rank": 28000, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "security", + "lodge" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e18066ab-1dd0-4bee-a43d-30417de4c3c3", + "label": "Specify what is to be lodged", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "364d3065-0699-4df1-a68f-a69c429d0867", + "label": "Community requirement: Foreign travel prohibition with excepted country for dates", + "shortCode": "FTPED", + "level": "O", + "rank": 3500, + "wordGroups": [ + { + "wordGroup": [ + "foreign", + "travel", + "except", + "dates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "068ea2ce-a15b-4cf6-aa4f-74ebc0c6d00d", + "label": "Country allowed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "countryAllowed", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "464b2a25-dfe4-42b2-8cc7-29a66edf9743", + "label": "Dates of prohibition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "datesOfProhibition", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3147", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "rollUpPrompts": false, + "publishedForNows": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b922e6bd-70a4-4b28-b583-165179af6162", + "label": "Pre-release bail condition: Security - pay a deposit to Court", + "shortCode": "PRBCSE2", + "level": "O", + "rank": 28100, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "security", + "deposit" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "04d4075d-b306-44f4-9200-db9ad9577ea2", + "label": "Amount", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", + "label": "Pre-release bail condition: Other - give the court a telephone number and tell the court immediately if the number changes or you can no longer be contacted on that number", + "shortCode": "PRBCT", + "level": "O", + "rank": 28200, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "telephone", + "number" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "68972040-55eb-42c8-aac6-975f88d64511", + "label": "Date by which must give telephone number", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JG", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c51e3522-5363-4af0-b5af-97a5f9eb5462", + "label": "Pre-release bail condition: Other", + "shortCode": "PRBCO", + "level": "O", + "rank": 28300, + "wordGroups": [ + { + "wordGroup": [ + "pre-release", + "other" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad5ad2de-35e5-4395-b5e7-913d0fc09349", + "label": "Specify", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Pre-release bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "525c4660-9a0b-4a86-80fc-0efce539d6a5", + "label": "Bail condition: Assessments/Reports - undergo an assessment for dependency on Class A drugs and participate in any follow-up assessment, assistance or treatment considered appropriate", + "shortCode": "PORAR1", + "level": "O", + "rank": 28400, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "assessment", + "Drug" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2fc5fe29-28f8-47dc-86f9-7b3221a71975", + "label": "Specify qualified person to conduct assessments/reports", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "specifyQualifiedPersonToConductAssessmentsreports", + "courtExtract": "Y", + "durationSequence": null, + "hidden": true + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "GT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e073f3ba-2585-4c0d-8c31-e51a1662d143", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Bail condition: Assessments/Reports - participate in any assistance or treatment considered appropriate for misuse of class A drugs", + "shortCode": "PORAR2", + "level": "O", + "rank": 28500, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "treatment", + "Drug" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7656ce22-8bee-497c-8e27-c7718a743652", + "label": "Specify qualified person who will decide treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "specifyQualifiedPersonWhowillDecideTreatment", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "GT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1aa6a828-fedb-43bd-89e8-bc74586d5e85", + "label": "Bail condition: Assessments/Reports - provide pre-sentence drug test samples", + "shortCode": "PORAR3", + "level": "O", + "rank": 28600, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "Drug", + "test" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2e4bf9d6-5184-45bf-bd33-b4e2d1430e2f", + "label": "Date to provide samples by", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a124724e-2348-41fc-a4b6-6f22c8ef421e", + "label": "Specify details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "GT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "136725da-5b0a-43d3-adac-54f916bcf2bb", + "label": "Bail condition: Assessments/Reports - report to the local probation office for a report to be made", + "shortCode": "PORAR4", + "level": "O", + "rank": 28700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "probation", + "office", + "report" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f4da7a9c-a52e-4fbc-a21b-ce1a1d7c6b5d", + "label": "Probation office", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d351e768-f0f8-4e14-a042-f8306981b1c8", + "label": "Time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "55be2d17-7b95-4cc9-b8f0-290f84e66d85", + "label": "Date", + "welshLabel": "Dyddiad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "919ca489-f98d-4776-8b44-2e42958247d4", + "label": "Provider of probation services", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JZ", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", + "label": "Bail condition: Assessments/Reports - report to the local office of a provider of probation services for a report to be made", + "shortCode": "PORAR5", + "level": "O", + "rank": 28800, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "probation", + "provider", + "report" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JZ", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Bail condition: Assessments/Reports - make available for reports to be prepared", + "shortCode": "PORAR6", + "level": "O", + "rank": 28900, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "available", + "report" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JZ", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", + "label": "Bail condition: Assessments/Reports - report to a youth justice team for a report to be made", + "shortCode": "PORAR7", + "level": "O", + "rank": 29000, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "report", + "yjt" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ae2e98c1-1b4b-4b19-8f60-22bd56aaed72", + "label": "Youth Justice Team Location", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d351e768-f0f8-4e14-a042-f8306981b1c8", + "label": "Time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "55be2d17-7b95-4cc9-b8f0-290f84e66d85", + "label": "Date", + "welshLabel": "Dyddiad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RE", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "label": "Community requirement: Alcohol treatment", + "shortCode": "ATR", + "level": "O", + "rank": 3600, + "wordGroups": [ + { + "wordGroup": [ + "Alcohol", + "treatment", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3110", + "adjournment": false, + "convicted": true, + "qualifier": "BT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", + "label": "Bail condition: Computer - not to use any device capable of accessing the internet unless it can retain and display a history of internet use and it is made available to police for inspection upon request", + "shortCode": "PORCO1", + "level": "O", + "rank": 29100, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "device", + "internet", + "history" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RF", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6889288e-5e4a-4523-be2c-cc993a00af29", + "label": "Bail condition: Computer - not to delete any history of computer use", + "shortCode": "PORCO2", + "level": "O", + "rank": 29200, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "delete", + "history" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RG", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0649851f-01f8-48fb-928d-6fe100042b2a", + "label": "Bail condition: Computer - not to use", + "shortCode": "PORCO3", + "level": "O", + "rank": 29300, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "computer", + "not", + "use" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b862676c-a945-4fa4-b0fc-551a2d043593", + "label": "Specify device / service", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4f585f53-f68c-41f1-9734-e88aa1e91f14", + "label": "Specify restriction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", + "label": "Bail condition: Computer - not to possess any device capable of storing digital images unless you make it available on request", + "shortCode": "PORCO4", + "level": "O", + "rank": 29400, + "wordGroups": [ + { + "wordGroup": [ + "bail. device", + "images" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", + "label": "Bail condition: Curfew", + "shortCode": "PORCU1", + "level": "O", + "rank": 29500, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "Curfew" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JD", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "03edddce-c188-4b38-9832-988d9d1ee802", + "label": "Bail condition: Curfew with electronic monitoring - first notification", + "shortCode": "PORCU2", + "level": "O", + "rank": 29600, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "Electronic", + "Monitoring", + "first" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5c02ff4c-6a33-4089-8c9e-f120a688b018", + "label": "Bail condition: Curfew with electronic monitoring - variation notification", + "shortCode": "PORCU2V", + "level": "O", + "rank": 29700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "Electronic", + "Monitoring", + "variation" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b271650b-0203-4d68-bcef-307038acfdf0", + "label": "Date of original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "afc73f23-3308-40a1-ae8e-c00a8f282699", + "label": "Original case number if different", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d45c8150-3095-4cb3-a55e-b4fd094af560", + "label": "Bail condition: Curfew with electronic monitoring - additional notification", + "shortCode": "PORCU2A", + "level": "O", + "rank": 29800, + "wordGroups": [ + { + "wordGroup": [ + "bail electronic", + "Monitoring", + "Additional" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b271650b-0203-4d68-bcef-307038acfdf0", + "label": "Date of original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "afc73f23-3308-40a1-ae8e-c00a8f282699", + "label": "Original case number if different", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "922386e1-bdc2-403e-8902-af1da14e1fd8", + "label": "Bail condition: Curfew with electronic monitoring - continuation notification", + "shortCode": "PORCU2C", + "level": "O", + "rank": 29900, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "Electronic", + "Monitoring", + "continuation" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d34b643e-74d5-4288-a4b9-bce14d0069d5", + "label": "Bail condition: Curfew - and present him/herself to a police officer who asks to see them between these times", + "shortCode": "PORCU3", + "level": "O", + "rank": 30000, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "present", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3dc08eca-ae74-432e-909e-1060d6a7b098", + "label": "Frequency", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JE", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "label": "Community requirement: Alcohol treatment non-residential", + "shortCode": "ATRNR", + "level": "O", + "rank": 3700, + "wordGroups": [ + { + "wordGroup": [ + "Alcohol", + "treatment", + "Non-residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "62882318-42b3-4bf9-8bc5-e724aeaaa19a", + "label": "Treatment institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6aaf3645-0806-4917-ada5-b019c6a606c5", + "label": "Treatment intervals", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3110", + "adjournment": false, + "convicted": true, + "qualifier": "BS", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fb9b273e-06c3-4a4a-940c-3c053c559abe", + "label": "Bail condition: Exclusion - not drive a motor vehicle on any road or in any other public place", + "shortCode": "PORE1", + "level": "O", + "rank": 30100, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "drive" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JF", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "481547e6-9099-475e-8028-2bce2c52ff5f", + "label": "Bail condition: Exclusion - not to associate with", + "shortCode": "PORE2", + "level": "O", + "rank": 30200, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "associate" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", + "label": "Names", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JK", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", + "label": "Bail condition: Exclusion - not to contact directly or indirectly", + "shortCode": "PORE3", + "level": "O", + "rank": 30300, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "contact" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e62b7e01-2416-49b5-bb46-c5aa7abf78a3", + "label": "Names", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JK", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dfa19118-e944-43f4-93b2-2ed49df5553f", + "label": "Bail condition: Exclusion - not to enter a place except to attend court or pre-arranged appointment with solicitor", + "shortCode": "PORE4", + "level": "O", + "rank": 30400, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "enter", + "court", + "solicitor" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1559b30a-b931-4e3d-86e9-88ab8b116a81", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JO", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c1d490ed-1754-43b8-a485-fdab1a25f8cb", + "label": "Bail condition: Exclusion - not to enter a place", + "shortCode": "PORE5", + "level": "O", + "rank": 30500, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "enter" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1559b30a-b931-4e3d-86e9-88ab8b116a81", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JO", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "90146942-b1b9-4a2e-af2b-141f50d45e5c", + "label": "Bail condition: Exclusion - not go to any public house, licensed club or off licence", + "shortCode": "PORE6", + "level": "O", + "rank": 30600, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "public", + "house" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JN", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9da5909e-d715-4f79-a1b8-34780c57acf1", + "label": "Bail condition: Exclusion - not go within a radius", + "shortCode": "PORE7", + "level": "O", + "rank": 30700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "radius" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ef055240-4c06-45f3-961a-1344ebd56ea5", + "label": "Radius", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JO", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d709a455-02cc-40d9-b3d2-e4194dc46792", + "label": "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer", + "shortCode": "PORE8", + "level": "O", + "rank": 30800, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "radius", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ce3ef725-44bf-480c-954a-a2f5cbf75daf", + "label": "Radius", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JP", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", + "label": "Bail condition: Exclusion - not go within a radius unless accompanied by a police officer. One visit only", + "shortCode": "PORE9", + "level": "O", + "rank": 30900, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "radius", + "police", + "visit" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ce3ef725-44bf-480c-954a-a2f5cbf75daf", + "label": "Radius", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4637e296-9fff-42fd-8d91-0556ff8bee7a", + "label": "Place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JP", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "99586f43-5b18-45da-87f7-1764ad149985", + "label": "Community requirement: Alcohol treatment residential", + "shortCode": "ATRR", + "level": "O", + "rank": 3800, + "wordGroups": [ + { + "wordGroup": [ + "Alcohol", + "treatment", + "Residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "62882318-42b3-4bf9-8bc5-e724aeaaa19a", + "label": "Treatment institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f092fe58-2297-4d10-818a-8b303692ac39", + "label": "Under direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3110", + "adjournment": false, + "convicted": true, + "qualifier": "BM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "74046e6e-ecb8-4f1f-b210-c5731f080913", + "label": "Restraining order until further order", + "shortCode": "RESTRAOF", + "level": "O", + "rank": 1000, + "wordGroups": [ + { + "wordGroup": [ + "Restraining", + "Order", + "Further" + ] + }, + { + "wordGroup": [ + "RESTRAOF" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "3054909b-15b6-499f-b44f-67b2b1215c76", + "label": "Protected person's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "ADDRESS", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "abc9bb61-cb5b-4cf7-be24-8866bcd2fc69", + "label": "Protected person", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "8df0ec7e-5985-4998-af1a-5da293d9cb3c", + "label": "Order details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47337f1c-e343-4093-884f-035ba96c4db0", + "label": "Conviction / acquittal", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8dc70c95-fb09-4842-9138-bc579fceb605", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ea26f773-0a91-4526-b4ad-84d07b5bf940", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3047", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", + "label": "Bail condition: Exclusion - not to leave", + "shortCode": "PORE11", + "level": "O", + "rank": 31100, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "leave" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", + "label": "Place or area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", + "label": "Bail condition: Exclusion - not to go more than a specified radius from a specified place", + "shortCode": "PORE12", + "level": "O", + "rank": 31200, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "radius", + "place" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ce3ef725-44bf-480c-954a-a2f5cbf75daf", + "label": "Radius", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d25eee23-bfc8-462a-a29c-b2e4a9872a7c", + "label": "Place or area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "075cc0f1-eb22-407b-a958-bfbb80cf50e2", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4c79ea50-6e14-4c47-8836-c0d0f647e45a", + "label": "Bail condition: Exclusion - the exclusion condition to be electronically monitored with a GPS tag", + "shortCode": "PORE13", + "level": "O", + "rank": 31300, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "exclusion", + "GPS" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "834ed20a-d7d8-419b-b72d-61b30db36560", + "label": "Bail condition: Other", + "shortCode": "PORO1", + "level": "O", + "rank": 31400, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "other" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9be3658b-f425-4673-8c17-b2407badb8c2", + "label": "Specify post-release bail condition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "46051d94-0e60-4010-b86d-cf65e1a464d8", + "label": "Bail condition: Other - to keep mobile phone switched on, fully charged and on your person 24 hours a day", + "shortCode": "PORO2", + "level": "O", + "rank": 31500, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "mobile", + "phone" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0163061b-ac29-4d49-9491-13168ac60f82", + "label": "Mobile number", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RH", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", + "label": "Bail condition: Other - report to police station", + "shortCode": "PORO3", + "level": "O", + "rank": 31600, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "report", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b9bc8c23-dc0b-433d-b9e4-4b957fd1b7d4", + "label": "Police Station Name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd68ee58-86a8-471a-bb8d-f4da3b07076d", + "label": "Time 1", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "Time 2", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e834e96c-f300-4da9-b781-51d38204deb5", + "label": "Reporting days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JQ", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", + "label": "Bail condition: Other - see solicitor", + "shortCode": "PORO4", + "level": "O", + "rank": 31700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "see", + "solicitor" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", + "label": "Bail condition: Other - see barrister", + "shortCode": "PORO5", + "level": "O", + "rank": 31800, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "see", + "barrister" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", + "label": "Bail condition: Residence - live, and sleep each night, at bail hostel", + "shortCode": "PORR1", + "level": "O", + "rank": 31900, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "live", + "sleep", + "hostel" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "16816060-7454-460c-a177-c8da502e18ab", + "label": "Hostel name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JR", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a50ad03e-d299-4da7-874c-0f233d7d503d", + "label": "Bail condition: Residence - live, and sleep each night, at bail hostel or at any other place where you may be told to go by specified person", + "shortCode": "PORR2", + "level": "O", + "rank": 32000, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "live", + "sleep", + "hostel", + "other" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "16816060-7454-460c-a177-c8da502e18ab", + "label": "Hostel name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "713e61b8-4899-408f-b6e4-77cc33abbb1a", + "label": "Supervisor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JS", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "label": "Community requirement: Attendance centre", + "shortCode": "ACR", + "level": "O", + "rank": 3900, + "wordGroups": [ + { + "wordGroup": [ + "attendance", + "centre", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6724800d-3f2d-4503-a078-3a50497a3a20", + "label": "Number of hours", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Hours", + "wordGroup": [ + "Hours" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "28e2f7e0-8886-4cf6-a828-776849f8d3d4", + "label": "Additional / concurrent to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3111", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c18dd89d-e057-42aa-b071-0a91226da3bf", + "label": "Bail condition: Residence - live and sleep each night at address", + "shortCode": "PORR3", + "level": "O", + "rank": 32100, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "live", + "sleep" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", + "label": "Address", + "welshLabel": "Cyfeiriad", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RB", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "795079ed-4b5a-4750-b077-d653180d43ae", + "label": "Bail condition: Residence - not to live in the same household", + "shortCode": "PORR4", + "level": "O", + "rank": 32200, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "live" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4f585f53-f68c-41f1-9734-e88aa1e91f14", + "label": "Specify restriction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "HC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "71efa12c-a68e-4537-ac7d-27ebf91557a6", + "label": "Bail condition: Residence BASS - live and sleep each night at specified address and comply with the conditions of BASS", + "shortCode": "PORR5", + "level": "O", + "rank": 32300, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "live", + "sleep", + "bass" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0dbf39c0-02e9-498f-87cd-c1221270c535", + "label": "BASS address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "RB", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "36951b36-de01-45bc-91a7-1c68f5989ed5", + "label": "Bail condition: Residence BASS - take part in additional mandatory support sessions (more than the minimum of one session per week)", + "shortCode": "PORR6", + "level": "O", + "rank": 32400, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "support", + "sessions" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "91141263-7f27-494f-95e9-04a113952974", + "label": "Bail condition: Surety - find continuous surety / sureties", + "shortCode": "PORS", + "level": "O", + "rank": 32500, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "continuous", + "surety" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5139e711-b645-4b1c-af81-84f5887abdf6", + "label": "Number of sureties", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "088ef869-d7f9-4184-b624-6c1e9fab8bee", + "label": "In the sum of", + "welshLabel": "Y swm o", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JX", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", + "label": "Bail condition: Travel - not to apply for international travel documents or be in possession of any", + "shortCode": "PORT1", + "level": "O", + "rank": 32600, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "travel", + "documents" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", + "label": "Bail condition: Travel - not to leave England and Wales", + "shortCode": "PORT2", + "level": "O", + "rank": 32700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "not", + "leave", + "England", + "Wales" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "JY", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bail conditions", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fbed768b-ee95-4434-87c8-e81cbc8d24c8", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Next hearing in Crown Court", + "shortCode": "NHCCS", + "level": "O", + "rank": 500, + "wordGroups": [ + { + "wordGroup": [ + "NHCCS" + ] + }, + { + "wordGroup": [ + "adjournment", + "Crown" + ] + }, + { + "wordGroup": [ + "next", + "hearing", + "Crown" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": "Hours", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": "Minutes", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dfac671c-5b85-42a1-bb66-9aeee388a08d", + "label": "Time of hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTIME", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f507153-6dc9-4ec0-94db-c821eff333f1", + "label": "Courtroom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HCROOM", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7746831a-d5dd-4fa8-ac13-528573948c8a", + "label": "Courthouse name", + "welshLabel": "Enw’r adeilad llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HCHOUSE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9403f0d7-90b5-4377-84b4-f06a77811362", + "label": "Remand Status", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "c82897b8-7e25-4b5d-9cd3-dbf3e1cb7c0c", + "qual": null, + "reference": "remandStatus", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "42962373-587c-4324-9ae6-7c99171d1c69", + "label": "Week commencing", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HDATE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7e72e671-295a-4e56-a419-2a59a14863b0", + "label": "Fixed date", + "welshLabel": null, + "resultPromptRule": "optional", + "type": null, + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": "fixedDate", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Next hearing", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3a529001-2f43-45ba-a0a8-d3ced7e9e7ad", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Remanded on conditional bail", + "shortCode": "RC", + "reference": "", + "level": "O", + "rank": 32800, + "wordGroups": [ + { + "wordGroup": [ + "remanded", + "conditional", + "bail" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label": "Is the defendant excused attendance?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantExcusedAttendance", + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "80be59c8-ffaa-4570-b40a-f3a085058208", + "label": "Bail condition reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual": null, + "reference": "bailConditionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dec5104c-3342-4544-b287-31ea969e0f15", + "label": "BASS provider", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bassProvider", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4027", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand conditional bail", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "ruleType": "optional" + } + ] + }, + { + "id": "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", + "label": "Remanded on unconditional bail", + "shortCode": "RU", + "level": "O", + "rank": 33000, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "unconditional" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label": "Is the defendant excused attendance?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantExcusedAttendance", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4047", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand unconditional bail", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "label": "Community requirement: Alcohol abstinence", + "shortCode": "AAR", + "level": "O", + "rank": 4000, + "wordGroups": [ + { + "wordGroup": [ + "Alcohol", + "abstinence", + "Requirement" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3146", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d0a369c9-5a28-40ec-99cb-da7943550b18", + "label": "Remanded in custody", + "shortCode": "RI", + "level": "O", + "rank": 33300, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "custody" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "21ecdc07-7397-4eac-9c26-e66dfeb32d01", + "label": "TV link at next hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "tvLinkAtNextHearing", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "343de039-f33b-4770-b61c-4d6db4ae369c", + "label": "TV link pre-hearing conference time", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "tVLinkPrehearingConferenceTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label": "Remand basis", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual": null, + "reference": "remandBasis", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "7b2e6219-ddcb-4afa-8615-8de978e60af1", + "label": "Bail exception", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "10a769e8-1b1c-430d-844b-8948942cf353", + "qual": null, + "reference": "bailException", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", + "label": "Bail exception reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "c0fb2ca5-7702-4f01-b344-33029cfdcd47", + "qual": null, + "reference": "bailExceptionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4028", + "drivingTestStipulation": 1, + "pointsDisqualificationCode": "TT99", + "dvlaCode": "C", + "secondaryCJSCodes": [ + { + "cjsCode": "1234", + "text": "SecondaryCjsCode text1" + }, + { + "cjsCode": "5678", + "text": "SecondaryCjsCode text2" + } + ], + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "C", + "resultDefinitionGroup": "Remand in custody", + "policeSubjectLineTitle": "Final Sentence", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6af22d8d-6157-460e-b641-e6db90d15289", + "label": "Remanded in custody pending receipt of Prosecutor's written notice of appeal", + "shortCode": "RIBA2", + "level": "O", + "rank": 33500, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "appeal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e1b8b750-af91-466a-acf8-c7f6685d3b26", + "label": "Time when oral notice of appeal was given", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "timeOfOralNotice", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8b0bf6d4-e48a-425c-bc0d-fed8948010e5", + "label": "Custodian name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "custodianName", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand appeal", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7a0932f5-8264-412e-a83c-2b6d1dce1506", + "label": "Prosecutor's notice of appeal received. Remanded in custody", + "shortCode": "RIBA48", + "level": "O", + "rank": 33600, + "wordGroups": [ + { + "wordGroup": [ + "remand", + "custody", + "appeal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "66f338f2-6c3b-4511-b224-97cbc1eab1c0", + "label": "Time when written notice of appeal was received", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "timeofWrtittenNotice", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "de91870f-f1e3-4dcd-a8ee-fa409ee34beb", + "label": "Crown Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "crownCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6730aae5-9e6b-45e6-8a2e-0e06cc70c7ca", + "label": "Date otherwise bailed to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4049", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "C", + "resultDefinitionGroup": "Remand appeal", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "074124d5-b07a-4b73-8b9a-792e8462138a", + "label": "Prosecutor's bail appeal withdrawn. (D in local custody). Release in accordance with earlier decision", + "shortCode": "RIBAWL", + "level": "O", + "rank": 33700, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "appeal", + "wthdrawn" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7af5471c-34c1-4176-b595-8f9a796ac455", + "label": "Basis of appeal being withdrawn", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand appeal", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6511006f-b40d-4fcb-8372-bc38fde69b64", + "label": "Remitted to youth court for trial", + "shortCode": "REMYCT", + "level": "O", + "rank": 33800, + "wordGroups": [ + { + "wordGroup": [ + "remit", + "youth", + "trial" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "44e3bc06-0c07-422a-84a1-bcca57f898f4", + "label": "Youth Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7f2d58f4-ca3d-4059-9df5-19f7cb744676", + "label": "Remitted to youth court for sentence", + "shortCode": "REMYCS", + "level": "O", + "rank": 33900, + "wordGroups": [ + { + "wordGroup": [ + "remit", + "youth", + "sentence" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "44e3bc06-0c07-422a-84a1-bcca57f898f4", + "label": "Youth Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fcbf777d-1a73-47e7-ab9b-7c51091a022c", + "label": "Direction made under Section 45 of the Youth Justice and Criminal Evidence Act 1999", + "shortCode": "D45", + "level": "O", + "rank": 34000, + "wordGroups": [ + { + "wordGroup": [ + "direction", + "45", + "youth" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "03983f51-f937-4dd8-9656-276b1ca86785", + "label": "Restricting publicity in respect of youth - Specify name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label": "Further details", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4510", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", + "label": "Direction under Section 45A of the Youth Justice and Criminal Evidence Act 1999", + "shortCode": "D45A", + "level": "O", + "rank": 34200, + "wordGroups": [ + { + "wordGroup": [ + "direction", + "45a", + "youth" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "03983f51-f937-4dd8-9656-276b1ca86785", + "label": "Restricting publicity in respect of youth - Specify name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label": "Further details", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4510", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "89e3c24b-acbf-42fb-9eee-169b83423035", + "label": "Direction made under Section 46 of the Youth Justice and Criminal Evidence Act 1999", + "shortCode": "D46", + "level": "O", + "rank": 34300, + "wordGroups": [ + { + "wordGroup": [ + "direction", + "46", + "youth" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "27247b35-5013-41cb-9b24-26d38332e547", + "label": "Restricting publicity in respect of adult witness - specify name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label": "Further details", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4510", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c265d589-fcc0-451b-be43-7856e32524ba", + "label": "Direction made under Section 39 of the Children and Young Persons Act 1933", + "shortCode": "D39", + "level": "O", + "rank": 34400, + "wordGroups": [ + { + "wordGroup": [ + "direction", + "39", + "children" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ff5f8083-5413-467f-b359-9abfb49ecbb2", + "label": "State if youth is defendant, witness or victim or combination of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9bec1ac4-f6b2-4ef7-9649-2249300cf59c", + "label": "Further details", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4510", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d683f73c-488e-4d8e-a685-d37049c2a3e5", + "label": "Community requirement: Alcohol abstinence with alcohol limit", + "shortCode": "AARAL", + "level": "O", + "rank": 4100, + "wordGroups": [ + { + "wordGroup": [ + "Alcohol", + "abstinence", + "limit" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2d340f59-2b74-437b-8d7d-6b316613021c", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fac82e4b-7c37-4a46-a689-3f1defe2474a", + "label": "Alcohol limit", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3146", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "393c5be8-dadb-484b-ab39-0f1eb57aeae5", + "label": "Order made under Section 11 of the Contempt of Court Act 1981 until date", + "shortCode": "D11", + "level": "O", + "rank": 34500, + "wordGroups": [ + { + "wordGroup": [ + "11", + "contempt", + "until" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a73b3f21-1978-45fc-b413-0299c60e07ad", + "label": "Details of the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3ea2cb5c-397e-4dd3-8328-d375135f3191", + "label": "Date of expiry", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", + "label": "Purpose of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9647428f-0946-4a09-aec1-7bdfcd324ac6", + "label": "Order made under Section 11 of the Contempt of Court Act 1981 until further order", + "shortCode": "D11FO", + "level": "O", + "rank": 34600, + "wordGroups": [ + { + "wordGroup": [ + "11", + "contempt", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a73b3f21-1978-45fc-b413-0299c60e07ad", + "label": "Details of the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ea6c0614-247a-42f1-ab9a-77da9c66fd9b", + "label": "Purpose of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "21271525-76f4-4134-9c93-1be012a574c8", + "label": "Order made under Section 4 of the Contempt of Court Act 1981", + "shortCode": "D4", + "level": "O", + "rank": 34700, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "4", + "contempt" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a73b3f21-1978-45fc-b413-0299c60e07ad", + "label": "Details of the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "318c9eb2-cf3c-4592-a353-1b2166c15f81", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4510", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d023e3a7-33ef-45b4-a19b-5137afecbf1f", + "label": "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until date - derogatory assertions", + "shortCode": "D58", + "level": "O", + "rank": 34800, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "58", + "until" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", + "label": "Assertions", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", + "label": "Witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3ea2cb5c-397e-4dd3-8328-d375135f3191", + "label": "Date of expiry", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2c18aff1-b535-47b6-8415-8841e85eac49", + "label": "Order made under Section 58 of the Criminal Procedure and Investigations Act 1996 until further order - derogatory assertions", + "shortCode": "D58FO", + "level": "O", + "rank": 34900, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "58", + "Further" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "40e3bf1c-b4f9-4524-b2e9-325f80695dd6", + "label": "Assertions", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a058fc23-e6f1-4a65-a6fc-1c3b22b1b76d", + "label": "Witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2e725ba6-0e29-4ffb-a5c7-31b67344c211", + "label": "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity in respect of youth", + "shortCode": "D49Y", + "level": "O", + "rank": 35100, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "49", + "publicity", + "youth" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "788bb732-5467-4c0b-ba88-96a0ef8aaeb4", + "label": "Name of youth", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94084f13-fa2f-4d24-938b-0656292edd59", + "label": "Details of reporting restriction lifted", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "98366b12-b70a-4e66-b71d-a5bbd39bd595", + "label": "Order made allowing reporting", + "shortCode": "DALLOW", + "level": "O", + "rank": 35200, + "wordGroups": [ + { + "wordGroup": [ + "allow", + "reporting" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "42711aff-3d3a-4d85-8e68-f03065823422", + "label": "Details of directions allowed to be reported", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", + "label": "Direction restricting publicity revoked", + "shortCode": "DPR", + "level": "O", + "rank": 35300, + "wordGroups": [ + { + "wordGroup": [ + "publicity", + "revoked" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1a7da720-a95a-46e4-b2ee-6b8e9db430cc", + "label": "Date direction allowing publicity made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", + "label": "Excepting direction varied", + "shortCode": "DV", + "level": "O", + "rank": 35400, + "wordGroups": [ + { + "wordGroup": [ + "exception", + "direction", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "851f11ed-99d5-4d2a-96c0-227df6743250", + "label": "Date excepting direction made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6f9dd039-ba8f-4fa7-a37e-23daf4cd11d3", + "label": "Details of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "label": "Community requirement: Mental health treatment", + "shortCode": "MHTR", + "level": "O", + "rank": 4200, + "wordGroups": [ + { + "wordGroup": [ + "Mental", + "Health", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HG", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", + "label": "Excepting direction revoked", + "shortCode": "DR", + "level": "O", + "rank": 35500, + "wordGroups": [ + { + "wordGroup": [ + "exception", + "direction", + "revoked" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "851f11ed-99d5-4d2a-96c0-227df6743250", + "label": "Date excepting direction made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b3035ace-15d4-44ca-9d79-c83a57dc0e30", + "label": "Excepting direction made dispensing with publicity restrictions", + "shortCode": "DP", + "level": "O", + "rank": 35600, + "wordGroups": [ + { + "wordGroup": [ + "dispense", + "publicity" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5b4ddad9-db87-43b4-a127-cc8312a7d56c", + "label": "Date publicity restriction made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7d61ec4e-f75a-489d-9950-5584e354659c", + "label": "Extent of dispensation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "84222bcb-05ac-4c67-82df-cc8742a850d1", + "label": "The Court directs that information relating to the complainant may be published in connection with the summary trial of the case", + "shortCode": "DST", + "level": "O", + "rank": 35700, + "wordGroups": [ + { + "wordGroup": [ + "complainant", + "published", + "trial" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1ffa4f8d-2e22-4226-8f29-fe09b0ef00f6", + "label": "Complainant information", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "07d8fab1-366d-43c5-bdb4-223f8c1229f5", + "label": "Complainant's anonymity protected by virtue of Section 1 of the Sexual Offences Amendment Act 1992", + "shortCode": "DSOA", + "level": "O", + "rank": 35800, + "wordGroups": [ + { + "wordGroup": [ + "anonymity", + "protrected", + "sexual" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2e83102c-a262-4bb3-a48d-c2107a094a66", + "label": "Order revoked", + "shortCode": "OREV", + "level": "O", + "rank": 35900, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "revoked" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7e8ec1d3-e8fb-4116-9e37-842120700c48", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "917a6802-ef7e-4449-8df9-6f9a49fcbe91", + "label": "Order revoked", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "50f095ad-e289-433a-817a-6d79c567a5fa", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0eba630e-a486-439f-8d76-b49b1363067c", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "94fbf012-b9a6-4b3c-8743-0803aff0e25c", + "label": "Date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1029", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "14f22747-685e-4bd9-91e7-fb372d8c3b72", + "label": "Order to continue", + "shortCode": "OTC", + "level": "O", + "rank": 36000, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "continue" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1040", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c98cb51f-8639-49c1-91f0-a7e820c34355", + "label": "Warrant for arrest without bail", + "shortCode": "WOFN", + "level": "O", + "rank": 36100, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "without", + "bail" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label": "Grounds for warrant", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label": "Process server name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4576", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b4f7c223-b9d1-4409-b6d3-039f66eb9645", + "label": "Warrant for arrest with bail (dated)", + "shortCode": "WOFD", + "level": "O", + "rank": 36300, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "with", + "bail", + "dated" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label": "Grounds for warrant", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label": "Process server name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "507c4249-d897-43bb-b64d-5c156ef6ba85", + "label": "Bail to be allowed on these conditions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4575", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "optional" + } + ] + }, + { + "id": "671df737-9901-4fa5-b245-aeff0c4c7495", + "label": "Warrant for arrest with bail (undated)", + "shortCode": "WOFU", + "level": "O", + "rank": 36400, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "with", + "bail", + "undated" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label": "Grounds for warrant", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8ef9613e-f19c-11e8-904a-f2801f1b9fd1", + "label": "Bail allowed on conditions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label": "Process server name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4577", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c8c962df-e28c-4ea8-8496-721badb77b7b", + "label": "Warrant for arrest redated", + "shortCode": "WOFR", + "level": "O", + "rank": 36500, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "redated" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4575", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "optional" + } + ] + }, + { + "id": "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "label": "Community requirement: Mental health treatment residential patient", + "shortCode": "MHTRR", + "level": "O", + "rank": 4300, + "wordGroups": [ + { + "wordGroup": [ + "Mental", + "Health", + "Non-residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fb580537-9d36-4139-811b-77af09547b0d", + "label": "Care home / Hospital", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HE", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "73242763-44db-4d57-a855-44a6cf4f6226", + "label": "Warrant for arrest without bail executed on day of issue", + "shortCode": "WOFEX", + "level": "O", + "rank": 36600, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "issue" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4630968a-0e3f-42a6-bde0-55a0c4f2e92e", + "label": "Grounds for warrant", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "423e0d8d-9de6-4790-b5bd-d52c2501d444", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b9d81454-a565-4a86-bcf9-e7c58bb89dba", + "label": "Anti-social behaviour order varied", + "shortCode": "ASBOV", + "level": "O", + "rank": 36700, + "wordGroups": [ + { + "wordGroup": [ + "asbo", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7e8ec1d3-e8fb-4116-9e37-842120700c48", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3f441b7c-e9ac-4f1c-b731-babfd2fa94d9", + "label": "Anti-social order type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2da599de-da03-492e-b66f-e7aad32fcfa5", + "label": "Terms of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c491a47d-b167-467b-b2f4-f9e567bd4da0", + "label": "Start of date of variation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "90d8268d-cc6a-4a09-bdb3-ddf8ea8ef2f9", + "label": "Variation of bail conditions", + "shortCode": "RCBV", + "level": "O", + "rank": 36800, + "wordGroups": [ + { + "wordGroup": [ + "bail", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "77eb185c-03e7-4971-8dcc-77089d048731", + "label": "Date bail previously granted", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "21541638-82dd-4a9f-a05c-67589dc8dce9", + "label": "Court which previously granted bail", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label": "Is the defendant excused attendance?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "80be59c8-ffaa-4570-b40a-f3a085058208", + "label": "Bail condition reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual": null, + "reference": "bailConditionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f7995d94-bf13-41df-a599-79ead4123aad", + "label": "BASS provider", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4574", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Remand conditional bail", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bb90e801-0066-4bdf-85e6-8d64bc683f0c", + "label": "Reporting restriction continues", + "shortCode": "REPC", + "level": "O", + "rank": 36900, + "wordGroups": [ + { + "wordGroup": [ + "reporting", + "restrictions", + "continue" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "18f255dd-103f-494f-81d0-82db5b5ee7bd", + "label": "Date restriction imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Press", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "961962dd-70c3-463c-89d9-a2b2a393b165", + "label": "Remitted from Crown Court to magistrates' court for trial", + "shortCode": "REMITMC", + "level": "O", + "rank": 37000, + "wordGroups": [ + { + "wordGroup": [ + "remittal", + "trial" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b09fdfef-bde4-4804-8731-f1c2632fbfcc", + "label": "Local Justice Area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8542b0d9-27f0-4df3-a4a3-0ac0a85c33ad", + "label": "Notice to magistrates' court that summary offence dismissed", + "shortCode": "SUMD", + "level": "O", + "rank": 37100, + "wordGroups": [ + { + "wordGroup": [ + "summary", + "Dismissed", + "magistrates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b09fdfef-bde4-4804-8731-f1c2632fbfcc", + "label": "Local Justice Area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "306c1775-ec96-4e1d-b35e-bcea099ce10a", + "label": "Notice to magistrates' court that Crown Court powers regarding summary offence have ceased", + "shortCode": "SUMC", + "level": "O", + "rank": 37200, + "wordGroups": [ + { + "wordGroup": [ + "magistrates", + "powers", + "ceased" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b09fdfef-bde4-4804-8731-f1c2632fbfcc", + "label": "Local Justice Area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3fdf077e-92b3-4b58-abd1-040a42c35a45", + "label": "Remanded to hospital for treatment", + "shortCode": "RHT", + "level": "O", + "rank": 37300, + "wordGroups": [ + { + "wordGroup": [ + "remanded", + "hospital" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f8ff8214-14b0-4425-94eb-64e6ae320f80", + "label": "Specify hospital", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label": "Remand basis", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual": null, + "reference": "remandBasis", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "7b2e6219-ddcb-4afa-8615-8de978e60af1", + "label": "Bail exception", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "10a769e8-1b1c-430d-844b-8948942cf353", + "qual": null, + "reference": "bailException", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", + "label": "Bail exception reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "c0fb2ca5-7702-4f01-b344-33029cfdcd47", + "qual": null, + "reference": "bailExceptionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label": "Place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "placeOfSafety", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label": "Conveyor/custodian", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96949d0c-a59c-4a6f-a563-97456c985987", + "label": "Further directions regarding conveyance to place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4051", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "C", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "68c97f89-1672-417d-8513-74cded9d2322", + "label": "Restriction order", + "shortCode": "RISTO", + "level": "O", + "rank": 37400, + "wordGroups": [ + { + "wordGroup": [ + "restriction", + "Order" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1004", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "04437aef-8b44-424e-9cd0-75a10a00f256", + "label": "Hospital direction and limitation direction", + "shortCode": "DHA", + "level": "O", + "rank": 37500, + "wordGroups": [ + { + "wordGroup": [ + "hospital", + "limitation" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1000, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label": "Early release provisions apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": [ + "Early", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label": "Early release provisions do not apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": [ + "Early", + "not", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1500, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ff8214-14b0-4425-94eb-64e6ae320f80", + "label": "Specify hospital", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "specifyHospital", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6baa9e89-7d7d-47b4-bb99-3e3d22cbb011", + "label": "Name of hospital unit", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label": "Place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "placeOfSafety", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label": "Conveyor/custodian", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96949d0c-a59c-4a6f-a563-97456c985987", + "label": "Further directions regarding conveyance to place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1088", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "label": "Community requirement: Mental health treatment non-residential patient", + "shortCode": "MHTRNR", + "level": "O", + "rank": 4400, + "wordGroups": [ + { + "wordGroup": [ + "Mental", + "Health", + "Residential" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HF", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cb0842d5-9b42-4930-99b3-ae835b56aa56", + "label": "Conditional discharge (no notice produced)", + "shortCode": "CDN", + "level": "O", + "rank": 37600, + "wordGroups": [ + { + "wordGroup": [ + "conditional", + "discharge", + "notice" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label": "Duration of conditional discharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label": "Duration of conditional discharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label": "Duration of conditional discharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e233917e-eeee-45fa-af4d-ca50e4f33af8", + "label": "Duration of conditional discharge", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1018", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7dcc9315-917f-408c-bb77-df8b978f503d", + "label": "Deferred sentence", + "shortCode": "DS", + "level": "O", + "rank": 37700, + "wordGroups": [ + { + "wordGroup": [ + "deferred", + "sentence" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2e93862b-2412-41ca-be12-5321815294f2", + "label": "Requirements that must be carried out", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49806ee4-d2d8-40ce-b651-5fee1510aff4", + "label": "The court has appointed a supervisor to supervise you", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1ab4b20a-9421-494f-8b17-843450050a6e", + "label": "Name of victim involved in restorative justice", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e76ed20a-768a-41ad-8b95-921539ac3550", + "label": "Address of victim involved in restorative justice", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4005", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + } + ] + }, + { + "id": "b91a9688-6542-4132-84f2-a3ffff60edfa", + "label": "Deferred sentence with restorative justice activity involving victim", + "shortCode": "DEFRJ", + "level": "O", + "rank": 37800, + "wordGroups": [ + { + "wordGroup": [ + "deferred", + "sentence", + "victim" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2e93862b-2412-41ca-be12-5321815294f2", + "label": "Requirements that must be carried out", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1ab4b20a-9421-494f-8b17-843450050a6e", + "label": "Name of victim involved in restorative justice", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e76ed20a-768a-41ad-8b95-921539ac3550", + "label": "Address of victim involved in restorative justice", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49806ee4-d2d8-40ce-b651-5fee1510aff4", + "label": "The court has appointed a supervisor to supervise you", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4005", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2e3cdfca-8bce-4ad4-93c9-075bead61b0d", + "label": "Notification of requirement to register with police until case dealt with", + "shortCode": "NORRDW", + "level": "O", + "rank": 37900, + "wordGroups": [ + { + "wordGroup": [ + "register", + "police" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7780ed3c-ab05-4a53-acce-316b5486d3ec", + "label": "Parent's name if parental direction required", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "859b99d5-de74-4a84-b160-c914467af86d", + "label": "Name of police station to report to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", + "label": "Conviction / finding / insanity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3052", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c4c7db1f-673b-4633-8400-4739f483c68e", + "label": "Notification of requirement to register with police for a period", + "shortCode": "NORR", + "level": "O", + "rank": 38000, + "wordGroups": [ + { + "wordGroup": [ + "register", + "police", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label": "Notification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label": "Notification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label": "Notification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cb805e95-c265-4b4b-8b4d-678111bead6c", + "label": "Notification period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7780ed3c-ab05-4a53-acce-316b5486d3ec", + "label": "Parent's name if parental direction required", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "859b99d5-de74-4a84-b160-c914467af86d", + "label": "Name of police station to report to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", + "label": "Conviction / finding / insanity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3052", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "55b91429-8dda-4a8f-8b84-d4cd1a398ab5", + "label": "Notification of requirement to register with police indefinately", + "shortCode": "NORRI", + "level": "O", + "rank": 38100, + "wordGroups": [ + { + "wordGroup": [ + "register", + "police", + "indefinately" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7780ed3c-ab05-4a53-acce-316b5486d3ec", + "label": "Parent's name if parental direction required", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "859b99d5-de74-4a84-b160-c914467af86d", + "label": "Name of police station to report to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2f3159f3-fbb8-4642-b7b6-94ef61e4a466", + "label": "Conviction / finding / insanity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3052", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9ea0d845-5096-44f6-9ce0-8ae801141eac", + "rollUpPrompts": false, + "publishedForNows": false, + "label": "Collection order", + "shortCode": "COLO", + "level": "C", + "rank": 38200, + "wordGroups": [ + { + "wordGroup": [ + "COLO" + ] + }, + { + "wordGroup": [ + "collection", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6b36e5ff-e116-4dc3-b438-8c02d493959e", + "label": "Collection order type", + "welshLabel": "Math o orchymyn casglu", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "d7d75420-aace-11e8-98d0-529269fb1459", + "qual": null, + "reference": "collectionOrderType", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "369b6e22-4678-4b04-9fe9-5bb53bed5067", + "label": "Reason for not making an attachment of earnings order or deduction from benefit application", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "reasonForNotMakingAnAttachment", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dc44f589-6dd2-4a8d-9164-c1796c6b0e36", + "label": "Reason for making an attachment of earnings order", + "welshLabel": "Rheswm dros wneud gorchymyn atafaelu enillion", + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", + "qual": null, + "reference": "reasonForMakingAnAttachment", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "16ade3fb-9f0f-4ce4-a6c8-fa96277e1519", + "label": "Reason for making an application for deductions from benefit", + "welshLabel": "Rheswm dros wneud cais i ddidynnu o fudd-dal", + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", + "qual": null, + "reference": "reasonForMakingAnApplication", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Gorchymyn Casglu", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "76b02133-4927-4f21-9f79-1ce361a17b0f", + "label": "Confiscation order where Court decides the available amount - makes a statement of findings", + "shortCode": "CONFAA", + "level": "O", + "rank": 38400, + "wordGroups": [ + { + "wordGroup": [ + "confiscation", + "Order", + "decide" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1700, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1700, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1700, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1700, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b613add5-2657-4a13-ad6f-cf01079f1f1a", + "label": "The benefit is a result of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e9e6e941-db50-4eed-b388-f6dafe09f9d5", + "label": "Value of the benefit", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "97ba9a67-9cf9-4357-bed9-1c38b9a037c0", + "label": "Available amount that may be realised", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5a954d49-da57-4952-893c-82f57d2dbed8", + "label": "The defendant's assets are those described in the schedule (form 5050A) and were a matter relevant to the Court's decision", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6275de58-7ba0-4141-b872-19e49707a0e2", + "label": "Total value of assets presented in the schedule (form 5050A)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "CURR", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2281817-6d7f-48f2-a27c-a61ba506a007", + "label": "Total value of assets decided by the Court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "CURR", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "52b9ac44-e6d5-4494-a94c-16b23b5a890b", + "label": "The statement of the prosecutor was a matter relevant to the Court's decision", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5d3e131-3031-4c92-ba48-a2d132767476", + "label": "Matters in the defendant's response to the statement of the prosecutor were relevant to the Court's decision", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8fdf6804-ac49-42c4-9ffe-a1c35b76f8ca", + "label": "Matters in the defendant's response to a court order requiring the defendant to give infomation specified in the order were relevant to the Court's decision", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "42d8c319-ddda-4af6-bc84-53450378b77f", + "label": "Total value of assets presented to Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2281817-6d7f-48f2-a27c-a61ba506a007", + "label": "Total value of assets decided by the Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9e2ea5fd-b373-43e4-81ae-04f1b0b9ed2c", + "label": "Amount ordered to pay", + "welshLabel": "Swm a orchmynnwyd i’w dalu", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6ca8afa4-ec62-4ca1-a914-181418db8961", + "label": "Description of amount to be paid", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cef4a3b2-b279-404c-a6ae-3552f2a9151d", + "label": "Amount of confiscation sum to be paid as compensation", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "CURR", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "851e2be3-1436-47a4-824d-ca3168647f0c", + "label": "Collecting Magistrates' Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", + "label": "Confiscation unit to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 1600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5437f354-b075-4dd0-87cb-260c4fd8dd1f", + "label": "Defendant's custody location", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "869beaee-71bd-4e33-8ea6-3e5554fcb6c8", + "label": "Priority order directions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3056", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Confiscation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "733545c5-5612-40b8-bd81-df1a6a154182", + "label": "Confiscation order where Court does not decide the available amount", + "shortCode": "CONF", + "level": "O", + "rank": 38500, + "wordGroups": [ + { + "wordGroup": [ + "confiscation", + "Order", + "not", + "decide" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a3bbf5d2-e553-4c42-809d-7906929cdf4d", + "label": "Default prison term", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d1142456-f354-42ec-ba25-1556d99230c6", + "label": "The benefit is a result of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "de6587cb-7892-48ef-bf6c-3b63471a0422", + "label": "Value of the benefit", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "587ba904-51cc-4284-9883-6724acc55531", + "label": "Available amount that may be realised", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7798fac0-1e5a-4e53-ae3f-e49d825ac560", + "label": "Total value of assets presented to Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a7fc546f-ca75-4aed-98b4-4cdce26238ba", + "label": "Total value of assets decided by the Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fdd30c91-11d4-4511-b1f8-dfd1b9fbcc5d", + "label": "Amount ordered to pay", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b838babb-4b10-4534-ad6e-794da31d6976", + "label": "Description of amount to be paid", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4ceb1e93-25ce-4f6e-aaf6-195083faadb6", + "label": "Amount of confiscation sum to be paid as compensation", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "CURR", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "851e2be3-1436-47a4-824d-ca3168647f0c", + "label": "Collecting Magistrates' Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b8fd8a4f-5b08-4e5c-a9de-aeacdad0cf53", + "label": "Confiscation unit to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5437f354-b075-4dd0-87cb-260c4fd8dd1f", + "label": "Defendant's custody location", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c66d10aa-b197-49d8-87e5-28eb356fde1e", + "label": "Priority order directions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3056", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Confiscation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "label": "Community requirement: Exclusion not to enter for a period", + "shortCode": "ERP", + "level": "O", + "rank": 4500, + "wordGroups": [ + { + "wordGroup": [ + "exclusion", + "Requirement", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5bdaf75-2138-45a5-98c9-421d652a65d6", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6d322ff1-1d95-4053-ac79-19d1b7874f2d", + "label": "End date of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "adbdbb76-8ff7-4a22-881f-6b95adbf915b", + "label": "Electronic Monitoring End - notify contractor", + "shortCode": "EMONE", + "level": "O", + "rank": 38600, + "wordGroups": [ + { + "wordGroup": [ + "EM", + "end" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6bc0a7e8-ecd6-4607-896c-e8e8e88bd616", + "label": "Electronic monitoring type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7946cf86-d0f6-4611-815f-fc4d6fc05e34", + "label": "Date last electronic monitoring order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fef836f8-cae7-410f-b006-989d884a8d14", + "label": "Name of court that imposed electronic monitoring", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "83aef1c6-1246-4894-b44b-6a76d1e4d99b", + "label": "Name of prison defendant remanded or committed to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a0b426c1-74b8-43cd-9885-f0f31625352e", + "label": "Payment terms - on release", + "shortCode": "PTFOR", + "level": "D", + "rank": 38700, + "wordGroups": [ + { + "wordGroup": [ + "payment", + "on", + "release" + ] + }, + { + "wordGroup": [ + "payment", + "full" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", + "label": "Remanded in custody - to hospital", + "shortCode": "RIH", + "level": "O", + "rank": 38800, + "wordGroups": [ + { + "wordGroup": [ + "remanded", + "hospital", + "custody" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label": "Remand basis", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", + "qual": null, + "reference": "remandBasis", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ff8214-14b0-4425-94eb-64e6ae320f80", + "label": "Specify hospital", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "specifyHospital", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "7b2e6219-ddcb-4afa-8615-8de978e60af1", + "label": "Bail exception", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "10a769e8-1b1c-430d-844b-8948942cf353", + "qual": null, + "reference": "bailException", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "53ac8d08-49a9-4495-ab3a-0ef94ca9e560", + "label": "Bail exception reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "c0fb2ca5-7702-4f01-b344-33029cfdcd47", + "qual": null, + "reference": "bailExceptionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label": "Place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "placeOfSafety", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4051", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "C", + "resultDefinitionGroup": "Remand in custody", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9be66be8-58d2-430c-a0b7-7f759ab0e48a", + "label": "Interim hospital order", + "shortCode": "MHHI", + "level": "O", + "rank": 38900, + "wordGroups": [ + { + "wordGroup": [ + "hospital", + "Order", + "interim" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "701b27ad-c54a-4011-a605-8c438ff685c9", + "label": "Name of hospital where defendant will be admitted or detained", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39001635-2dc8-4a58-9934-eeb60fa4d93b", + "label": "Name of hospital unit", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", + "label": "Hospital address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ab28a61-d96c-4403-a522-0e58d0e750bf", + "label": "Place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "placeOfSafety", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5ff1e80f-8581-4ba2-a7e3-57de41448034", + "label": "Conveyor/custodian", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96949d0c-a59c-4a6f-a563-97456c985987", + "label": "Further directions regarding conveyance to place of safety", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "3132", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "C", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cf50fa81-671e-4598-b42b-721e45288240", + "label": "Interim hospital order extended", + "shortCode": "MHHIC", + "level": "O", + "rank": 39000, + "wordGroups": [ + { + "wordGroup": [ + "hospital", + "Order", + "extended" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "701b27ad-c54a-4011-a605-8c438ff685c9", + "label": "Name of hospital where defendant will be admitted or detained", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39001635-2dc8-4a58-9934-eeb60fa4d93b", + "label": "Name of hospital unit", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d89a157c-d4fa-4dc9-a68d-2f50f6a2bcad", + "label": "Hospital address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "48648c9f-4553-4d01-8eaa-91af63353a26", + "label": "Date on which original interim order was made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "3132", + "adjournment": false, + "convicted": false, + "qualifier": "E", + "postHearingCustodyStatus": "C", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b993d756-e5a8-4204-9d58-b344b79998e1", + "label": "Notice of Custodial Sentence to Border and Immigration Agency regarding Deportation", + "shortCode": "DEPN", + "level": "O", + "rank": 39100, + "wordGroups": [ + { + "wordGroup": [ + "deportation", + "borders" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "099bd432-cf4e-4274-861d-4a665e2f4314", + "label": "Deportation power", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "16bb9f17-d3c3-42f1-a4dc-2d953114a214", + "label": "Nationality", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7610d8a1-07fe-4e69-812d-22f821d3f334", + "label": "Forfeiture order (cash)", + "shortCode": "FORFC", + "level": "O", + "rank": 39200, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "cash" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9bc76b55-37b4-42eb-b16d-52e83f86b8a2", + "label": "Amount of cash forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "48d71903-ce47-432a-8706-3619355f7738", + "label": "Currency of cash forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "98a562ee-7583-405a-ab05-3f922ada4872", + "label": "Type of forfeiture", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "26d4c112-a7ae-11e8-98d0-529269fb1459", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3134", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6532b8f4-7794-420a-9f30-8aced3e41517", + "label": "Forfeiture of personal licence to sell alcohol", + "shortCode": "FLIC", + "level": "O", + "rank": 39300, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "licence", + "Alcohol" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label": "Order suspended pending appeal", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3136", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "661bdce3-ce01-4cb6-a152-6424540bbbce", + "label": "Suspension of personal licence to sell alcohol", + "shortCode": "SLIC", + "level": "O", + "rank": 39400, + "wordGroups": [ + { + "wordGroup": [ + "suspension", + "licence", + "Alcohol" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "60a23936-2446-4813-945c-7b42548f526b", + "label": "Period of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "60a23936-2446-4813-945c-7b42548f526b", + "label": "Period of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "60a23936-2446-4813-945c-7b42548f526b", + "label": "Period of suspension", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "67cc7055-06f7-4393-a8df-b3fbabe9fce2", + "label": "Order suspended pending appeal", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3119", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cebb3aa8-fed4-4784-b8bd-57901452344b", + "label": "Order to give date of birth", + "shortCode": "DOB", + "level": "D", + "rank": 39500, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "dob" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4b055468-4534-4ded-b866-2895afae3f49", + "label": "Date the information must be returned by", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3503", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "label": "Community requirement: Exclusion not to enter with between dates", + "shortCode": "ERBD", + "level": "O", + "rank": 4600, + "wordGroups": [ + { + "wordGroup": [ + "exclusion", + "Requirement", + "dates" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ac46c9c8-976d-40ef-a913-85c64a6859bc", + "label": "From date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9e41b95c-c776-4d95-b057-05b7fcb155aa", + "label": "Until date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a0a0f576-5f6c-4924-ac60-f4d289f15938", + "label": "Order to give statement of person's sex", + "shortCode": "SPS", + "level": "D", + "rank": 39600, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "sex" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4b055468-4534-4ded-b866-2895afae3f49", + "label": "Date the information must be returned by", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3503", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8fce92ff-22af-4d33-999f-e9c5b9b0f429", + "label": "No further action taken in respect of conduct (contempt)", + "shortCode": "NFAC", + "level": "O", + "rank": 39700, + "wordGroups": [ + { + "wordGroup": [ + "nfa", + "contempt" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8c858e3e-1ade-4e90-869a-160c2bb5da90", + "label": "Postponement of enquiry into contempt", + "shortCode": "POSTC", + "level": "O", + "rank": 39800, + "wordGroups": [ + { + "wordGroup": [ + "postpone", + "enquiry", + "contempt" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "30d79db7-37fa-4c89-9129-926aa633d186", + "label": "Contempt of court findings", + "shortCode": "CONTF", + "level": "O", + "rank": 39900, + "wordGroups": [ + { + "wordGroup": [ + "contempt", + "findings" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "66388542-24fa-475b-8af0-18183ac282e9", + "label": "Findings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3169a020-99f3-4ff8-a76b-c3be37a60b71", + "label": "Committed to prison for refusal to produce items", + "shortCode": "P", + "level": "O", + "rank": 40000, + "wordGroups": [ + { + "wordGroup": [ + "commit", + "prison", + "refuse" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "18084ac5-1158-49f5-94b6-9ca619f2374b", + "label": "Document or item to be produced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8a4d068d-ca0f-4056-848e-b55b343f1090", + "label": "Witness summons withdrawn", + "shortCode": "WSW", + "level": "C", + "rank": 40100, + "wordGroups": [ + { + "wordGroup": [ + "witness", + "summons", + "withdrawn" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "c39f2ea4-f53a-48a0-b842-ee89a2c3d86b", + "label": "Witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "18084ac5-1158-49f5-94b6-9ca619f2374b", + "label": "Document or item to be produced", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4eb18e66-67e9-43df-8ed6-4b02c486dcc2", + "label": "No parental bind over made", + "shortCode": "NPARBOR", + "level": "D", + "rank": 40200, + "wordGroups": [ + { + "wordGroup": [ + "no", + "parental", + "bind" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3657fa70-aec5-4009-99c0-9e5bcab7319f", + "label": "Reason why court did not make the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d89d0e29-1cc8-4bac-8ff2-80c052398ca6", + "label": "No parenting order made", + "shortCode": "NPAROR", + "level": "D", + "rank": 40300, + "wordGroups": [ + { + "wordGroup": [ + "no", + "parenting", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3657fa70-aec5-4009-99c0-9e5bcab7319f", + "label": "Reason why court did not make the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1628d7d4-b9ec-4680-88dd-0483ee20ed48", + "label": "No reparation order made", + "shortCode": "NREPOR", + "level": "D", + "rank": 40400, + "wordGroups": [ + { + "wordGroup": [ + "no", + "reparation", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3657fa70-aec5-4009-99c0-9e5bcab7319f", + "label": "Reason why court did not make the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "66a52d4d-7ec6-430d-a2fe-5963fe9ba095", + "label": "Detention and training order", + "shortCode": "DTO", + "level": "O", + "rank": 40500, + "wordGroups": [ + { + "wordGroup": [ + "detention", + "training", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", + "label": "Period of detention and training", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "89fab2ea-0fa9-4e7d-94c4-eba9cd8d767e", + "label": "Period of detention and training", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49f8c150-93ea-48e7-ae86-f1a467c72a3a", + "label": "DTO reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7f1c407a-8d1b-40ce-9720-66467e723d5c", + "label": "Why the reason for DTO applies", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1003078-ca9c-43ba-a131-8fa755c3a9f4", + "label": "Defendant is a persistent offender", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "81ed0c6f-7a58-4d4c-b8a0-6425de4f1d29", + "label": "Detention centre", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1081", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "091cd45b-4312-476e-a122-18cc02fd1699", + "label": "Community requirement: Exclusion not to enter for a period with electronic monitoring", + "shortCode": "ERPEM", + "level": "O", + "rank": 4700, + "wordGroups": [ + { + "wordGroup": [ + "exclusion", + "electronic monitoring", + "Period", + "first" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", + "label": "Start date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f02e3b28-83e7-4650-a8e1-810bbb464bb4", + "label": "Start time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", + "label": "End date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "487358be-eccc-46e4-aa8e-e41495638a2c", + "label": "End time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f9d43a8f-dd19-4c0f-9fad-a3d339fd09b4", + "label": "Total detention and training order", + "shortCode": "TDTO", + "level": "D", + "rank": 40600, + "wordGroups": [ + { + "wordGroup": [ + "Total", + "detention", + "training" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0a1207ad-d35d-478f-a77d-c0277c463507", + "label": "Total detention and training order period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6ab74bbd-3b3b-4658-a6f7-b2be94bd3baa", + "label": "Reparation order", + "shortCode": "REPO", + "level": "O", + "rank": 40700, + "wordGroups": [ + { + "wordGroup": [ + "reparation", + "Order" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8a044676-c316-4d4c-81bf-b52af663be85", + "label": "Number of reparation hours", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30d0efcf-41df-48e8-891d-ebec2d0ef8fc", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8636315-3ef2-4b2e-ae42-92c249c19a49", + "label": "Local authority", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "57227a07-3b72-4f96-907c-fe13b5d7847f", + "label": "Order details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47f34fca-6355-4612-881a-07a2121b86ba", + "label": "Supervising court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1083", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4feb6756-ffe5-4c38-8c90-e3c94f81b359", + "label": "Certificate that the case is fit for appeal to the Court of Appeal Criminal Division", + "shortCode": "CERTA", + "level": "O", + "rank": 40800, + "wordGroups": [ + { + "wordGroup": [ + "case", + "fit", + "appeal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "fae932b8-99cd-45d5-856e-14226aaa67a1", + "label": "Certificate granted Criminal Appeal Act 1968", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4067c886-1d7f-4079-874e-d798c11a8429", + "label": "Conviction / sentence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e5a86c23-5e4f-49e7-8ab0-1827bb77a253", + "label": "Bail granted unconditionally pending appeal to the Court of Appeal Criminal Division", + "shortCode": "UCBCA", + "level": "O", + "rank": 40900, + "wordGroups": [ + { + "wordGroup": [ + "unconditional", + "bail", + "appeal" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "4047", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9b816cc1-7836-44b2-a706-b09ab110f790", + "label": "Bail granted conditionally pending appeal to the Court of Appeal Criminal Division", + "shortCode": "CBBCA", + "level": "O", + "rank": 41000, + "wordGroups": [ + { + "wordGroup": [ + "conditional", + "bail", + "appeal" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f7995d94-bf13-41df-a599-79ead4123aad", + "label": "BASS provider", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "4027", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "75fc296e-d16a-44ec-a04c-c0affb549952", + "label": "Bind over surety", + "shortCode": "BOS", + "level": "O", + "rank": 41100, + "wordGroups": [ + { + "wordGroup": [ + "bind", + "surety" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "30916e4c-8224-4a1f-a542-6f1bf1d47a46", + "label": "Duration of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc717d96-41ce-43bd-b0ac-33830c52eea6", + "label": "Surety name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e449e677-80fd-4037-8e84-34e40bba95cd", + "label": "Surety address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "69a4e7f0-866f-4c31-846a-dd909666ef85", + "label": "Amount of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "440ad312-35f7-42c5-bbae-899a60457abb", + "label": "Defendant or respondent", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1a235ff2-a76f-414c-be31-58db18360810", + "label": "Basis of bind over", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "33bdd72c-430b-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a8ca6ddf-6dbd-4cc8-9699-7902297157df", + "label": "Conduct or activity to be refrained from", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "516dbb2c-d9e1-4186-b458-e3b6f798db58", + "label": "To keep the peace especially towards - name of person", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9b35f4f5-531e-48b4-858d-d81e15e77c23", + "label": "Warrant of arrest without bail on sentence of imprisonment in absence", + "shortCode": "WABSN", + "level": "O", + "rank": 41200, + "wordGroups": [ + { + "wordGroup": [ + "warrant", + "arrest", + "without", + "bail", + "imprisonment" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "29970ab4-99a6-48dd-bc7a-bfa68edef13e", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4c8bd45c-e0c7-456c-8104-d1ce3ac0419e", + "label": "Process server name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e498ec52-0adf-41cf-89e2-40955a418393", + "label": "Courthouse name", + "welshLabel": "Enw’r adeilad llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "4576", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Warrants of arrest", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2360acdb-4667-4f64-ab40-c2383271ea18", + "label": "Surety", + "shortCode": "suret", + "level": "C", + "rank": 41300, + "wordGroups": [ + { + "wordGroup": [ + "suret" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b20eb2e5-a012-4805-9713-8868579a8ec2", + "label": "Surety's name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9f4821b8-a160-40a0-b01e-0b0ba4f4c39e", + "label": "Surety's address", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "921cd8cc-0af1-46a7-8bfe-403a3e831a85", + "label": "Amount of recognisance", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e498ec52-0adf-41cf-89e2-40955a418393", + "label": "Courthouse name", + "welshLabel": "Enw’r adeilad llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "19d80e10-7792-4988-bfed-3bb09cd287b5", + "label": "Date of next court hearing", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8f8965c6-fe32-445c-9752-65b36d6f7e08", + "label": "Time of next court hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f6125c7b-0f0d-4cae-a98f-54b1e230c485", + "label": "This applies at each time and place until the conclusion of the case", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3e43af75-59bd-457e-a22a-1f61215a42df", + "label": "Surety declared forfeit (to pay)", + "shortCode": "SFOP", + "level": "O", + "rank": 41400, + "wordGroups": [ + { + "wordGroup": [ + "surety", + "forfeit" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e88fae27-272b-4ab0-b10f-af26d5951c19", + "label": "Date recognizance forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1289c3f-b81b-4abb-93cc-546b340312b0", + "label": "Amount to pay", + "welshLabel": "Swm i’w dalu", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3016", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "673d90bc-e8d7-40fd-8ad1-39517526452d", + "label": "Principal declared forfeit (to pay)", + "shortCode": "PFOP", + "level": "O", + "rank": 41500, + "wordGroups": [ + { + "wordGroup": [ + "principal", + "forfeit" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e88fae27-272b-4ab0-b10f-af26d5951c19", + "label": "Date recognizance forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1289c3f-b81b-4abb-93cc-546b340312b0", + "label": "Amount to pay", + "welshLabel": "Swm i’w dalu", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3016", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "label": "Community requirement: Exclusion not to leave a place for a period with electronic monitoring", + "shortCode": "ERLPEM", + "level": "O", + "rank": 4800, + "wordGroups": [ + { + "wordGroup": [ + "exclusion", + "electronic monitoring", + "residence", + "Period", + "first" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a597f480-868c-4552-a1b3-70b9906dde09", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", + "label": "Start date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f02e3b28-83e7-4650-a8e1-810bbb464bb4", + "label": "Start time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", + "label": "End date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "487358be-eccc-46e4-aa8e-e41495638a2c", + "label": "End time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "418b3aa7-65ab-4a4a-bab9-2f96b698118c", + "version": "2021-11-04T13:58:39.210Z", + "startDate": "2021-11-05", + "label": "Community order England / Wales", + "shortCode": "co", + "level": "O", + "rank": 27300, + "wordGroups": [ + { + "wordGroup": [ + "co", + "Community" + ] + } + ], + "prompts": [ + { + "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", + "label": "Judge reserves breach proceedings", + "welshLabel": "Barnwr yn neilltuo achos torri amodau", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "financial": "N", + "reference": "judgeReservesBreachProceedings", + "wordGroup": [ + "reserved" + ], + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedOrganisationName", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "OrganisationName", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress1", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress2", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 3", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress3", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine3", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 4", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress4", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine4", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedAddress5", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "AddressLine5", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedPostCode", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "PostCode", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedEmailAddress1", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedEmailAddress2", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": "Swyddog cyfrifol", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "financial": "N", + "reference": "responsibleOfficer", + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "userGroups": [ + ], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "welshLabel": "Dyddiad terfyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "financial": "N", + "reference": "endDate", + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "isDurationEndDate": true, + "associatedWithReferenceData": false + }, + { + "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", + "label": "Direction that a failure to comply be dealt with by magistrates' court", + "welshLabel": "Cyfarwyddyd bod llys ynadon yn delio â methiant i gydymffurfio", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "financial": "N", + "reference": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "welshLabel": "Llys sy’n Goruchwylio", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 300, + "financial": "N", + "reference": "supervisingCourt", + "userGroups": [ + ], + "min": "1", + "max": "120", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "referenceDataKey": "supervisingCourt", + "nameEmail": false, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", + "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", + "welshLabel": "Mae'r diffynnydd yn droseddwr parhaus a ddirwywyd yn flaenorol, mae gwneud gorchymyn cymunedol yn lle gosod dirwy am y drosedd hon er budd cyfiawnder oherwydd", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "financial": "N", + "reference": "persistentOffenderPreviouslyFined", + "userGroups": [ + ], + "min": "1", + "max": "1000", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "REV", + "welshLabel": "REV", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "financial": "N", + "reference": "HTYPE", + "userGroups": [ + ], + "min": "1", + "max": "1000", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Gorchymyn cymunedol Cymru / Lloegr", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "Y", + "d20": false, + "dvlaCode": "M", + "cjsCode": "1116", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "jurisdiction": "B", + "libraCode": "COEW", + "lCode": "COEW", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "ruleType": "mandatory" + } + ], + "canBeSubjectOfBreach": true, + "canBeSubjectOfVariation": true, + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "6feb0f2e-8d1e-40c7-af2c-05b28c69e5fc", + "label": "Withdrawn (notice produced)", + "shortCode": "WDRNNOT", + "level": "O", + "rank": 41600, + "wordGroups": [ + { + "wordGroup": [ + "withdrawn", + "notice" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2063", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "615313b5-0647-4d61-b7b8-6b36265d8929", + "label": "No collection order reason", + "shortCode": "NOCOLLO", + "level": "D", + "rank": 41700, + "wordGroups": [ + { + "wordGroup": [ + "no", + "collection", + "reason" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", + "label": "Reason for no collection order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "4e66b3e0-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "04f4c331-754c-4153-9933-3411843836a4", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rheswm dros beidio â gwneud Gorchymyn Casglu", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "eb2e4c4f-b738-4a4d-9cce-0572cecb7cb8", + "label": "Withdrawn", + "shortCode": "WDRN", + "level": "O", + "rank": 41800, + "wordGroups": [ + { + "wordGroup": [ + "WDRN" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2063", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c8326b9e-56eb-406c-b74b-9f90c772b657", + "label": "Withdrawn (recharge at named Court)", + "shortCode": "WDRNOS", + "level": "O", + "rank": 41900, + "wordGroups": [ + { + "wordGroup": [ + "withdrawn", + "recharge", + "court" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9d3ed4ee-40ad-41c4-9778-a657e8e7605e", + "label": "Court handling re-charged offence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "4010", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "eaecff82-32da-4cc1-b530-b55195485cc7", + "label": "Withdrawn (recharge at unnamed Court)", + "shortCode": "WDRNOU", + "level": "O", + "rank": 42000, + "wordGroups": [ + { + "wordGroup": [ + "withdrawn", + "recharge", + "unnamed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "4010", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "40cf92bc-1dd9-492c-a7c5-d0d337e91994", + "label": "Wasted costs order - defendant to pay", + "shortCode": "WCOD", + "level": "O", + "rank": 42100, + "wordGroups": [ + { + "wordGroup": [ + "wasted", + "Costs" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "d5c1709c-bbe2-46af-b3e0-91fc2562a120", + "label": "Full amount of costs due to creditor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "22ebf965-8a1c-4229-9894-0df7f8117753", + "label": "Major creditor name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", + "qual": null, + "reference": "CREDNAME", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "2505", + "adjournment": false, + "convicted": false, + "qualifier": "IE", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b786ce8a-ce7a-4fa1-94ce-a3d9777574e4", + "label": "Pay costs to named party (inter partes costs)", + "shortCode": "IPC", + "level": "C", + "rank": 42200, + "wordGroups": [ + { + "wordGroup": [ + "pay", + "Costs", + "names" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "247cfcbd-582e-4e79-bdac-567ad04fbfb3", + "label": "Name of party to pay the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2a7dbf0b-4090-4d0b-abcc-fbf38302d11a", + "label": "Amount of costs", + "welshLabel": "Swm y costau", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "13405496-927f-422c-9b32-1b8d90fe7ebe", + "label": "Name of party to receive costs", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68159a17-22a7-4744-815e-7cd539948af1", + "label": "Payment terms", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f5759650-31a1-11e8-b467-0ed5f89f718b", + "label": "Money security forfeited", + "shortCode": "SECMF", + "level": "O", + "rank": 42300, + "userGroups": [], + "prompts": [ + { + "id": "3e124994-31a2-11e8-b467-0ed5f89f718b", + "label": "Amount forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4f058bd0-31a2-11e8-b467-0ed5f89f718b", + "label": "Youth rehabilitation order England / Wales", + "shortCode": "YRO", + "level": "O", + "rank": 42400, + "wordGroups": [ + { + "wordGroup": [ + "youth", + "Rehabilitation", + "Order" + ] + }, + { + "wordGroup": [ + "YRO" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label": "Start Date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": "responsibleOfficer", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1141", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "574fb809-4473-4a90-ba0f-519a50cfc9ec", + "label": "Youth rehabilitation requirement: Activity - specified", + "shortCode": "YRA1", + "level": "O", + "rank": 42600, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab3c3545-4a09-4a32-b779-33e96763debe", + "label": "Activity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "abb95a52-2a75-40c3-8d3f-a1d75a199c47", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Imprisonment", + "shortCode": "imp", + "level": "O", + "rank": 4900, + "resultWording": "section 12(c)", + "wordGroups": [ + { + "wordGroup": [ + "imp" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "imprisonmentPeriod", + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "imprisonmentPeriod", + "isAvailableForCourtExtract": true, + "durationSequence": 1 + }, + { + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "imprisonmentPeriod", + "courtExtract": "N", + "durationSequence": 1 + }, + { + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "imprisonmentPeriod", + "isAvailableForCourtExtract": false, + "durationSequence": 1 + }, + { + "id": "321c3fd8-ea44-4ccc-b763-bc693ee6be0f", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": "concurrent", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7b5ba551-7adb-4555-93b1-dcb6f027f02f", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": "consecutiveToOffenceNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9637677e-c2d7-4609-a750-ffe90eba9351", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": "whereConsecutiveToAnOffence", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e307f79-d4ca-466e-8c5c-a7d874c89b39", + "label": "Imprisonment reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": "imprisonmentReasons", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "622aa563-a3db-4102-ba7e-21c21cee0110", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": "theReasonForThis", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "55a1cab9-8aa6-41f6-a116-0345198324e6", + "label": "Youth rehabilitation requirement: Activity at specified place", + "shortCode": "YRA2", + "level": "O", + "rank": 42700, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7365f685-e91e-4a5f-8021-34246eb56fcb", + "label": "Place to attend", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d0e31533-c60f-4b90-a98a-4a9678ecf69e", + "label": "Person to go to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", + "label": "Youth rehabilitation requirement: Activity with residential exercise at a place", + "shortCode": "YRA3", + "level": "O", + "rank": 42800, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "72a96d2c-d41e-426f-a824-6dffc607ecfc", + "label": "Residential exercise place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c5e204ce-9a2d-4911-96f7-e189565f429e", + "label": "Youth rehabilitation requirement: Activity with residential exercise", + "shortCode": "YRA4", + "level": "O", + "rank": 42900, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "90bc2885-5f74-4b35-ba58-33da0ef1f1df", + "label": "Activity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", + "label": "Youth rehabilitation requirement: Activity - engage in activities in accordance with instructions of responsible officer", + "shortCode": "YRA5", + "level": "O", + "rank": 43000, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96bd9a5b-005c-42ac-b188-fcb786e53b4a", + "label": "Responsible officer may require participation in residential exercise for not more than 7 days", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "191ec139-10b6-4b18-8a2c-1359425244c3", + "label": "Youth rehabilitation requirement: Activity - engage in residential activity in accordance with instructions of responsible officer", + "shortCode": "YRA6", + "level": "O", + "rank": 43100, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "536adc8b-1f26-43f0-9659-4bf25e2b42db", + "label": "Youth rehabilitation requirement: Programme", + "shortCode": "YRP1", + "level": "O", + "rank": 43200, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", + "label": "Programme name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7365f685-e91e-4a5f-8021-34246eb56fcb", + "label": "Place to attend", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3103", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1819e6a0-b13d-47e0-9027-388819457256", + "label": "Youth rehabilitation requirement: Programme with residence", + "shortCode": "YRP2", + "level": "O", + "rank": 43300, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", + "label": "Programme name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4224806d-6caa-48a7-8f80-5ce1ff6baf5b", + "label": "Place to reside", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3103", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "27528205-a237-471b-a487-7943e9284c44", + "label": "Youth rehabilitation requirement: Attendance centre", + "shortCode": "YRAC1", + "level": "O", + "rank": 43400, + "userGroups": [], + "prompts": [ + { + "id": "f13d59b1-88a1-4ad0-972c-e86a22cdd700", + "label": "Number of hours", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Hours" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0995a846-ba03-41b0-bb65-e50323296bdb", + "label": "Attendance Centre name / contact", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "28e2f7e0-8886-4cf6-a828-776849f8d3d4", + "label": "Additional / concurrent to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3111", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d3313cb9-c75e-45e4-b833-8479ff80f9ac", + "label": "Youth rehabilitation requirement: Prohibited activity for a period", + "shortCode": "YRPA1", + "level": "O", + "rank": 43500, + "userGroups": [], + "prompts": [ + { + "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label": "Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label": "Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label": "Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3adbbd2e-ac8d-4444-8b37-2047232fd57e", + "label": "Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label": "Prohibited activities", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3104", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", + "label": "Youth rehabilitation requirement: Prohibited activity for specified days", + "shortCode": "YRPA2", + "level": "O", + "rank": 43600, + "userGroups": [], + "prompts": [ + { + "id": "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", + "label": "Prohibited activities", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "939bb78c-6e15-4270-b22b-86fad8021d53", + "label": "Days of the week", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3104", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "72393fb6-77dd-45b2-98f5-6612966de882", + "label": "Committed to young offender institution", + "shortCode": "yoi", + "level": "O", + "rank": 5000, + "wordGroups": [ + { + "wordGroup": [ + "yoi" + ] + }, + { + "wordGroup": [ + "committed", + "young", + "institution" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d4d8f560-8bf0-4fb3-8bb6-ff90c961c20c", + "label": "Custody reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "69c444b1-9e98-4d1c-9128-dc856a00d8a0", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "fb9fedf8-2b60-496b-8147-168233e81be3", + "label": "Youth rehabilitation requirement: Supervision", + "shortCode": "YRS1", + "level": "O", + "rank": 43700, + "userGroups": [], + "prompts": [ + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1044", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5ab456c8-d272-4082-87ed-cd1f44a0603a", + "label": "Youth rehabilitation requirement: Unpaid work", + "shortCode": "YRUP1", + "level": "O", + "rank": 43800, + "userGroups": [], + "prompts": [ + { + "id": "83f27f8b-0d02-4f19-bbde-3619b88c06ac", + "label": "Number of hours", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Hours", + "wordGroup": [ + "Hours" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "28e2f7e0-8886-4cf6-a828-776849f8d3d4", + "label": "Additional / concurrent to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3101", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8f979084-dc3b-4e71-bceb-87e30a4fc381", + "label": "Youth rehabilitation requirement: Residence at a specified place", + "shortCode": "YRR1", + "level": "O", + "rank": 43900, + "userGroups": [], + "prompts": [ + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null, + "hidden": false + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0d0b4ec0-1d58-4d53-99aa-96bb0bd12db1", + "label": "Place to reside at", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd192d80-cf96-403e-9c3b-c0738d5a4a13", + "label": "Responsible office may approve different address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3107", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", + "label": "Youth rehabilitation requirement: Residence with an individual", + "shortCode": "YRR2", + "level": "O", + "rank": 44000, + "userGroups": [], + "prompts": [ + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d611217b-4778-4bec-a056-8c821aa6bc22", + "label": "Name of person to live with", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3107", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "63f8c00a-2115-46a9-94ff-b30bbad0f287", + "label": "Youth rehabilitation requirement: Residence in local authority accommodation", + "shortCode": "YRR3", + "level": "O", + "rank": 44100, + "userGroups": [], + "prompts": [ + { + "id": "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", + "label": "Period of residence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f63f692f-3bfc-4d0f-8e45-acd99b06431c", + "label": "Name of local authority", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "eecf7565-8c4a-4059-9a97-b83a7f975e22", + "label": "Name of person youth must NOT reside with", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3107", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "30bd1b11-5336-486e-aae6-1285ab4c8d65", + "label": "Youth rehabilitation requirement: Mental health treatment", + "shortCode": "YRM1", + "level": "O", + "rank": 44200, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HG", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", + "label": "Youth rehabilitation requirement: Mental health treatment residential patient", + "shortCode": "YRM2", + "level": "O", + "rank": 44300, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fb580537-9d36-4139-811b-77af09547b0d", + "label": "Care home / Hospital", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HE", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", + "label": "Youth rehabilitation requirement: Mental health treatment non-residential patient", + "shortCode": "YRM3", + "level": "O", + "rank": 44400, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", + "label": "Medical practitioner / Psychologist", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3108", + "adjournment": false, + "convicted": true, + "qualifier": "HF", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", + "label": "Youth rehabilitation requirement: Drug treatment as a resident", + "shortCode": "YRD1", + "level": "O", + "rank": 44500, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b625180-fd12-4422-9150-3185ac672151", + "label": "Name of institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label": "By or under the direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3128", + "adjournment": false, + "convicted": true, + "qualifier": "BM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", + "label": "Youth rehabilitation requirement: Drug treatment as a non-resident", + "shortCode": "YRD2", + "level": "O", + "rank": 44600, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b625180-fd12-4422-9150-3185ac672151", + "label": "Name of institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label": "By or under the direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3128", + "adjournment": false, + "convicted": true, + "qualifier": "BS", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4e786114-e1c0-42bb-9c52-64edeffa3a3b", + "label": "Youth rehabilitation requirement: Drug testing", + "shortCode": "YRDT1", + "level": "O", + "rank": 44700, + "userGroups": [], + "prompts": [ + { + "id": "da2007ba-6b96-4b88-b518-ca7a27144e2d", + "label": "Minimum number of occasions a month samples are to be provided", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3129", + "adjournment": false, + "convicted": true, + "qualifier": "BT", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1e78e819-13fc-4e14-a263-c632e4e3c85e", + "label": "Youth rehabilitation requirement: Intoxicating substance treatment as a non-resident", + "shortCode": "YRI1", + "level": "O", + "rank": 44800, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6aaf3645-0806-4917-ada5-b019c6a606c5", + "label": "Treatment intervals", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b625180-fd12-4422-9150-3185ac672151", + "label": "Name of institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label": "By or under the direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3130", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "03a1cbef-e54a-4a00-bcd5-44350f882ced", + "label": "Youth rehabilitation requirement: Intoxicating substance treatment as a resident", + "shortCode": "YRI2", + "level": "O", + "rank": 44900, + "userGroups": [], + "prompts": [ + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5e636c8d-c742-4cd4-a873-5d002ef36f5d", + "label": "Period of treatment", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b625180-fd12-4422-9150-3185ac672151", + "label": "Name of institution / place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c8e00ca0-9ecb-41f8-a29b-e1354155a820", + "label": "By or under the direction of", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3130", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a17f9787-ba56-43d4-be5f-6fc91d29646e", + "label": "Youth rehabilitation requirement: Education", + "shortCode": "YRE1", + "level": "O", + "rank": 45000, + "userGroups": [], + "prompts": [ + { + "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label": "Period of education", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label": "Period of education", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label": "Period of education", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f6267956-11dd-4948-9a3a-1b3a3487dc0d", + "label": "Period of education", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6766cc06-f1de-443f-8a6b-2ba64cc222f4", + "label": "Local Authority", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3131", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b986b6ad-816c-44d6-bdf8-0df189732648", + "label": "Youth rehabilitation requirement: Exclusion not to enter for a period", + "shortCode": "YREX1", + "level": "O", + "rank": 45100, + "userGroups": [], + "prompts": [ + { + "id": "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", + "label": "Period of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6d322ff1-1d95-4053-ac79-19d1b7874f2d", + "label": "End date of exclusion", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a15102d7-a151-425a-a827-0e35bc159049", + "label": "Youth rehabilitation requirement: Exclusion not to enter with between dates", + "shortCode": "YREX2", + "level": "O", + "rank": 45200, + "userGroups": [], + "prompts": [ + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ac46c9c8-976d-40ef-a913-85c64a6859bc", + "label": "From date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9e41b95c-c776-4d95-b057-05b7fcb155aa", + "label": "Until date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "416684ab-755f-4958-ab83-2795a21d62a3", + "label": "Youth rehabilitation requirement: Exclusion not to enter for a period with electronic monitoring", + "shortCode": "YREX3", + "level": "O", + "rank": 45300, + "userGroups": [], + "prompts": [ + { + "id": "e4f5a70e-c140-4993-ba09-e07ae067a758", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e4f5a70e-c140-4993-ba09-e07ae067a758", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e4f5a70e-c140-4993-ba09-e07ae067a758", + "label": "Exclusion and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2fcf2607-6619-4072-a348-77f6afb500f3", + "label": "Place / area", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", + "label": "Start date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f02e3b28-83e7-4650-a8e1-810bbb464bb4", + "label": "Start time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", + "label": "End date for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "487358be-eccc-46e4-aa8e-e41495638a2c", + "label": "End time for tag", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3106", + "adjournment": false, + "convicted": true, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d79c92bb-c301-491a-b4d2-cb86e473b5af", + "label": "Youth rehabilitation requirement: Curfew with electronic monitoring", + "shortCode": "YRC1", + "level": "O", + "rank": 45400, + "userGroups": [], + "prompts": [ + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f18d4d90-954d-4b27-9e70-f4be9c487b0e", + "label": "Start time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd6186a4-d928-47f1-abee-2466b9b80ebf", + "label": "End time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Curfew address, details and timings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAddressDetailAndTiming", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0f7eade6-3602-486c-8491-45e2bdee9960", + "label": "Youth rehabilitation requirement: Curfew", + "shortCode": "YRC2", + "level": "O", + "rank": 45500, + "userGroups": [], + "prompts": [ + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Curfew address, details and timings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAddressDetailAndTiming", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b8654020-f9ed-4707-8757-8db6efb323b9", + "label": "Youth rehabilitation requirement: Curfew with second address", + "shortCode": "YRC3", + "level": "O", + "rank": 45600, + "userGroups": [], + "prompts": [ + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Curfew address, details and timings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAddressDetailAndTiming", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "49939c7c-750f-403e-9ce1-f82e3e568065", + "label": "No separate penalty", + "shortCode": "NSP", + "level": "O", + "rank": 5200, + "wordGroups": [ + { + "wordGroup": [ + "NSP" + ] + }, + { + "wordGroup": [ + "seperate", + "penalty" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1057", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "78d6e77c-fb17-46ae-a719-66eacd6281a9", + "label": "Youth rehabilitation requirement: Curfew waived", + "shortCode": "YRC4", + "level": "O", + "rank": 45700, + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "040c7d54-3e56-4ed1-8004-d63ab3cd5128", + "label": "Date excused", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", + "label": "Excused time from", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ba3cd0c4-2bd0-4b02-9636-2064e293466b", + "label": "Excused time to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3a71ea3c-2083-4584-8c73-e7bb0608c468", + "label": "Excused reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e4fb2729-c6e4-4d32-b3f0-24285f625a87", + "label": "Other curfew requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label": "Start Date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": "responsibleOfficer", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0b5ce679-b262-436d-8f94-aa78de85022a", + "label": "Youth rehabilitation order with intensive supervision and surveillance England / Wales", + "shortCode": "YROISS", + "level": "O", + "rank": 45800, + "wordGroups": [ + { + "wordGroup": [ + "YROISS" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1142", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ae8c21a9-cf2a-487b-8fae-58d50c7104f0", + "label": "Youth rehabilitation order with fostering England / Wales", + "shortCode": "YROF", + "level": "O", + "rank": 45900, + "wordGroups": [ + { + "wordGroup": [ + "YROF" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", + "label": "Period of fostering", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", + "label": "Period of fostering", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", + "label": "Period of fostering", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label": "Start Date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9de7d91b-77a2-4de4-bde0-8481d1f5b42e", + "label": "Name of local authority", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": "responsibleOfficer", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1143", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e9bdae5d-5bec-456c-a361-52d0dae89e11", + "label": "Youth rehabilitation order Northern Ireland", + "shortCode": "YRONI", + "level": "O", + "rank": 46000, + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label": "Start Date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2216f87f-7e1c-489e-a481-8c941796db49", + "label": "Corresponding Northern Ireland order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "555a4eb3-548b-4b1e-84ee-8a000223da2f", + "label": "Relevant officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d8162d74-5d0f-4841-a013-eba02a267ae5", + "label": "Petty Sessional District in Northern Ireland", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1141", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "7dadfe69-9486-4edc-84ef-7d4f2e13633e", + "label": "Youth rehabilitation order with intensive supervision and surveillance Northern Ireland", + "shortCode": "YROINI", + "level": "O", + "rank": 46100, + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d5243234-31a2-11e8-b467-0ed5f89f718b", + "label": "Start Date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2216f87f-7e1c-489e-a481-8c941796db49", + "label": "Corresponding Northern Ireland order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "555a4eb3-548b-4b1e-84ee-8a000223da2f", + "label": "Relevant officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d8162d74-5d0f-4841-a013-eba02a267ae5", + "label": "Petty Sessional District in Northern Ireland", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02419e85-32f2-4beb-b10f-0f85a51c9de5", + "label": "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1142", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "48646574-8bd7-49f7-9fa1-3aeb60f7c059", + "label": "Youth rehabilitation requirement: Extended activity - specified", + "shortCode": "YREA1", + "level": "O", + "rank": 46200, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e0b217c9-73aa-48b2-b168-56dcd5c1e75c", + "label": "Extended activity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7365f685-e91e-4a5f-8021-34246eb56fcb", + "label": "Place to attend", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d0e31533-c60f-4b90-a98a-4a9678ecf69e", + "label": "Person to go to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "79deff01-d3b0-4453-b290-ea34c60ce3e9", + "label": "Youth rehabilitation requirement: Extended activity with residential exercise at a place", + "shortCode": "YREA2", + "level": "O", + "rank": 46300, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "72a96d2c-d41e-426f-a824-6dffc607ecfc", + "label": "Residential exercise place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", + "label": "Youth rehabilitation requirement: Extended activity with residential exercise", + "shortCode": "YREA3", + "level": "O", + "rank": 46400, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "496c25e3-fc0f-4a8e-be31-8ea5628a269a", + "label": "Period of residence exercise", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b85e1325-9fc1-436a-82f6-469f7f21de6a", + "label": "Extended activity", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "482da08b-4ef8-41a2-8a69-7b98d5581f5c", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", + "label": "Youth rehabilitation requirement: Extended activity - engage in activities in accordance with instructions of responsible officer", + "shortCode": "YREA4", + "level": "O", + "rank": 46500, + "userGroups": [], + "prompts": [ + { + "id": "d47ca68f-ff24-4c43-8870-3c1868022023", + "label": "Number of days", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "96bd9a5b-005c-42ac-b188-fcb786e53b4a", + "label": "Responsible officer may require participation in residential exercise for not more than 7 days", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3102", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Rehabilitation requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f029c131-16b3-4a6d-895d-00b609d858e9", + "label": "Referral order", + "shortCode": "YOP", + "level": "O", + "rank": 46600, + "userGroups": [], + "prompts": [ + { + "id": "4492f39a-37fa-4202-8913-868d88e56b2d", + "label": "Referral period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4492f39a-37fa-4202-8913-868d88e56b2d", + "label": "Referral period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label": "Total length of contract period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 1400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label": "Total length of contract period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 1400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a6e65d2-ecbc-471f-8433-5f95d478f650", + "label": "Youth Offender Panel name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d928400b-8f20-4b9e-aff5-868aafa4cc27", + "label": "Parent/Guardian's name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f56d8811-15fb-4f82-b91e-fef8fcce3885", + "label": "Parent/Guardian's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c6677a77-7028-4674-85c9-1cbc2f0e0088", + "label": "This parent / guardian must attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29b5ced8-4101-4073-8642-1fa52791098a", + "label": "This parent / guardian may attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "701fe552-5edd-477d-9fbf-4ed2c6e931e1", + "label": "A local authority representative must attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0c25627d-07d0-406c-9e8e-08081a649cf5", + "label": "A local authority representative may attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "848927d6-fcac-4e0d-96f7-92bb4455a162", + "label": "This is a second referral order", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f1619e53-cdb4-4979-8211-7f92134c38c6", + "label": "The Court certified the following facts", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", + "label": "The Court made the following remarks", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1097", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "685cc7e9-8bd1-4559-a05c-d8a7a89f9779", + "label": "Count to remain on file", + "shortCode": "cremfile", + "level": "O", + "rank": 5300, + "wordGroups": [ + { + "wordGroup": [ + "Lie", + "on", + "file" + ] + }, + { + "wordGroup": [ + "cremfile" + ] + }, + { + "wordGroup": [ + "Count", + "remain", + "file" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "2008", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "843f1ba4-af62-4b5b-a5f2-51128b08a128", + "label": "Referral order extended", + "shortCode": "YOPE", + "level": "O", + "rank": 46700, + "userGroups": [], + "prompts": [ + { + "id": "4492f39a-37fa-4202-8913-868d88e56b2d", + "label": "Referral period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4492f39a-37fa-4202-8913-868d88e56b2d", + "label": "Referral period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label": "Total length of contract period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 1300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "182985c0-5c26-4268-bd17-2f138b4ae8cc", + "label": "Total length of contract period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 1300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9a6e65d2-ecbc-471f-8433-5f95d478f650", + "label": "Youth Offender Panel name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5158481f-eceb-4920-b1f3-4811ddb1860b", + "label": "Youth offending team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d928400b-8f20-4b9e-aff5-868aafa4cc27", + "label": "Parent/Guardian's name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f56d8811-15fb-4f82-b91e-fef8fcce3885", + "label": "Parent/Guardian's address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c6677a77-7028-4674-85c9-1cbc2f0e0088", + "label": "This parent / guardian must attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29b5ced8-4101-4073-8642-1fa52791098a", + "label": "This parent / guardian may attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "701fe552-5edd-477d-9fbf-4ed2c6e931e1", + "label": "A local authority representative must attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0c25627d-07d0-406c-9e8e-08081a649cf5", + "label": "A local authority representative may attend meetings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f1619e53-cdb4-4979-8211-7f92134c38c6", + "label": "The Court certified the following facts", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", + "label": "The Court made the following remarks", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1097", + "adjournment": false, + "convicted": true, + "qualifier": "E", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b4cd9c69-ed12-4d23-948c-f35e7386a05f", + "label": "Committed to prison for refusal to be sworn", + "shortCode": "RSWN", + "level": "O", + "rank": 46800, + "wordGroups": [ + { + "wordGroup": [ + "prison", + "refuse", + "evidence" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ] + }, + { + "id": "5f938747-a0aa-47b7-84a5-31fe87cfb15b", + "label": "Committed to prison for refusal to affirm", + "shortCode": "AFM", + "level": "O", + "rank": 46900, + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ] + }, + { + "id": "005c9631-a1f1-4222-9702-88fb9368a17c", + "label": "Committed to prison for refusal to produce documents", + "shortCode": "CPRPD", + "level": "O", + "rank": 47000, + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "dbb41b1a-a302-485f-96f9-1632c7ce1eff", + "label": "Documents or items to be produced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ] + }, + { + "id": "381f97b8-b8c8-45b0-a8d6-ac8f58da5493", + "label": "Committed to prison for refusal to give evidence and produce documents", + "shortCode": "EVP", + "level": "O", + "rank": 47100, + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "dbb41b1a-a302-485f-96f9-1632c7ce1eff", + "label": "Documents or items to be produced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ] + }, + { + "id": "c09416e2-327c-11e8-b467-0ed5f89f718b", + "label": "Committed to prison for refusal to give evidence", + "shortCode": "EV", + "level": "O", + "rank": 47200, + "userGroups": [], + "prompts": [ + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "9b43a5f4-2688-4534-92c3-82c0b106b59c", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ] + }, + { + "id": "8c67b30a-418c-11e8-842f-0ed5f89f718b", + "label": "Defendant's details changed", + "shortCode": "DDCH", + "level": "D", + "rank": 47300, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4592", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "98138ec8-5dd3-11e8-9c2d-fa7ae01bbebc", + "label": "Text", + "shortCode": "TEXT", + "level": "O", + "rank": 47400, + "userGroups": [], + "prompts": [ + { + "id": "b4ac2e46-5dd3-11e8-9c2d-fa7ae01bbebc", + "label": "Text", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", + "label": "Reserve Terms Lump sum plus instalments", + "shortCode": "RLSUMI", + "level": "C", + "rank": 47600, + "wordGroups": [ + { + "wordGroup": [ + "pay", + "reserve", + "terms", + "lump", + "sum", + "instalments" + ] + }, + { + "wordGroup": [ + "reserve", + "terms", + "lump", + "sum", + "instalments" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8e235a65-5ea2-4fff-ba3b-6cdb74195436", + "label": "Lump sum amount", + "welshLabel": "Cyfanswm y lwmp swm", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "LSA", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1393acda-7a35-4d65-859d-6298e1470cf1", + "label": "Instalment amount", + "welshLabel": "Swm y rhandaliad", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "IAMT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b487696e-dfc9-4c89-80d3-337a4319e925", + "label": "Instalment start date", + "welshLabel": "Dyddiad cychwyn y rhandaliad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f2a61e80-c13e-4f44-8e91-8ce23e85596b", + "label": "Payment frequency", + "welshLabel": "Amlder y taliadau", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual": null, + "reference": "PF", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Lwmp swm a rhandaliadau - Telerau Wrth Gefn", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2236c06f-ad8e-4620-abbe-0ee214fa885c", + "label": "Count quashed", + "shortCode": "CQUASH", + "level": "O", + "rank": 5400, + "wordGroups": [ + { + "wordGroup": [ + "Count", + "quashed" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", + "label": "Reserve Terms Instalments only", + "shortCode": "RINSTL", + "level": "C", + "rank": 47700, + "wordGroups": [ + { + "wordGroup": [ + "pay", + "reserve", + "terms", + "instalments" + ] + }, + { + "wordGroup": [ + "reserve", + "terms", + "instalments" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1393acda-7a35-4d65-859d-6298e1470cf1", + "label": "Instalment amount", + "welshLabel": "Swm y rhandaliad", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "IAMT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f2a61e80-c13e-4f44-8e91-8ce23e85596b", + "label": "Payment frequency", + "welshLabel": "Amlder y taliadau", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual": null, + "reference": "PF", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e091af2e-43d0-495d-b3b0-432010358a45", + "label": "Instalment start date", + "welshLabel": "Dyddiad cychwyn y rhandaliad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "ISTD", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rhandaliadau yn unig - Telerau Wrth Gefn", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", + "label": "Lump sum plus instalments", + "shortCode": "LUMSI", + "level": "C", + "rank": 47800, + "wordGroups": [ + { + "wordGroup": [ + "pay", + "lump", + "sum", + "instalments" + ] + }, + { + "wordGroup": [ + "lump", + "sum", + "instalments" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "11ba492a-e2ad-11e8-9f32-f2801f1b9fd1", + "label": "Lump sum amount", + "welshLabel": "Cyfanswm y lwmp swm", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "LSA", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1393acda-7a35-4d65-859d-6298e1470cf1", + "label": "Instalment amount", + "welshLabel": "Swm y rhandaliad", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "IAMT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fb4f761c-29d0-4a8e-a947-3debf281dab0", + "label": "Payment frequency following lump sum", + "welshLabel": "Amlder y taliadau yn dilyn lwmp swm", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual": null, + "reference": "PF", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e091af2e-43d0-495d-b3b0-432010358a45", + "label": "Instalment start date", + "welshLabel": "Dyddiad cychwyn y rhandaliad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "ISTD", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", + "label": "Parent / Guardian to pay", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PARENT_GAURDIAN_TO_PAY", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", + "label": "Number of days in default", + "welshLabel": "Nifer y diwrnodau lle erys y ddyled heb ei thalu", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "DID", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d0f08c9c-e1e5-46eb-b573-f1728bc51414", + "label": "Payment card required", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PAYMENT_CARD_REQUIRED", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Lwmp swm a rhandaliadau", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", + "label": "Instalments only", + "shortCode": "INSTL", + "level": "C", + "rank": 47900, + "wordGroups": [ + { + "wordGroup": [ + "pay", + "instalments", + "only" + ] + }, + { + "wordGroup": [ + "instalments", + "only" + ] + }, + { + "wordGroup": [ + "INSTL" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1393acda-7a35-4d65-859d-6298e1470cf1", + "label": "Instalment amount", + "welshLabel": "Swm y rhandaliad", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "IAMT", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f2a61e80-c13e-4f44-8e91-8ce23e85596b", + "label": "Payment frequency", + "welshLabel": "Amlder y taliadau", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", + "qual": null, + "reference": "PF", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e091af2e-43d0-495d-b3b0-432010358a45", + "label": "Instalment start date", + "welshLabel": "Dyddiad cychwyn y rhandaliad", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "ISTD", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", + "label": "Parent / Guardian to pay", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PARENT_GAURDIAN_TO_PAY", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", + "label": "Number of days in default", + "welshLabel": "Nifer y diwrnodau lle erys y ddyled heb ei thalu", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "DID", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d0f08c9c-e1e5-46eb-b573-f1728bc51414", + "label": "Payment card required", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "PAYMENT_CARD_REQUIRED", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rhandaliadau yn unig", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Payment terms", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4871697d-6dd1-4da2-8894-707e6b13c361", + "version": "2021-02-25T12:43:06.714Z", + "startDate": "2021-02-26", + "label": "Reserve Terms", + "shortCode": "RT", + "level": "D", + "rank": 8500, + "userGroups": [ + ], + "welshLabel": "Telerau Wrth Gefn", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "I", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "jurisdiction": "B", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", + "ruleType": "oneOf" + } + ], + "isAvailableForCourtExtract": false, + "isBooleanResult": false + }, + { + "id": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", + "version": "2022-01-10T09:35:43.154Z", + "startDate": "2022-01-11", + "label": "Application made for benefit deductions", + "shortCode": "ABDC", + "level": "D", + "rank": 600, + "wordGroups": [ + { + "wordGroup": [ + "application", + "benefit", + "deductions" + ] + }, + { + "wordGroup": [ + "ABDC" + ] + } + ], + "prompts": [ + { + "id": "91687bb9-d0ca-44a7-ada0-b89b71b89b8e", + "label": "DWP AP number", + "welshLabel": "Rhif AP DWP", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "financial": "N", + "reference": "dWPAPNumber", + "userGroups": [ + "CPS", + "Defence", + "Judiciary", + "NCES", + "Probation", + "Prosecuting Authorities", + "YOTs" + ], + "min": "0", + "max": "10", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "8273d5ba-680e-11e8-adc0-fa7ae01bbebc", + "label": "Reason", + "welshLabel": "Rheswm", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 100, + "financial": "N", + "reference": "reason", + "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Cais wedi'i wneud am ddidyniadau o fudd-dal", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "N", + "d20": false, + "cjsCode": "1514", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "M", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "4871697d-6dd1-4da2-8894-707e6b13c361", + "ruleType": "mandatory" + } + ], + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "bdb32555-8d55-4dc1-b4b6-580db5132496", + "label": "Attachment of earnings order", + "shortCode": "AEOC", + "level": "C", + "rank": 48100, + "wordGroups": [ + { + "wordGroup": [ + "attachment", + "earnings", + "Order" + ] + }, + { + "wordGroup": [ + "AEOC" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a289b1bd-06c8-4da3-b117-0bae6017857c", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "485f7d22-718c-4f47-bbd5-f8d934417a03", + "label": "Employer's name", + "welshLabel": "Enw eich cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "86854563-b404-4cd4-9c05-50f1e61a0bfe", + "label": "Employer's address Line 1", + "welshLabel": "Llinell gyntaf cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerAddress1", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef87b9fe-1d9d-46a2-b094-ce5ba24a9835", + "label": "Employer's address Line 2", + "welshLabel": "Ail linell cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerAddress2", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "df1d55f8-29dd-42d2-8f99-cb4d369cb38b", + "label": "Employer's address Line 3", + "welshLabel": "Trydedd linell cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerAddress3", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d3d8e5dc-4ced-4d57-bcbb-5de8f91a580a", + "label": "Employer's address Line 4", + "welshLabel": "Pedwaredd llinell cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerAddress4", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a812f1c7-96df-4d8d-9684-25e4e227b2e2", + "label": "Employer's address Line 5", + "welshLabel": "Pumed llinell cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerAddress5", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4ff32fe8-5508-4b7e-8e6f-b3e79763a9fe", + "label": "Employer's post code", + "welshLabel": "Cod post cyfeiriad y cyflogwr", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerPostCode", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "eb1d0fdc-2e51-4e98-9f6e-ee0daa14c157", + "label": "Employee reference number", + "welshLabel": "Cyfeirnod y cyflogai", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "employerReferenceNumber", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Gorchymyn Atafaelu Enillion", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1511", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "76d43772-0660-4a33-b5c6-8f8ccaf6b4e3", + "label": "Costs", + "shortCode": "FCOST", + "level": "C", + "rank": 48200, + "wordGroups": [ + { + "wordGroup": [ + "FCOST" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "db261fd9-c6bb-4e10-b93f-9fd98418f7b0", + "label": "Amount of costs", + "welshLabel": "Swm y costau", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOC", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "22ebf965-8a1c-4229-9894-0df7f8117753", + "label": "Major creditor name", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", + "qual": null, + "reference": "CREDNAME", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "043faecf-e97c-4daf-9763-4b755d941b45", + "label": "Minor creditor title", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "202afd61-e9fb-4bc7-aad6-f0a5799406e2", + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", + "label": "Minor creditor company name", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", + "label": "Minor creditor surname", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", + "label": "Minor creditor initials", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "41576571-5573-498b-a9e9-eee24f7a67fa", + "label": "Minor creditor forename(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", + "label": "Minor creditor address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", + "label": "Minor creditor postcode", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + } + ], + "welshLabel": "Costau", + "isAvailableForCourtExtract": true, + "financial": true, + "category": "F", + "cjsCode": "3011", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c514dcec-804c-11e8-adc0-fa7ae01bbebc", + "label": "Adjournment reason: Equivocal plea", + "shortCode": "EP", + "level": "O", + "rank": 48300, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "equivocal", + "plea" + ] + }, + { + "wordGroup": [ + "adjournment", + "equivocal" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio: Ple amhendant", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "GC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", + "label": "Adjournment reason: To attend or to return the plea form sent with the summons", + "shortCode": "AP", + "level": "O", + "rank": 48400, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "return" + ] + }, + { + "wordGroup": [ + "adjournment", + "attend" + ] + }, + { + "wordGroup": [ + "adjournment", + "appear", + "proceed", + "prove", + "Absence" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio: I fynychu neu i ddychwelyd y ffurflen pledio a anfonwyd gyda'r wŷs", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "DM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Next hearing in magistrates' court", + "shortCode": "NHMC", + "level": "O", + "rank": 48500, + "wordGroups": [ + { + "wordGroup": [ + "NHMC" + ] + }, + { + "wordGroup": [ + "next", + "hearing", + "magistrates" + ] + }, + { + "wordGroup": [ + "adjournment", + "magistrates" + ] + } + ], + "userGroups": [], + "resultTextTemplate": "hearing on {HDATE}[ at {timeOfHearing}][ in {HCROOM},] {HCHOUSE~Name}", + "prompts": [ + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", + "label": "Booking reference", + "resultPromptRule": "optional", + "type": "TXT", + "nameEmail": false, + "hidden": true, + "associateToReferenceData": false, + "sequence": 700, + "userGroups": [], + "courtExtract": "N", + "financial": "N", + "jurisdiction": "M", + "min": "1", + "max": "50", + "reference": "bookingReference" + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress1", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine1", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress2", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine2", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 3", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress3", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine3", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 4", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress4", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine4", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEAddress5", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine5", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEPostCode", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "PostCode", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "welshLabel": "Ystafell Llys", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "financial": "N", + "reference": "HCROOM", + "userGroups": [ + ], + "min": "1", + "max": "99", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "referenceDataKey": "HCROOM", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, + "financial": "N", + "reference": "hCHOUSEOrganisationName", + "userGroups": [ + ], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "OrganisationName", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Hours", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Minutes", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HEST", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", + "label": "Date of hearig", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HDATE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dfac671c-5b85-42a1-bb66-9aeee388a08d", + "label": "Time of hearing", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTIME", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 200, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "courtExtract": "Y", + "financial": "N", + "jurisdiction": "B", + "reference": "timeOfHearing" + }, + { + "id": "5f507153-6dc9-4ec0-94db-c821eff333f1", + "label": "Courtroom", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HCROOM", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse name", + "welshLabel": "Enw’r adeilad llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HCHOUSE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "sequence": 15, + "mandatory": false, + "userGroups": [ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" + ], + "reference": "totalCustodialPeriod", + "type": "TXT", + "welshLabel": "TBD" + }, + { + "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", + "label": "End Date", + "mandatory": false, + "type": "DATE", + "sequence": 16, + "userGroups": [ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" + ], + "reference": "endDate", + "welshLabel": "TBD" + }, + { + "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", + "label": "First review date", + "reference": "firstReviewDate", + "mandatory": false, + "type": "DATE", + "sequence": 17, + "userGroups": [ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" + ], + "welshLabel": "TBD" + }, + { + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "HTYPE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f622f008-f8e7-4f34-a7df-df85a7ed4d47", + "label": "First review time", + "reference": "firstReviewTime", + "mandatory": false, + "type": "TIME", + "sequence": 18, + "userGroups": [ + "Court Clerks", + "Probation Admin", + "Police Admin", + "Victims & Witness Care Admin", + "Youth Offending Service Admin" + ], + "welshLabel": "TBD" + } + ], + "welshLabel": "Ni wnaeth y Llys barhau â’r treial yn absenoldeb y diffynnydd", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Next hearing", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + {"id":"d278650c-e429-11e8-9f32-f2801f1b9fd1","version":"2024-04-09T14:34:40.618Z","startDate":"2024-04-10","label":"Adjournment","shortCode":"A","level":"O","rank":194200,"wordGroups":[{"wordGroup":["A","adjournment"]}],"prompts":[{"id":"9d4df7b9-bd70-4142-86be-8023531a1d95","label":"THIS NOTICE IS FOR PERSONAL SERVICE","welshLabel":"Mae'r hysbysiad hwn ar gyfer gwasanaeth personol","resultPromptRule":"optional","type":"BOOLEAN","sequence":300,"financial":"N","reference":"tHISNOTICEISFORPERSONALSERVICE","wordGroup":["Service"],"userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"61f951c3-f18d-4a44-ae4a-0cad4efb4133","label":"Defendant to attend the next hearing","welshLabel":"Diffynnydd i fynychu’r gwrandawiad nesaf","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":100,"financial":"N","reference":"defendantToAttendTheNextHearing","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"150a22a8-05d0-4be1-ada7-a0d512a63b5d","label":"Defendant excused attendance at next hearing","welshLabel":"Nid oes rhaid i'r diffynnydd fod yn bresennol yn y gwrandawiad nesaf","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":200,"financial":"N","reference":"defendantExcusedAttendanceAtNextHearing","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false}],"welshLabel":"Gohiriad","financial":"N","unscheduled":false,"adjournment":"N","policeSubjectLineTitle":"Adjourned","category":"I","urgent":false,"convicted":"N","d20":false,"cjsCode":"4506","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":false,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","lCode":"A","resultWording":"","resultDefinitionRules":[{"childResultDefinitionId":"f00359b5-7303-403b-b59e-0b1a1daa89bc","ruleType":"mandatory"},{"childResultDefinitionId":"7fc17a01-2f5a-4433-aae9-28e0c959f73b","ruleType":"mandatory"}],"canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"Adjourned for %NEXH%. Reason: %ADJR%. {defendantToAttendTheNextHearing}{defendantExcusedAttendanceAtNextHearing}.","isAvailableForCourtExtract":true,"isBooleanResult":false}, + { + "id": "5ec54bfb-cde0-4ad2-bf87-d266e54fe072", + "label": "Indictment to remain on file", + "shortCode": "IREMFILE", + "level": "O", + "rank": 5500, + "wordGroups": [ + { + "wordGroup": [ + "indictment", + "remain", + "file" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "2008", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2852b770-a7ad-11e8-98d0-529269fb1459", + "label": "Forfeiture and destruction", + "shortCode": "FDEST", + "level": "O", + "rank": 7700, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "destruction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "13efdd20-a7ae-11e8-98d0-529269fb1459", + "label": "Property to be forfeited and destroyed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7cca9a0e-b11f-4863-9fec-45b9b13f946b", + "label": "Forfeiture and destruction ordered under", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "26d4c112-a7ae-11e8-98d0-529269fb1459", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4a30821a-a7b6-11e8-98d0-529269fb1459", + "label": "Responsible for destroying property", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ea26f773-0a91-4526-b4ad-84d07b5bf940", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3135", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", + "version": "2021-02-25T12:41:20.415Z", + "startDate": "2021-02-26", + "label": "Pay by date", + "shortCode": "PDATE", + "level": "D", + "rank": 76700, + "wordGroups": [ + { + "wordGroup": [ + "PDATE" + ] + }, + { + "wordGroup": [ + "PBD", + "pay", + "full", + "date" + ] + } + ], + "prompts": [ + { + "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", + "label": "Parent / Guardian to pay", + "welshLabel": "Rhiant / Gwarcheidwad i dalu", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "financial": "N", + "reference": "PARENT_GAURDIAN_TO_PAY", + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "ee7d253a-c629-11e8-a355-529269fb1459", + "label": "Date to pay in full by", + "welshLabel": "Dyddiad terfyn ar gyfer talu'r swm llawn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "financial": "N", + "reference": "PBD", + "userGroups": [ + ], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", + "label": "Number of days in default", + "welshLabel": "Nifer y diwrnodau y mae'r ddyled heb ei thalu", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "financial": "N", + "reference": "DID", + "userGroups": [ + ], + "min": "1", + "max": "999", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Dyddiad terfyn ar gyfer talu", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Payment terms", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "M", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "de946ddc-ad77-44b1-8480-8bbc251cdcfb", + "label": "Court house detention until court rises", + "shortCode": "FIDICI", + "level": "O", + "rank": 48800, + "wordGroups": [ + { + "wordGroup": [ + "court", + "rises", + "until", + "detention" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "9be231c5-e4e3-4294-872e-e0ad6c9a39a4", + "label": "Type of detention", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "5769e88c-82c6-457d-9a5e-652a96ec105c", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c92fdcfc-ac7d-4692-a475-de88467f6fcf", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label": "Total amount enforced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "TOTENF", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "isDeemedServed": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5c023b16-e79c-4eb5-9673-e23accbeb35b", + "label": "Court house detention until time", + "shortCode": "FIDICTI", + "level": "O", + "rank": 48900, + "wordGroups": [ + { + "wordGroup": [ + "court", + "Time", + "until", + "detention" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0fd18b3d-d55e-4e6c-adfe-e45ad2241e5e", + "label": "Time of release", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label": "Total amount enforced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "TOTENF", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0e390ae0-8f3c-4735-8c0d-c16e8962537a", + "label": "Detention in police station", + "shortCode": "FIDIPI", + "level": "O", + "rank": 49000, + "wordGroups": [ + { + "wordGroup": [ + "detention", + "police", + "station" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a0e5f5aa-ce4d-41fa-94ba-c2fb293659b4", + "label": "Time of release (by 8pm)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "668cda4e-a5b7-48cf-a24c-49f8927d55e1", + "label": "Reason for decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6d2296be-3631-4a13-bfef-6be1d950cf20", + "label": "Police Force providing police station to detain defendant", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9f78d3db-de59-47b3-a206-8e0c20dccc4a", + "label": "Total amount enforced", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "TOTENF", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "1509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "61c246d8-f771-4420-9e02-30f34c0305b1", + "label": "Community order amended - supervising court or end date", + "shortCode": "COA", + "level": "O", + "rank": 49100, + "wordGroups": [ + { + "wordGroup": [ + "Community", + "Order", + "amended" + ] + }, + { + "wordGroup": [ + "supervising", + "court" + ] + }, + { + "wordGroup": [ + "end", + "date" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0eba630e-a486-439f-8d76-b49b1363067c", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5f1f9ac-f624-4d44-9ad0-7c1e586eee3a", + "label": "Original end date of order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8a4af2f8-ee31-481e-847d-eb295896b975", + "label": "New supervising court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8bad6b87-9ad5-418f-b3a3-90386d7c2769", + "label": "Compliance date extended. All requiremets to be completed by", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1032", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4a026ff3-e1aa-407e-aafa-015723c1dbd0", + "label": "Community order amended", + "shortCode": "COV", + "level": "O", + "rank": 49300, + "wordGroups": [ + { + "wordGroup": [ + "Community", + "Order", + "amend" + ] + }, + { + "wordGroup": [ + "Requirement", + "cancelled" + ] + }, + { + "wordGroup": [ + "new", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "0eba630e-a486-439f-8d76-b49b1363067c", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "39355876-d028-48fa-82d8-ccedbe4312f8", + "label": "Date original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47f34fca-6355-4612-881a-07a2121b86ba", + "label": "Supervising court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1b12bc7b-dfc7-41b7-9c4e-8c6b53b53274", + "label": "Community requirements cancelled", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "faef913f-70ae-44cf-81dd-356c6dc41f0c", + "label": "The court made new community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", + "label": "The court amended a community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5e438d5-a7de-4be8-9a7d-3e07b8584f6a", + "label": "Original community requirements to continue", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "361cee65-0550-4c9a-9fbd-3a234e9431f1", + "label": "The end date of the order has been changed and the requirements must be complied with by", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06356516-5b1a-4036-afc5-2bb44a446a1a", + "label": "The end date of the order has not been changed and the requirements must be complied with by", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "27bf0204-a185-4e82-8c34-7317287513c8", + "label": "Responsible officer for the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", + "label": "Reason for change", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40d90a02-53a9-43ef-a96f-da9ad1b476b7", + "label": "The court made a new or varied an electronic monitoring requirement", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40f05056-4c54-4251-a7a1-666197409f20", + "label": "This is the first notification to contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c53e274f-ecbf-476e-971c-103a1d5a72d7", + "label": "This is a variation of an electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1933ca78-459c-47f0-b4a9-1a4507e19af6", + "label": "This is an additional electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6be2c968-d9b8-40fe-ba4d-f8d3c06ea129", + "label": "This is a continuation of an electronic monitoring reequirement", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1030", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fb1a3668-4675-4541-ad61-7ca3c24ca0cc", + "label": "Conviction quashed", + "shortCode": "QC", + "level": "O", + "rank": 50000, + "wordGroups": [ + { + "wordGroup": [ + "conviction", + "quashed" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "80dd4486-fa86-41f0-b09b-bad84b55f61c", + "label": "Date appeal heard", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "CADATE", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "55f15ecf-ea80-40f4-848d-29e7b8d73ae2", + "label": "Sentence varied", + "shortCode": "SV", + "level": "O", + "rank": 50100, + "wordGroups": [ + { + "wordGroup": [ + "sentence", + "varied" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "80dd4486-fa86-41f0-b09b-bad84b55f61c", + "label": "Date appeal heard", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "CADATE", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "02c8aef6-601a-46e8-bbe5-d614e0da764a", + "label": "Special measures direction: Witness to give evidence by means of a live link", + "shortCode": "SMLL", + "level": "C", + "rank": 50300, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "live", + "link" + ] + }, + { + "wordGroup": [ + "SMD", + "live", + "link" + ] + }, + { + "wordGroup": [ + "SMD", + "witness" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "2f08896a-07b0-45b9-b7da-f919b8520480", + "label": "Indictment quashed", + "shortCode": "IQUASH", + "level": "O", + "rank": 5600, + "wordGroups": [ + { + "wordGroup": [ + "indictment", + "quashed" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Special measures direction: A video recording be admitted of the evidence in chief of the interview", + "shortCode": "SMVR", + "level": "C", + "rank": 50400, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "video" + ] + }, + { + "wordGroup": [ + "SMD", + "video" + ] + }, + { + "wordGroup": [ + "SMD", + "in", + "chief" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", + "label": "In respect of witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "inRespectOfWitnessName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "79b64864-8c39-4724-be94-e2db853db393", + "label": "Date of interview", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef04068f-86d0-42a8-8fcf-ca12f340d57d", + "label": "The whole of the video recording disclosed to be admitted", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c472c5b7-9e50-4390-ae59-78d6ca607231", + "label": "Only the following specified part(s) of the video interview to be admitted, namely", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5c2c471c-08a0-46e5-8368-80d819fe4d19", + "label": "Cross examination of the witness and re-examination of the witness to be recorded by means of a video recording and such recording to be admitted in accordance with section 28 of the Youth Justice and Criminal Evidence Act 1999", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b172d954-5aca-447b-b19e-2c836053b0af", + "label": "Special measures direction: The recording must be made in the presence of specified person(s)", + "shortCode": "SMVS", + "level": "C", + "rank": 50500, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "recording", + "presence" + ] + }, + { + "wordGroup": [ + "SMD", + "recording", + "presence" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ef4d6fb2-d61c-4732-9e2c-b1c726be0f93", + "label": "Name(s)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "41a18cc7-3106-4e84-8f66-ad52fe6dee75", + "label": "Special measures direction: A video recording is not to be admitted because the requirements for its admission have not been complied with", + "shortCode": "SMVN", + "level": "C", + "rank": 50600, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "video", + "recording" + ] + }, + { + "wordGroup": [ + "SMD", + "video", + "recording" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", + "label": "In respect of witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "inRespectOfWitnessName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "79b64864-8c39-4724-be94-e2db853db393", + "label": "Date of interview", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ee74631f-c144-4a25-8a93-0253b98a7642", + "label": "Special measures direction: Witness be prevented from seeing the defendant by means of a screen", + "shortCode": "SMDW", + "level": "C", + "rank": 50700, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "screen" + ] + }, + { + "wordGroup": [ + "SMD", + "screen" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "702b365f-dde6-4543-8fb5-1324c6a84ec4", + "label": "Special measures direction: Witness be prevented from seeing the defendant by specified means", + "shortCode": "SMSM", + "level": "C", + "rank": 50800, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "witness", + "prevented" + ] + }, + { + "wordGroup": [ + "SMD", + "witness", + "prevented" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "62abea0f-310d-449a-bc9b-632796dec2d6", + "label": "Specified means", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", + "label": "Special measures direction: The examination is to be conducted through an intermediary", + "shortCode": "SMI", + "level": "C", + "rank": 50900, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "intermediary" + ] + }, + { + "wordGroup": [ + "SMD", + "intermediary" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", + "label": "In respect of witness name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "inRespectOfWitnessName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "eef5d23c-b75e-4601-9196-02d4ec70bb27", + "label": "Name of intermediary", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", + "label": "Special measures direction: Witness to give evidence in private", + "shortCode": "SMP", + "level": "C", + "rank": 51000, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "witness", + "private" + ] + }, + { + "wordGroup": [ + "SMD", + "witness", + "private" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8683b918-c2bd-49da-bc0a-844659e097e2", + "label": "This direction does not apply to one member of the press, namely", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "52218899-8f26-45cd-ae30-aeff5c189261", + "label": "Special measures direction: Wigs and gowns shall not be worn for the duration of the evidence of a specified witness", + "shortCode": "SMWG", + "level": "C", + "rank": 51100, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "wigs", + "gowns" + ] + }, + { + "wordGroup": [ + "SMD", + "wigs", + "gowns" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "633d192a-cc90-484e-aa1d-318816b7d44a", + "label": "Special measures direction: The accused \"in person\" shall not be permitted to cross-examine a specified witness", + "shortCode": "SMIP", + "level": "C", + "rank": 51200, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "in", + "person", + "cross", + "examine" + ] + }, + { + "wordGroup": [ + "SMD", + "in", + "person", + "cross", + "examine" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca43ea08-3a2b-49cf-bb7f-ac350cc519d6", + "label": "The court appoints a specified person for the purpose of cross examination of the witness, namely", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "67a91dc8-f4f9-4f80-b644-e219326045cc", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Special measures direction: Witness to be provided with an aid to commumication", + "shortCode": "SMAC", + "level": "C", + "rank": 51300, + "wordGroups": [ + { + "wordGroup": [ + "special", + "measures", + "direction", + "aid" + ] + }, + { + "wordGroup": [ + "SMD", + "aid" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c390d4e-3e46-4d75-9db8-961976e6d011", + "label": "Name of witness", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "nameOfWitness", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f539367f-b941-4873-9567-a235ffb81d85", + "label": "Device", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "device", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Special measures", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4850390f-13b3-4aa0-bae5-2dd0427b97eb", + "label": "Discontinued", + "shortCode": "disc", + "level": "O", + "rank": 5700, + "wordGroups": [ + { + "wordGroup": [ + "disc" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "2053", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", + "label": "The court directs that evidence relating to the bad character of the defendant be admitted in the proceedings", + "shortCode": "BCD", + "level": "C", + "rank": 51500, + "wordGroups": [ + { + "wordGroup": [ + "bad", + "character", + "direction", + "admitted", + "evidence" + ] + }, + { + "wordGroup": [ + "BCD", + "admitted" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bad character", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fe77f387-ee64-4cef-8e95-c0776b9799e7", + "label": "The court gives leave for evidence of the bad character of a person to be admitted in the proceedings", + "shortCode": "BCO", + "level": "C", + "rank": 51600, + "wordGroups": [ + { + "wordGroup": [ + "bad", + "character", + "direction", + "leave" + ] + }, + { + "wordGroup": [ + "BCD", + "leave" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6c27cf1e-8f99-4344-b783-62f527882256", + "label": "Name of person", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "06ae62bc-cec9-416f-9d86-d326b7b87c55", + "label": "Reasons for making the direction", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Bad character", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "27bbe7cb-5884-4b68-9c1e-a3373cce6ce6", + "label": "Suspended sentence order of imprisonment amended - supervising court or operational period or supervision period", + "shortCode": "SUSPA", + "level": "O", + "rank": 51700, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "sentence", + "amended", + "supervising" + ] + }, + { + "wordGroup": [ + "SUSPA" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label": "Period of imprisonment previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label": "Period of imprisonment previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label": "Period of imprisonment previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", + "label": "Period of imprisonment previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label": "Original operational period (time suspended for)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label": "Original operational period (time suspended for)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label": "The operational period (period of suspension) is extended to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label": "The operational period (period of suspension) is extended to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", + "label": "Specify court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c6d69d3-c5c3-41fd-b078-32439f516f0b", + "label": "Specify date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", + "label": "All community requirements are cancelled", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "27874127-6eee-4dac-b664-bf1796932b59", + "label": "New supervision period (in full)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8a4af2f8-ee31-481e-847d-eb295896b975", + "label": "New supervising court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1508", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "280a5606-c70a-432f-bdfe-a9dfd49f18c5", + "label": "Suspended sentence order of imprisonment amended", + "shortCode": "SUSPV", + "level": "O", + "rank": 51800, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "sentence", + "amended" + ] + }, + { + "wordGroup": [ + "SUSPV" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "7205f528-f69e-4950-9628-a9aff3e31a40", + "label": "Original total imprisonment period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7205f528-f69e-4950-9628-a9aff3e31a40", + "label": "Original total imprisonment period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7205f528-f69e-4950-9628-a9aff3e31a40", + "label": "Original total imprisonment period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7205f528-f69e-4950-9628-a9aff3e31a40", + "label": "Original total imprisonment period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0eba630e-a486-439f-8d76-b49b1363067c", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2a955180-259b-4492-9567-eec3c5ee6c27", + "label": "Date the original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47f34fca-6355-4612-881a-07a2121b86ba", + "label": "Supervising court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", + "label": "The original term of imprisonment is consecutive to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c2f5704c-66f6-4323-a893-d4a212f74bc7", + "label": "Community requirements cancelled", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "faef913f-70ae-44cf-81dd-356c6dc41f0c", + "label": "The court made new community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", + "label": "The court amended a community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02e44066-4850-4a74-8db6-1158f8324eb1", + "label": "Original community requirements to continue", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "27bf0204-a185-4e82-8c34-7317287513c8", + "label": "Responsible officer for the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", + "label": "Reason for change", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40d90a02-53a9-43ef-a96f-da9ad1b476b7", + "label": "The court made a new or varied an electronic monitoring requirement", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40f05056-4c54-4251-a7a1-666197409f20", + "label": "This is the first notification to contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c53e274f-ecbf-476e-971c-103a1d5a72d7", + "label": "This is a variation of an electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1933ca78-459c-47f0-b4a9-1a4507e19af6", + "label": "This is an additional electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", + "label": "This is a continuation of an electronic monitoring requirement", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1508", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "fe2670ca-8fe9-4558-86a8-c611a18fd866", + "label": "Witness summons", + "shortCode": "SUMWITN", + "level": "O", + "rank": 51900, + "wordGroups": [ + { + "wordGroup": [ + "witness", + "summons" + ] + }, + { + "wordGroup": [ + "SUMWITN" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a528bbfd-54b8-45d6-bad0-26a3a95eb274", + "label": "Date of hearing", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", + "label": "Time of hearing", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e498ec52-0adf-41cf-89e2-40955a418393", + "label": "Courthouse name", + "welshLabel": "Enw’r adeilad llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4b7bc1cf-e157-4f2f-9500-04dfa5504ff1", + "label": "Courthouse address", + "welshLabel": "Cyfeiriad y llys", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b0a4f0ea-2767-4327-8a49-6949bdf90791", + "label": "Witness date of birth", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fff16e2a-b141-4659-94f6-edcd9581f127", + "label": "Parent of witness name and address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0bb65e58-5d55-4f1a-8fb1-5d676b9f4cc3", + "label": "Parent of witness date of birth", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a85ecb60-5fb4-4a5d-95c4-771de5220f39", + "label": "Witness is required to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "854089e2-e9e1-45e7-bcf7-44de22bcc81d", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "00dbdd03-5c78-4a15-9787-f3843b90dade", + "label": "The specified documents or things are", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ed6c7388-9103-41c2-af4f-3fe69d8582e8", + "label": "Hearsay direction", + "shortCode": "HD", + "level": "C", + "rank": 52000, + "wordGroups": [ + { + "wordGroup": [ + "hearsay", + "direction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "2b04ace9-583f-4d2a-ae84-c3c377070f3c", + "label": "Hearsay direction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c5b29640-fb51-4483-a1a9-845b75c7e8a4", + "label": "Suspended sentence order of detention amended - supervising court or operational period or supervision period", + "shortCode": "SUSPAD", + "level": "O", + "rank": 52100, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "sentence", + "amend", + "supervising" + ] + }, + { + "wordGroup": [ + "SUSPAD" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label": "Period of detention previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label": "Period of detention previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label": "Period of detention previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", + "label": "Period of detention previously imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label": "Original operational period (time suspended for)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3bf8acdc-90c7-4a96-9a3b-93435207d89b", + "label": "Original operational period (time suspended for)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label": "The operational period (period of suspension) is extended to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", + "label": "The operational period (period of suspension) is extended to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", + "label": "Specify court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c6d69d3-c5c3-41fd-b078-32439f516f0b", + "label": "Specify date order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", + "label": "All community requirements are cancelled", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "27874127-6eee-4dac-b664-bf1796932b59", + "label": "New supervision period (in full)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8a4af2f8-ee31-481e-847d-eb295896b975", + "label": "New supervising court", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "726c4beb-9ead-4b6b-bed9-b761b5b43553", + "label": "Suspended sentence order of detention amended", + "shortCode": "SUSPVD", + "level": "O", + "rank": 52200, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "sentence", + "amend" + ] + }, + { + "wordGroup": [ + "SUSPVD" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "c711a619-92ac-449c-bd62-cf3218e986ad", + "label": "Original total detention period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c711a619-92ac-449c-bd62-cf3218e986ad", + "label": "Original total detention period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c711a619-92ac-449c-bd62-cf3218e986ad", + "label": "Original total detention period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c711a619-92ac-449c-bd62-cf3218e986ad", + "label": "Original total detention period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "961da051-d955-4016-b5cc-97f6c157958b", + "label": "Original or amended supervision period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0eba630e-a486-439f-8d76-b49b1363067c", + "label": "Court that made the original order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2a955180-259b-4492-9567-eec3c5ee6c27", + "label": "Date the original order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47f34fca-6355-4612-881a-07a2121b86ba", + "label": "Supervising court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", + "label": "The original term of imprisonment is consecutive to", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "12bca5a7-6dce-472f-b424-9d9e4a9e973d", + "label": "Community requirements cancelled", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "faef913f-70ae-44cf-81dd-356c6dc41f0c", + "label": "The court made new community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", + "label": "The court amended a community requirement(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "02e44066-4850-4a74-8db6-1158f8324eb1", + "label": "Original community requirements to continue", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "8075e5f7-6f85-49c2-8738-c60c192d7ea1", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "27bf0204-a185-4e82-8c34-7317287513c8", + "label": "Responsible officer for the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", + "label": "Reason for change", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40d90a02-53a9-43ef-a96f-da9ad1b476b7", + "label": "The court made a new or varied an electronic monitoring requirement", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "40f05056-4c54-4251-a7a1-666197409f20", + "label": "This is the first notification to contractor", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c53e274f-ecbf-476e-971c-103a1d5a72d7", + "label": "This is a variation of an electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1933ca78-459c-47f0-b4a9-1a4507e19af6", + "label": "This is an additional electronic monitoring requirement, the original order date was", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 1700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", + "label": "This is a continuation of an electronic monitoring requirement", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1508", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "3d2c05b3-fcd6-49c2-b5a9-52855be7f90a", + "label": "Summons on referral to other court", + "shortCode": "SUMRTO", + "level": "O", + "rank": 52300, + "userGroups": [], + "prompts": [ + { + "id": "a528bbfd-54b8-45d6-bad0-26a3a95eb274", + "label": "Date of hearing", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", + "label": "Time of hearing", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f5699b34-f32f-466e-b7d8-40b4173df154", + "label": "Magistrates' court", + "welshLabel": "Llys Ynadon", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dbbb47c9-2202-4913-9a0d-db0a048bfd5f", + "label": "Reason for referring to court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c20d50a5-d3f5-4ff7-9366-f0a27b0c95ac", + "label": "Case re-opened", + "shortCode": "ROPEN", + "level": "C", + "rank": 52400, + "userGroups": [], + "prompts": [ + { + "id": "dcc576fb-f2ad-486f-b907-43f9db32ae40", + "label": "Date re-opened", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b40c7eb-2095-4570-b56e-5ebbfe88e49a", + "label": "Libra account number", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "79aa0f1a-a79b-4923-afbf-29ee3a911ef6", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Total custodial period", + "shortCode": "TIMP", + "level": "D", + "rank": 5800, + "resultWording": "section 13(c)", + "userGroups": [], + "prompts": [ + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total imprisonment period", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalImprisonmentPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total imprisonment period", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalImprisonmentPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total imprisonment period", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalImprisonmentPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total imprisonment period", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalImprisonmentPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3a0bf7f8-674f-4b5f-998d-aae0e2b2842e", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 700, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": "sentencedInAbsence", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "19d9d7b4-a55c-4f52-8cca-edf9c63e98e5", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalSentenceConsequenceToWhat", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9dbe839c-3804-4c47-bf9e-5be6f9b9b3bb", + "label": "Total imprisonment period is life", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "totalImprisonmentPeriodInLife", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "21549bc3-5be9-4a91-abc7-57d8ed1b1676", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "reasonForSentenceWithoutPSR", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "266a2bbe-b6b5-4b24-830d-70ceff3e2cac", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "probationPeriodTobeNotified", + "isAvailableForCourtExtract": false, + "durationSequence": null + }, + { + "id": "52c9c1f5-2a00-45ee-bca3-024d43626773", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "600edfc3-a584-4f9f-a52e-5bb8a99646c1", + "label": "Refer for a full court hearing", + "shortCode": "SUMRCC", + "level": "O", + "rank": 52500, + "userGroups": [], + "prompts": [ + { + "id": "bca4e07c-17e0-48f1-84f4-7b6ff8bab5e2", + "label": "Reasons for referring to court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "a47a312a-79fe-4f3e-84ab-63a39f52bc75", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f7784e82-20b5-4d2c-b174-6fd57ebf8d7c", + "label": "Adjourn to a later SJP hearing session", + "shortCode": "ADJOURNSJP", + "level": "O", + "rank": 52600, + "userGroups": [], + "prompts": [ + { + "id": "185e6a04-8b44-430d-8073-d8d12f69733a", + "label": "Adjourn to date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0149ab92-5466-11e8-9c2d-fa7ae01bbebc", + "label": "Referred for resulting in another SJP session", + "shortCode": "SJPR", + "level": "C", + "rank": 52700, + "wordGroups": [ + { + "wordGroup": [ + "SJPR" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1e96d1a9-9618-4ddd-a925-ca6a0ef86018", + "label": "Transfer of Fine Order to a Court in England or Wales", + "shortCode": "TFOUT", + "level": "D", + "rank": 52800, + "wordGroups": [ + { + "wordGroup": [ + "transfer", + "fine" + ] + }, + { + "wordGroup": [ + "TFOUT" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "5f589095-2986-4d2b-98fa-30ab00f675d4", + "label": "Court to which fine is transferred", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "f31eadd5-41d4-4cff-98d8-effd946e7a09", + "label": "Full bail argument", + "shortCode": "FBA", + "level": "O", + "rank": 52900, + "wordGroups": [ + { + "wordGroup": [ + "full", + "argument" + ] + }, + { + "wordGroup": [ + "FBA" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "78c79d11-a1ba-4c34-89d2-5b25977af957", + "label": "The court certifies that full argument was heard on", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "474e4dc5-6751-4e31-849f-f03952b5597a", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8d29667b-15df-48af-9e5c-39b740b99d70", + "label": "New considerations were placed before the court and this change in circumstances was found", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4532", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4d2fc4cf-970e-49db-83af-2756e43e106e", + "label": "Unable to proceed with case on the Common Platform, entered into Libra", + "shortCode": "UNABLE", + "level": "C", + "rank": 49200, + "wordGroups": [ + { + "wordGroup": [ + "UNABLE" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d3139b79-696b-4cb7-a39d-7f06fcc24f4a", + "label": "Discharged", + "shortCode": "DISCH", + "level": "O", + "rank": 49400, + "wordGroups": [ + { + "wordGroup": [ + "not", + "guilty", + "discharged" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": true, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "19463792-2c34-4c4e-bbbe-fbac0955a314", + "label": "Anti-social behaviour injunction", + "shortCode": "ABI", + "level": "O", + "rank": 49500, + "wordGroups": [ + { + "wordGroup": [ + "anti", + "Social", + "behaviour", + "injunction" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "a13a81c9-113b-4156-8bf5-77280d5107b7", + "label": "Duration period for anti-social behaviour injunction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7f15a291-0e73-4055-8b6c-067f628646da", + "label": "Power of arrest attached to the following provisions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1c033a31-1fdd-400d-8277-cf520ef81de6", + "label": "Power of arrest period ", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0ecac709-0dbe-45a7-ac04-cca8454377cc", + "label": "Requirement supervisor for the injunction requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "33408f3d-885c-43f4-a4a8-76e37906569f", + "label": "Police force name (for power of arrest)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2da00d65-6cdc-4149-9d51-df6cb43d9729", + "label": "Police force address (for power of arrest) line 1", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ceb435f2-3d72-4b5a-929a-ce976881ace7", + "label": "Police force address (for power of arrest) line 2", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "aa72f5cb-221a-42ce-b1f3-81f110be0e12", + "label": "Police force address (for power of arrest) line 3", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6516de6a-2998-4ae5-9833-ea37b408558f", + "label": "Police force address (for power of arrest) line 4", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6dacab3d-a730-4020-aed3-15d442fbdff5", + "label": "Police force address (for power of arrest) line 5", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4a13b230-a819-4955-87d8-fe1f1318abc1", + "label": "Anti-social behaviour injunction requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "18266b45-aae2-43b5-8a0b-e647df78e61a", + "label": "Anti-social behaviour injunction prohibitions", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3516", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "32cc8e43-1d98-4fc9-a11a-265ea5af0715", + "label": "Credit for time", + "shortCode": "CREFT", + "level": "D", + "rank": 5900, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "3f4f9b75-418f-46ed-a311-230a6dbca6cb", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "0683d44b-c84f-49e7-b449-242bb6a9c60e", + "label": "Forfeiture and deprivation", + "shortCode": "FORAD", + "level": "O", + "rank": 7600, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "2852b770-a7ad-11e8-98d0-529269fb1459", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "32177be4-0a1f-4889-9ca2-c729f49d7d85", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "290435b9-cce7-43be-b340-1c7db48c5413", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e7ef0248-fe71-4733-8749-ff0c23a04f95", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "19026543-7d59-467b-9649-35ddf89b30cc", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7610d8a1-07fe-4e69-812d-22f821d3f334", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6532b8f4-7794-420a-9f30-8aced3e41517", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "661bdce3-ce01-4cb6-a152-6424540bbbce", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "label": "Adjournment reasons", + "shortCode": "ADJR", + "level": "O", + "rank": 33100, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio:", + "isAvailableForCourtExtract": false, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "c93c5a18-838a-41d3-a017-c203b37f5655", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "4958de15-8a0a-4d2b-9f7e-56e037cf03da", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c2eca548-4511-4023-bbe6-50fe0b679b4a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9fd6a4ef-1055-4e54-b035-f1130a524388", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c514dcec-804c-11e8-adc0-fa7ae01bbebc", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "version": "2022-01-10T09:35:48.476Z", + "startDate": "2022-01-11", + "label": "Payment terms", + "shortCode": "PAYT", + "level": "D", + "rank": 300, + "wordGroups": [ + { + "wordGroup": [ + "PAYT" + ] + }, + { + "wordGroup": [ + "terms", + "payment" + ] + } + ], + "userGroups": [ + ], + "welshLabel": "Telerau talu", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "jurisdiction": "B", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "a0b426c1-74b8-43cd-9885-f0f31625352e", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", + "ruleType": "oneOf" + } + ], + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "874911d0-acf2-4b6f-bcca-cacbb6bb2862", + "label": "Pre-release bail conditions", + "shortCode": "PREBC", + "level": "O", + "rank": 26900, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": false, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "4ddda002-526e-4d70-9df7-eeaae75cfab7", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d85486c4-06f1-4813-859b-5495ca578bde", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bb0a2862-a565-46aa-96ed-1e6f972949d0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1ebd5ca1-866d-43a0-ad9a-464e8a228235", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "279fd36e-17c5-42b2-b56b-a6ab27b9b592", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e5864697-640a-47be-9289-9e6205bbe579", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "4558f9b2-47f8-4430-a0f8-684df5d55761", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b9581c12-81c9-434d-8851-03d9638547fa", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b922e6bd-70a4-4b28-b583-165179af6162", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c51e3522-5363-4af0-b5af-97a5f9eb5462", + "ruleType": "atleastOneOf" + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "userGroups": [], + "resultTextTemplate": "%AllChildText%", + "terminatesOffenceProceedings": false + }, + { + "id": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Bail conditions", + "shortCode": "BAIC", + "level": "O", + "rank": 400, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": false, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "525c4660-9a0b-4a86-80fc-0efce539d6a5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e073f3ba-2585-4c0d-8c31-e51a1662d143", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1aa6a828-fedb-43bd-89e8-bc74586d5e85", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "136725da-5b0a-43d3-adac-54f916bcf2bb", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6889288e-5e4a-4523-be2c-cc993a00af29", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "0649851f-01f8-48fb-928d-6fe100042b2a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "03edddce-c188-4b38-9832-988d9d1ee802", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5c02ff4c-6a33-4089-8c9e-f120a688b018", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d45c8150-3095-4cb3-a55e-b4fd094af560", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "922386e1-bdc2-403e-8902-af1da14e1fd8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d34b643e-74d5-4288-a4b9-bce14d0069d5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "fb9b273e-06c3-4a4a-940c-3c053c559abe", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "481547e6-9099-475e-8028-2bce2c52ff5f", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dfa19118-e944-43f4-93b2-2ed49df5553f", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c1d490ed-1754-43b8-a485-fdab1a25f8cb", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "90146942-b1b9-4a2e-af2b-141f50d45e5c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9da5909e-d715-4f79-a1b8-34780c57acf1", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d709a455-02cc-40d9-b3d2-e4194dc46792", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "3c98b287-fd01-471a-ac34-e0a56d9e95c2", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "4c79ea50-6e14-4c47-8836-c0d0f647e45a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "834ed20a-d7d8-419b-b72d-61b30db36560", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "46051d94-0e60-4010-b86d-cf65e1a464d8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a50ad03e-d299-4da7-874c-0f233d7d503d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c18dd89d-e057-42aa-b071-0a91226da3bf", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "795079ed-4b5a-4750-b077-d653180d43ae", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "71efa12c-a68e-4537-ac7d-27ebf91557a6", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "36951b36-de01-45bc-91a7-1c68f5989ed5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "91141263-7f27-494f-95e9-04a113952974", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", + "ruleType": "atleastOneOf" + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "cacheable": 1, + "userGroups": [], + "resultTextTemplate": "%AllChildText%", + "welshLabel": "Amodau mechnïaeth", + "terminatesOffenceProceedings": false + }, + { + "id": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Next hearing", + "shortCode": "NEXH", + "level": "O", + "rank": 300, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Gwrandawiad nesaf", + "isAvailableForCourtExtract": false, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "fbed768b-ee95-4434-87c8-e81cbc8d24c8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", + "ruleType": "optional" + } + ] + }, + { + "id": "d076bd4a-17d5-4720-899a-1c6f96e3b35f", + "label": "Remand unconditional bail", + "shortCode": "REMUB", + "level": "O", + "rank": 32900, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "ruleType": "optional" + } + ] + }, + { + "id": "0056b9e1-7585-4bfa-82ec-f06202670bb1", + "label": "Remand in custody", + "shortCode": "REMIC", + "level": "O", + "rank": 33200, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "d0a369c9-5a28-40ec-99cb-da7943550b18", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "d30f1863-f319-49fd-855d-2cf3fa6b3cea", + "label": "Remand appeal", + "shortCode": "REMA", + "level": "O", + "rank": 33400, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6af22d8d-6157-460e-b641-e6db90d15289", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7a0932f5-8264-412e-a83c-2b6d1dce1506", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "074124d5-b07a-4b73-8b9a-792e8462138a", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "62cd1ba4-9aaf-413b-96b0-238cfc82ef18", + "label": "Press", + "shortCode": "PRESS", + "level": "O", + "rank": 34100, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "fcbf777d-1a73-47e7-ab9b-7c51091a022c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "89e3c24b-acbf-42fb-9eee-169b83423035", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c265d589-fcc0-451b-be43-7856e32524ba", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "393c5be8-dadb-484b-ab39-0f1eb57aeae5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9647428f-0946-4a09-aec1-7bdfcd324ac6", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "21271525-76f4-4134-9c93-1be012a574c8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d023e3a7-33ef-45b4-a19b-5137afecbf1f", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2c18aff1-b535-47b6-8415-8841e85eac49", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "335204e2-6b6e-4ea8-ae72-f3341ea75777", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2e725ba6-0e29-4ffb-a5c7-31b67344c211", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "98366b12-b70a-4e66-b71d-a5bbd39bd595", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b3035ace-15d4-44ca-9d79-c83a57dc0e30", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "84222bcb-05ac-4c67-82df-cc8742a850d1", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "07d8fab1-366d-43c5-bdb4-223f8c1229f5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bb90e801-0066-4bdf-85e6-8d64bc683f0c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "3f4f9b75-418f-46ed-a311-230a6dbca6cb", + "label": "Credit for time remanded on bail", + "shortCode": "CREDIT", + "level": "D", + "rank": 6000, + "wordGroups": [ + { + "wordGroup": [ + "Credit", + "remand", + "bail" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Credit for time", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "46bf6aa2-23f3-4c78-8c52-49b567d1193b", + "label": "Warrants of arrest", + "shortCode": "WAROA", + "level": "O", + "rank": 36200, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "c98cb51f-8639-49c1-91f0-a7e820c34355", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b4f7c223-b9d1-4409-b6d3-039f66eb9645", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "671df737-9901-4fa5-b245-aeff0c4c7495", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c8c962df-e28c-4ea8-8496-721badb77b7b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "73242763-44db-4d57-a855-44a6cf4f6226", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9b35f4f5-531e-48b4-858d-d81e15e77c23", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "31b29c58-cfd2-41c6-addf-53f5a2c99fdc", + "label": "Confiscation", + "shortCode": "CON", + "level": "O", + "rank": 38300, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "76b02133-4927-4f21-9f79-1ce361a17b0f", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "733545c5-5612-40b8-bd81-df1a6a154182", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "159c3430-fda4-4aea-8adc-62e4b6f07797", + "label": "Rehabilitation requirement", + "shortCode": "REHR", + "level": "O", + "rank": 42500, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "574fb809-4473-4a90-ba0f-519a50cfc9ec", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "55a1cab9-8aa6-41f6-a116-0345198324e6", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c5e204ce-9a2d-4911-96f7-e189565f429e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "191ec139-10b6-4b18-8a2c-1359425244c3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "536adc8b-1f26-43f0-9659-4bf25e2b42db", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1819e6a0-b13d-47e0-9027-388819457256", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "27528205-a237-471b-a487-7943e9284c44", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d3313cb9-c75e-45e4-b833-8479ff80f9ac", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "fb9fedf8-2b60-496b-8147-168233e81be3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5ab456c8-d272-4082-87ed-cd1f44a0603a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "8f979084-dc3b-4e71-bceb-87e30a4fc381", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "63f8c00a-2115-46a9-94ff-b30bbad0f287", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "30bd1b11-5336-486e-aae6-1285ab4c8d65", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "4e786114-e1c0-42bb-9c52-64edeffa3a3b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1e78e819-13fc-4e14-a263-c632e4e3c85e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "03a1cbef-e54a-4a00-bcd5-44350f882ced", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a17f9787-ba56-43d4-be5f-6fc91d29646e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b986b6ad-816c-44d6-bdf8-0df189732648", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a15102d7-a151-425a-a827-0e35bc159049", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "416684ab-755f-4958-ab83-2795a21d62a3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d79c92bb-c301-491a-b4d2-cb86e473b5af", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "0f7eade6-3602-486c-8491-45e2bdee9960", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b8654020-f9ed-4707-8757-8db6efb323b9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "78d6e77c-fb17-46ae-a719-66eacd6281a9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "48646574-8bd7-49f7-9fa1-3aeb60f7c059", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "79deff01-d3b0-4453-b290-ea34c60ce3e9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "0c5824cd-b6db-4c8f-a8c3-92e7e4cc0195", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Special measures", + "shortCode": "DIRS", + "level": "C", + "rank": 50200, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "02c8aef6-601a-46e8-bbe5-d614e0da764a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b172d954-5aca-447b-b19e-2c836053b0af", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "41a18cc7-3106-4e84-8f66-ad52fe6dee75", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ee74631f-c144-4a25-8a93-0253b98a7642", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "702b365f-dde6-4543-8fb5-1324c6a84ec4", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "52218899-8f26-45cd-ae30-aeff5c189261", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "633d192a-cc90-484e-aa1d-318816b7d44a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "67a91dc8-f4f9-4f80-b644-e219326045cc", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "92ccea16-370d-42cf-ae54-ed0951eaec95", + "label": "Bad character", + "shortCode": "BADC", + "level": "C", + "rank": 51400, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "fe77f387-ee64-4cef-8e95-c0776b9799e7", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "e7e02d63-46c2-4603-8255-921427f410fe", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Send To Crown Court On Conditional Bail", + "shortCode": "SendToCCOnCB", + "level": "O", + "rank": 53000, + "userGroups": [], + "prompts": [ + { + "id": "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", + "label": "Is the defendant excused attendance?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "defendantExcusedAttendance", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "80be59c8-ffaa-4570-b40a-f3a085058208", + "label": "Bail condition reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXLM", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "3740a41c-be28-40f3-8655-1b8cdf67a683", + "qual": null, + "reference": "bailConditionReason", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dec5104c-3342-4544-b287-31ea969e0f15", + "label": "BASS provider", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bassProvider", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ff80fa80-5839-4995-8eac-130c518a9b6b", + "label": "Additional reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalReasons", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4559", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "ruleType": "mandatory" + } + ] + }, + { + "id": "0118c2ad-9f50-4b0c-8f56-dff14b46b669", + "label": "Interim Anti-social behaviour injunction", + "shortCode": "ABII", + "level": "O", + "rank": 49600, + "userGroups": [], + "prompts": [ + { + "id": "2f1308c6-4fbf-4158-809b-5f382a0dafae", + "label": "Interim Anti-social behaviour injunction made on notice until further order of the court", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "904e7e42-5cf0-44e3-810f-1bc67d10027c", + "label": "Power of arrest attached to the following provisions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "33408f3d-885c-43f4-a4a8-76e37906569f", + "label": "Police force name (for power of arrest)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2da00d65-6cdc-4149-9d51-df6cb43d9729", + "label": "Police force address (for power of arrest) line 1", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ceb435f2-3d72-4b5a-929a-ce976881ace7", + "label": "Police force address (for power of arrest) line 2", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "aa72f5cb-221a-42ce-b1f3-81f110be0e12", + "label": "Police force address (for power of arrest) line 3", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6516de6a-2998-4ae5-9833-ea37b408558f", + "label": "Police force address (for power of arrest) line 4", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6dacab3d-a730-4020-aed3-15d442fbdff5", + "label": "Police force address (for power of arrest) line 5", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4a13b230-a819-4955-87d8-fe1f1318abc1", + "label": "Anti-social behaviour injunction requirements", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "18266b45-aae2-43b5-8a0b-e647df78e61a", + "label": "Anti-social behaviour injunction prohibitions", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3516", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1652f681-8b73-4b35-8982-d418e33e2dca", + "label": "Anti-social behaviour injunction discharged", + "shortCode": "ABID", + "level": "O", + "rank": 49700, + "userGroups": [], + "prompts": [ + { + "id": "9e013766-dc6b-4b33-8691-871cd95bbbb2", + "label": "Date anti-social behaviour injunction made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bacb7dc5-0a23-41c4-9e61-018aa99c7758", + "label": "Name of court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1eefddf4-76eb-4fe8-89d7-2c517bd6da99", + "label": "Name of youth on anti-social behaviour injunction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6b509d44-fb0e-463f-8b7f-675cb6903265", + "label": "Parent's name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0be420e0-d53a-4f8e-9b6e-bf32399a8139", + "label": "Parent's address line 1", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0059a0fb-4c1f-4404-a510-ee62103e0ac3", + "label": "Parent's address line 2", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e58ccaaf-b086-454c-945c-0e49e1ff3ac2", + "label": "Parent's address line 3", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "07ca67f2-f61d-43df-b5ba-195c7be45ed4", + "label": "Parent's address line 4", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5a4bca21-33ab-4676-be4e-47a6345e66bb", + "label": "Parent's address line 5", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0305f628-85c3-42d6-82b8-7145d7c6087b", + "label": "Police force address (for removal of power of arrest) Line 1", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "dbae711b-d60f-404c-bdac-323bcc2715d8", + "label": "Police force address (for removal of power of arrest) Line 2", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "88c1856d-a5d2-46d7-83db-3e6b9611e607", + "label": "Police station name (for power of arrest removal)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "53060dea-a815-492b-b426-79269ebfaafd", + "label": "Police force address (for removal of power of arrest) Line 3", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "699e217b-6eef-4536-8bbe-8865e7a6cb1f", + "label": "Police force address (for removal of power of arrest) Line 4", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "360992fa-96f8-4087-9cfa-fc2d6e23c931", + "label": "Police force address (for removal of power of arrest) Line 5", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3516", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5c27e390-2656-4117-8104-a41b15b2f01b", + "label": "Anti-social behaviour injunction detention order", + "shortCode": "ABIDO", + "level": "O", + "rank": 49800, + "userGroups": [], + "prompts": [ + { + "id": "ec2d9337-782d-4c1a-be49-2c03b52c4788", + "label": "Duration of detention in youth detention accomodation", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "701580e3-d5ea-4318-a8ad-0ecb00558215", + "label": "Rreasons why no other power is available to the court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3516", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "311c8e5c-6f22-44a7-8c97-f72324cb05c4", + "label": "Custody time limit", + "shortCode": "CTL", + "level": "O", + "rank": 53100, + "userGroups": [], + "prompts": [ + { + "id": "5348fd0e-0670-4811-997f-1baa78b06d62", + "label": "Custody time limit expires", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "CTLDATE", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4483c255-2761-4549-a70a-314aa311d052", + "label": "Time spent in custody (in days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "CTLTIME", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", + "label": "Credit for time in custody in foreign jurisdiction", + "shortCode": "CREDITF", + "level": "D", + "rank": 6100, + "wordGroups": [ + { + "wordGroup": [ + "Credit", + "foreign", + "custody" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Credit for time", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "66105417-41c8-420d-820f-40b61b507442", + "label": "Risk or vulnerability factors", + "shortCode": "vulnarability", + "level": "D", + "rank": 900, + "wordGroups": [ + { + "wordGroup": [ + "vulnarability", + "risk,vulnerability,factors" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5b3a1f08-8008-4a1d-94b1-e0d4e1bd44df", + "label": "Anti-social behaviour injunction detention order revoked ", + "shortCode": "ABIDOR", + "level": "O", + "rank": 49900, + "userGroups": [], + "prompts": [ + { + "id": "31305c79-6634-4ed7-8ab1-40af1f34f74e", + "label": "Date anti-social behaviour injunction detention order made", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "c108853c-bd16-4677-9352-af7a20395f72", + "label": "Name of youth in detention", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bacb7dc5-0a23-41c4-9e61-018aa99c7758", + "label": "Name of court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e76673b3-7ca8-4a32-898d-dfa2e6047f24", + "label": "Date of birth of youth in detention", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6927b6ac-4c85-4532-838d-88ac00ea83f9", + "label": "Conveyor / custodian name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3516", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4e170564-93b2-4d45-b653-90099acf8313", + "label": "Engagement and support order", + "shortCode": "ESO", + "level": "O", + "rank": 53200, + "userGroups": [], + "prompts": [ + { + "id": "7bc1e57b-4cae-4b3d-bd80-50a8d42b3b41", + "label": "Date by which meetings must take place", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "00f2671f-f825-406c-ad80-75ff13e837f9", + "label": "Name of supervisor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1e697e74-f38b-4388-a7b5-51d51180d2f2", + "label": "The Local Justice Area the defendant lives in", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1144", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5e253119-9aab-4d0d-8288-bcdbf3695d86", + "label": "Order", + "shortCode": "ORD", + "level": "O", + "rank": 53300, + "userGroups": [], + "prompts": [ + { + "id": "3da00e9f-7638-4f7d-9c98-275e74ac1e0e", + "label": "Order details", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", + "label": "Defendant to notify names and home address", + "shortCode": "DNNH", + "level": "O", + "rank": 800, + "userGroups": [], + "prompts": [ + { + "id": "ab67bee4-c673-4575-8bf9-d61385a93991", + "label": "Defendant to notify all names and home address within 3 days to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 10, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f3780cf0-2c88-4e91-b494-7b2e82196f30", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 110, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f9d5418b-eb45-4614-bfb6-0e64d6a8e032", + "label": "Defendant to notify names and home address to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "65f58042-5608-4d48-9aa9-3ba5ea38775e", + "label": "Method of notification", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ee8a9064-e558-47db-8b18-6818b1c120bf", + "label": "Slavery and trafficking prevention order", + "shortCode": "STPO", + "level": "O", + "rank": 19600, + "userGroups": [], + "prompts": [ + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2941bb34-b678-47b3-b897-b5b8d09a2617", + "label": "Duration of order", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "11f6a6ca-985b-4aa9-a6f2-de4214fcbe0f", + "label": "This order lasts until further order", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "56190eb2-0035-44cc-b904-b131f299835c", + "label": "Prohibitions contained in the order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3285", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", + "ruleType": "optional" + } + ] + }, + { + "id": "fcb26a5f-28cc-483e-b430-d823fac808df", + "label": "Excise penalty", + "shortCode": "excise, penalty", + "level": "O", + "rank": 53400, + "wordGroups": [ + { + "wordGroup": [ + "excise, penalty" + ] + }, + { + "wordGroup": [] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "b3dfed9a-efba-4126-a08d-cf37d18b4563", + "label": "Amount of excise penalty", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOF", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1119", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "68720a39-3bf6-4678-9d6b-40386da7d53a", + "label": "Warrant for arrest for breach of community penalty with bail (dated)", + "shortCode": "WCPD", + "level": "O", + "rank": 53500, + "userGroups": [], + "prompts": [ + { + "id": "2fa31208-5fed-4f52-a63e-c3a83cc733fa", + "label": "Reason for arrest is a failure to comply with the", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "24b40430-a75e-44ba-b367-bae3139b4d19", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9405e797-240e-4e71-ab35-43e90e3a8a5b", + "label": "Reason for the decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", + "label": "Warrant execution allocated to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "507c4249-d897-43bb-b64d-5c156ef6ba85", + "label": "Bail to be allowed on these conditions", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4575", + "adjournment": true, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + } + ] + }, + { + "id": "ed34136f-2a13-45a4-8d4f-27075ae3a8a9", + "label": "Warrant for arrest for breach of community penalty without bail", + "shortCode": "WCPN", + "level": "O", + "rank": 53600, + "userGroups": [], + "prompts": [ + { + "id": "2fa31208-5fed-4f52-a63e-c3a83cc733fa", + "label": "Reason for arrest is a failure to comply with the", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "24b40430-a75e-44ba-b367-bae3139b4d19", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9405e797-240e-4e71-ab35-43e90e3a8a5b", + "label": "Reason for the decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", + "label": "Warrant execution allocated to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4576", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "664d0c0d-115b-4d54-b137-301c9ed74ef9", + "label": "Recommended for deportation when released", + "shortCode": "RDEPD", + "level": "D", + "rank": 6200, + "wordGroups": [ + { + "wordGroup": [ + "deportation", + "release" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "16bb9f17-d3c3-42f1-a4dc-2d953114a214", + "label": "Nationality", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2cbae4d2-e4d0-4451-be7c-713c2a1a8974", + "label": "Residence and reporting restrictions etc", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3006", + "adjournment": false, + "convicted": false, + "qualifier": "CN", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0d1b161b-d6b0-4b1b-ae08-535864e4f631", + "label": "Warrant for arrest for community penalty breach with bail (undated)", + "shortCode": "WCPU", + "level": "O", + "rank": 53700, + "userGroups": [], + "prompts": [ + { + "id": "2fa31208-5fed-4f52-a63e-c3a83cc733fa", + "label": "Reason for arrest is a failure to comply with the", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "24b40430-a75e-44ba-b367-bae3139b4d19", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "9405e797-240e-4e71-ab35-43e90e3a8a5b", + "label": "Reason for the decision", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", + "label": "Warrant execution allocated to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "I", + "cjsCode": "4577", + "adjournment": true, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": true, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "491e30e9-2508-4e3a-9291-dfaf16d975ab", + "label": "Sent to Crown Court for trial", + "shortCode": "SCC", + "level": "O", + "rank": 53800, + "userGroups": [], + "prompts": [ + { + "id": "4362a1a4-aa80-4a68-ae61-f57962709f3d", + "label": "Sent for trial under", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": "999ecc93-0fd8-47d8-8b2d-9286c0c5d491", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f83671fb-7f2f-4b38-b6f3-71db90768485", + "label": "Indicated plea", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": "84d620c3-35ca-49ae-879d-95efaaf670af", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d7d2c7b1-f27a-44ed-a227-ea9b917f0229", + "label": "No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "654fce8c-238a-468a-92db-f7509394cf08", + "label": "A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5dfec956-547d-4e2b-b1f6-743376511589", + "label": "Trial issues identified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "49365935-e535-42db-bc41-a18c8fee5258", + "label": "Directions made", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8", + "label": "No indication given re victim personal statement", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6", + "label": "Victim wishes to read victim personal statement to court", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "583ea6cb-4251-406e-b07a-445fb0dde914", + "label": "Victim personal statement to be presented to court by prosecutor or other person", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e2b9a67c-cbd8-4479-89ff-57b2b6632835", + "label": "Additional details re victim personal statement", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7e657be6-9e6f-410d-ba6a-74cfedb1b3f9", + "label": "Probation / Youth Offending Team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "05496e53-66f5-47a0-9fff-f31cbd5191a0", + "label": "Was a PSR ordered?", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "BOOLEAN", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": null, + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ca16bc9f-9d62-4dd3-b8af-a77004ff8002", + "label": "Recommended for deportation when detained", + "shortCode": "RDEPN", + "level": "D", + "rank": 6300, + "wordGroups": [ + { + "wordGroup": [ + "deportation", + "detained" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "16bb9f17-d3c3-42f1-a4dc-2d953114a214", + "label": "Nationality", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "8c144a05-5804-4478-a419-12bab06748cc", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3006", + "adjournment": false, + "convicted": false, + "qualifier": "CQ", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "e866cd11-6073-4fdf-a229-51c9d694e1d0", + "label": "Surcharge", + "shortCode": "FVS", + "level": "D", + "rank": 6400, + "wordGroups": [ + { + "wordGroup": [ + "FVS" + ] + }, + { + "wordGroup": [ + "victim", + "surcharge" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "629a971e-9d7a-4526-838d-0a4cb922b5cb", + "label": "Amount of surcharge", + "welshLabel": "Swm y gordal", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOS", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Gordal", + "isAvailableForCourtExtract": true, + "financial": true, + "category": "A", + "cjsCode": "3117", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "5eb79085-3035-4a00-a549-6dd24abafe8c", + "label": "No action taken on breach", + "shortCode": "NOACT", + "level": "O", + "rank": 6500, + "wordGroups": [ + { + "wordGroup": [ + "action", + "breach" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "d144ad72-f68a-4b16-a145-ab3c95599dcc", + "label": "Imposing court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "13cd9c54-228b-4dd0-966b-93f4e9bf3a0b", + "label": "Date of original imposition", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e93c375f-bf25-4b76-ad7e-673a219d4f88", + "label": "Reason", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1087", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "969f150c-cd05-46b0-9dd9-30891efcc766", + "version": "2021-02-25T12:38:32.964Z", + "startDate": "2021-02-26", + "label": "Fine", + "shortCode": "FO", + "level": "O", + "rank": 22300, + "canExtendActiveOrder": true, + "wordGroups": [ + { + "wordGroup": [ + "FO", + "fine" + ] + } + ], + "prompts": [ + { + "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", + "label": "Amount of fine", + "welshLabel": "Swm y ddirwy", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "financial": "Y", + "reference": "AOF", + "wordGroup": [ + "Amount" + ], + "userGroups": [ + ], + "min": "0", + "max": "999999999", + "wording": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false, + "activeOrderExtended": true, + "activeOrderNotExtended": false + } + ], + "welshLabel": "Dirwy", + "financial": "Y", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "Y", + "d20": false, + "resultDefinitionGroup": "Imposition", + "cjsCode": "1015", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "jurisdiction": "B", + "libraCode": "FO", + "lCode": "FINE", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "9ea0d845-5096-44f6-9ce0-8ae801141eac", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "bdb32555-8d55-4dc1-b4b6-580db5132496", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", + "ruleType": "optional" + } + ], + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "f5d492b8-a09b-4f70-9ceb-aa06c306a7dc", + "rollUpPrompts": false, + "publishedForNows": true, + "label": "Costs to Crown Prosecution Service", + "shortCode": "FCPC", + "level": "C", + "rank": 6700, + "wordGroups": [ + { + "wordGroup": [ + "Costs", + "CPS" + ] + }, + { + "wordGroup": [ + "FCPC" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f63b0bb5-7d93-4dab-bc3d-b4bd27152871", + "label": "Amount of costs", + "welshLabel": "Swm y costau", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOC", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Costau i Wasanaeth Erlyn y Goron", + "isAvailableForCourtExtract": true, + "financial": true, + "category": "F", + "cjsCode": "3011", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ae89b99c-e0e3-47b5-b218-24d4fca3ca53", + "label": "Compensation", + "shortCode": "FCOMP", + "level": "O", + "rank": 6800, + "wordGroups": [ + { + "wordGroup": [ + "FCOMP" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "26985e5b-fe1f-4d7d-a21a-57207c5966e7", + "label": "Amount of compensation", + "welshLabel": "Swm yr iawndal", + "resultPromptRule": "mandatory", + "type": "CURR", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "AOCOM", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "af921cf4-06e7-4f6b-a4ea-dcb58aab0dbe", + "label": "Major creditor name", + "welshLabel": "Enw’r Prif Gredydwr", + "resultPromptRule": "oneOf", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", + "qual": null, + "reference": "CREDNAME", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", + "label": "Minor creditor company name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "043faecf-e97c-4daf-9763-4b755d941b45", + "label": "Minor creditor title", + "welshLabel": null, + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "202afd61-e9fb-4bc7-aad6-f0a5799406e2", + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", + "label": "Minor creditor surname", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", + "label": "Minor creditor initials", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "41576571-5573-498b-a9e9-eee24f7a67fa", + "label": "Minor creditor forename(s)", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", + "label": "Minor creditor address", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", + "label": "Minor creditor postcode", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "N", + "durationSequence": null + } + ], + "welshLabel": "Iawndal", + "isAvailableForCourtExtract": true, + "financial": true, + "category": "F", + "cjsCode": "3012", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "label": "Community requirement: Electronic monitoring whereabouts", + "shortCode": "EMW", + "level": "O", + "rank": 1400, + "wordGroups": [ + { + "wordGroup": [ + "Electronic", + "Monitoring", + "Whereabouts", + "first", + "GPS" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f18d4d90-954d-4b27-9e70-f4be9c487b0e", + "label": "Start time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd6186a4-d928-47f1-abee-2466b9b80ebf", + "label": "End time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3148", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ae617390-b41e-46ac-bd63-68a28512676a", + "label": "Community order Scotland", + "shortCode": "COS", + "level": "O", + "rank": 6900, + "wordGroups": [ + { + "wordGroup": [ + "Community", + "Order", + "scotland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad4f684d-0a83-4ee1-b04f-7864487eb41c", + "label": "Appropriate Scottish Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5cf339ba-1dd4-4476-99a5-281c833dd134", + "label": "Locality in Scotland", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "93861000-c4dd-449c-a876-83381beb9719", + "label": "Corresponding Scottish Order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1280d70e-ea43-42d3-8e96-ce72b8933876", + "label": "Persistent offender previously fined", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1116", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a19714a0-5d58-4666-bc15-3d9dd2692f77", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d683f73c-488e-4d8e-a685-d37049c2a3e5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "66aac609-8987-44cf-a0dc-fb49a7195090", + "label": "Community order Northern Ireland", + "shortCode": "CONI", + "level": "O", + "rank": 7000, + "wordGroups": [ + { + "wordGroup": [ + "Community", + "Order", + "ireland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 800, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1aa88c91-c4fa-404b-92d9-185157b8b0d4", + "label": "End Date", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", + "label": "Petty Sessions District", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b76491aa-02fe-4c14-80d7-4401cc1105e1", + "label": "Corresponding Northern Ireland Order", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": "responsibleOfficer", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "1280d70e-ea43-42d3-8e96-ce72b8933876", + "label": "Persistent offender previously fined", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1116", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a19714a0-5d58-4666-bc15-3d9dd2692f77", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d683f73c-488e-4d8e-a685-d37049c2a3e5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "ruleType": "atleastOneOf" + } + ] + }, + { + "id": "23f2178b-0083-4bd1-a830-d9c7291f02bd", + "label": "Suspended sentence order Scotland - imprisonment", + "shortCode": "SUSPSS", + "level": "O", + "rank": 7100, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "imprisonment", + "scotland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0f3114e6-b7b2-4281-8b96-168cbbcd064b", + "label": "Imprisonment reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad4f684d-0a83-4ee1-b04f-7864487eb41c", + "label": "Appropriate Scottish Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5cf339ba-1dd4-4476-99a5-281c833dd134", + "label": "Locality in Scotland", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1115", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "mandatory" + } + ] + }, + { + "id": "8fac72a9-3193-47ec-9010-e73158813cfd", + "label": "Suspended sentence order Northern Ireland - imprisonment", + "shortCode": "SUSPSNI", + "level": "O", + "rank": 7200, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "imprisonment", + "ireland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "0f3114e6-b7b2-4281-8b96-168cbbcd064b", + "label": "Imprisonment reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", + "label": "Petty Sessions District", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1115", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "mandatory" + } + ] + }, + { + "id": "9161f3cb-e821-44e5-a9ee-4680b358a037", + "label": "Guilty plea taken into account", + "shortCode": "GPTAC", + "level": "O", + "rank": 7300, + "wordGroups": [ + { + "wordGroup": [ + "Guility", + "plea", + "account" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1f413a5a-f385-4264-9e23-1fdc80455091", + "label": "Comment on discount / reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "554c2622-c1cc-459e-a98d-b7f317ab065c", + "label": "Conditional discharge", + "shortCode": "CD", + "level": "O", + "rank": 7400, + "wordGroups": [ + { + "wordGroup": [ + "conditional", + "discharge" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label": "Period of conditional discharge", + "welshLabel": "Cyfnod o ryddhad amodol", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label": "Period of conditional discharge", + "welshLabel": "Cyfnod o ryddhad amodol", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label": "Period of conditional discharge", + "welshLabel": "Cyfnod o ryddhad amodol", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "d3205319-84cf-4c5b-9d7a-7e4bb1865054", + "label": "Period of conditional discharge", + "welshLabel": "Cyfnod o ryddhad amodol", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + } + ], + "welshLabel": "Ryddhad Amodol", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1018", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b9c6047b-fb84-4b12-97a1-2175e4b8bbac", + "label": "Absolute discharge", + "shortCode": "AD", + "level": "O", + "rank": 7500, + "wordGroups": [ + { + "wordGroup": [ + "absolute", + "discharge" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rhyddhad diamod", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1017", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "32177be4-0a1f-4889-9ca2-c729f49d7d85", + "label": "Forfeiture order (other than vehicle)", + "shortCode": "forfov", + "level": "O", + "rank": 7800, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "destruction", + "vehicle" + ] + }, + { + "wordGroup": [ + "forfov" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8c5aa7f9-326e-4525-803a-63eedc16e4e2", + "label": "Property to be forfeited", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "98a562ee-7583-405a-ab05-3f922ada4872", + "label": "Type of forfeiture", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "26d4c112-a7ae-11e8-98d0-529269fb1459", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d5cfcf4-abb5-4449-b9ba-844353fc6035", + "label": "Destruction / dispose of / deal with / sell", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ba14f9b0-9912-4529-ae63-46eda7708500", + "label": "Method of disposal etc", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "564e9cd7-5a71-4b8d-b404-211afe28f0ed", + "label": "Specify who is to destroy etc", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3054", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "290435b9-cce7-43be-b340-1c7db48c5413", + "label": "Forfeiture order (Vehicle - Section 33C of the Environmental Protection Act 1990)", + "shortCode": "FORVEPO", + "level": "O", + "rank": 7900, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "vehicle" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e0aab342-1b85-4942-8efb-232ef97d81d1", + "label": "Defendant to be deprived of vehicle described as", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b729ae65-ca66-466f-a858-bb33581cd580", + "label": "Name of enforcement authority", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3138", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", + "label": "Order for deprivation of the defendant's rights (other than vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", + "shortCode": "DEPO", + "level": "O", + "rank": 8000, + "wordGroups": [ + { + "wordGroup": [ + "deprivation", + "not", + "vehicle" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "3cfbca15-fd95-4a23-9f57-f60d62f22936", + "label": "Defendant to be deprived of this property", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3055", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "rollUpPrompts": true, + "publishedForNows": false, + "label": "Community requirement: Curfew with electronic monitoring", + "shortCode": "CURE", + "level": "O", + "rank": 1600, + "wordGroups": [ + { + "wordGroup": [ + "Electronic", + "Monitoring", + "Curfew", + "first" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "816fbec4-6091-4aba-84cd-e348cc2bf36f", + "label": "Curfew and electronic monitoring period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAndElectricalMonitoringPeriod", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f18d4d90-954d-4b27-9e70-f4be9c487b0e", + "label": "Start time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd6186a4-d928-47f1-abee-2466b9b80ebf", + "label": "End time", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endTime", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Curfew address, details and timings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAddressDetailAndTiming", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Contractor", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "qual": null, + "reference": "contractor", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "qualifier": "BA", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", + "label": "Order for deprivation of rights (vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", + "shortCode": "DEPV", + "level": "O", + "rank": 8100, + "wordGroups": [ + { + "wordGroup": [ + "deprivation", + "vehicle" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e0aab342-1b85-4942-8efb-232ef97d81d1", + "label": "Defendant to be deprived of vehicle described as", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "3055", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", + "label": "Forfeiture order (land vehicle - Modern Slavery Act 2015)", + "shortCode": "FORFMS", + "level": "O", + "rank": 8200, + "wordGroups": [ + { + "wordGroup": [ + "forfeiture", + "slavery" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "e0aab342-1b85-4942-8efb-232ef97d81d1", + "label": "Defendant to be deprived of vehicle described as", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3138", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Forfeiture and deprivation", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "cfbe83c8-935b-4410-a68c-49452519f2d3", + "label": "Mandatory life imprisonment", + "shortCode": "MLI", + "level": "O", + "rank": 8300, + "wordGroups": [ + { + "wordGroup": [ + "mandatory", + "Life", + "imprisonment" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label": "Early release provisions apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Early", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label": "Early release provisions do not apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Early", + "not", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "96349367-2d04-4265-978f-6c6b417497fd", + "label": "Mandatory custody for life", + "shortCode": "MCL", + "level": "O", + "rank": 8400, + "wordGroups": [ + { + "wordGroup": [ + "Mandotory", + "custody", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label": "Early release provisions apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Early", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label": "Early release provisions do not apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Early", + "not", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "qualifier": "AB", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "3f608dba-20ad-4710-bebc-d78b4b3ff08d", + "label": "Custody for life", + "shortCode": "CFL", + "level": "O", + "rank": 8500, + "wordGroups": [ + { + "wordGroup": [ + "custody", + "Life" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "10ec0c03-a0a9-41fc-9314-1cec010e12cf", + "label": "Early release provisions apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Early", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ddaa31d2-352a-47ca-95c4-6588faabf099", + "label": "Early release provisions do not apply", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Early", + "not", + "release" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "d65f3285-f5f0-4ab1-b703-0c95f0f6ed89", + "label": "Life imprisonment for second listed offence", + "shortCode": "LIMP2", + "level": "O", + "rank": 8600, + "wordGroups": [ + { + "wordGroup": [ + "Life", + "imprisonment", + "second" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "qualifier": "AC", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "d844cdd8-c110-4bb8-b8f2-1a8bd5fdc0c7", + "label": "Custody for life for second listed offence", + "shortCode": "LIMPS2O", + "level": "O", + "rank": 8700, + "wordGroups": [ + { + "wordGroup": [ + "Life", + "custody", + "second" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "qualifier": "AC", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": true, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "cf70d7ed-8049-4fe2-b02f-5a23b5e39184", + "label": "Life imprisonment for serious offence (S.225)", + "shortCode": "LIMPSO", + "level": "O", + "rank": 8800, + "wordGroups": [ + { + "wordGroup": [ + "Life", + "imprisonment", + "serious" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "6e42d694-a785-4cbf-a4a8-09f2d1802d4d", + "label": "Custody for life for serious offence  (S.255)", + "shortCode": "CFLS", + "level": "O", + "rank": 8900, + "wordGroups": [ + { + "wordGroup": [ + "Life", + "custody", + "serious" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "4f640ea6-88d4-4a3a-b816-ff5a79eaaa14", + "label": "Special custodial sentence of imprisonment for offender of particular concern", + "shortCode": "SPECC", + "level": "O", + "rank": 9000, + "wordGroups": [ + { + "wordGroup": [ + "special", + "custody", + "concern" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label": "Term of sentence of imprisonment (aggregate)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label": "Term of sentence of imprisonment (aggregate)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label": "Term of sentence of imprisonment (aggregate)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cffd5c52-b7d2-445b-b413-d63495c62c19", + "label": "Term of sentence of imprisonment (aggregate)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "label": "Community requirement: Curfew", + "shortCode": "CUR", + "level": "O", + "rank": 1500, + "wordGroups": [ + { + "wordGroup": [ + "Curfew", + "Requirement" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "82ee7d2f-99b1-476d-8938-2c824549c365", + "label": "Curfew period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "startDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", + "label": "This order lasts until", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "endDate", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Curfew address, details and timings", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "curfewAddressDetailAndTiming", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a920be42-b376-420b-ace9-d2d0634559b0", + "label": "Extended sentence of imprisonment for violent or sexual offence (21 and over)(S.226A)", + "shortCode": "EXTIVS", + "level": "O", + "rank": 9100, + "wordGroups": [ + { + "wordGroup": [ + "extended", + "imprisonment", + "violent", + "sexual", + "over", + "21" + ] + }, + { + "wordGroup": [ + "extended", + "imprisonment" + ] + }, + { + "wordGroup": [ + "EXTIVS" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label": "Extended sentence of imprisonment term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label": "Extended sentence of imprisonment term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label": "Extended sentence of imprisonment term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "513ce853-be02-4f57-92d2-a4ad37c9a0ee", + "label": "Extended sentence of imprisonment term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", + "label": "Reason for significant risk to public of serious harm", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "qualifier": "AF", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "optional" + } + ] + }, + { + "id": "752aab8f-ba5f-45a8-80c8-4df7770e70e4", + "label": "Extended sentence of detention for violent or sexual offence (18-20)(S.226A)", + "shortCode": "EXTDVS", + "level": "O", + "rank": 9200, + "wordGroups": [ + { + "wordGroup": [ + "extended", + "detention", + "violent", + "sexual", + "over", + "18" + ] + }, + { + "wordGroup": [ + "detained", + "extended", + "over" + ] + }, + { + "wordGroup": [ + "EXTDVS" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", + "label": "Reason for significant risk to public of serious harm", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "qualifier": "AF", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "1dd2e245-a9af-4d04-84b6-92f64dc312fe", + "label": "Extended sentence of detention for violent or sexual offence (under 18)(S.226B)", + "shortCode": "EXTDVSU", + "level": "O", + "rank": 9300, + "wordGroups": [ + { + "wordGroup": [ + "detained", + "extended", + "under" + ] + }, + { + "wordGroup": [ + "extended", + "detention", + "violent", + "sexual", + "under", + "18" + ] + }, + { + "wordGroup": [ + "EXTDVSU" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", + "label": "Extended sentence of detention term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", + "label": "Appropriate custodial term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "fd0188b2-abb7-4559-8193-28fd3ad488dc", + "label": "Extension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 400, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 500, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", + "label": "Reason for significant risk to public of serious harm", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1007", + "adjournment": false, + "convicted": true, + "qualifier": "AF", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "892de3ce-1e80-454e-8c72-44e694b06e93", + "label": "Detained at Her Majesty's pleasure (under 18)(S.90)", + "shortCode": "DETMP", + "level": "O", + "rank": 9400, + "wordGroups": [ + { + "wordGroup": [ + "detained", + "pleasure", + "under", + "18" + ] + }, + { + "wordGroup": [ + "detained", + "majesty" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", + "label": "Minimum term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1003", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "optional" + } + ] + }, + { + "id": "70fe7114-b511-4d9b-a550-2c040b9a8d34", + "label": "Detained for specified period for serious offence (under 18)(S.91)", + "shortCode": "DETSO", + "level": "O", + "rank": 9500, + "wordGroups": [ + { + "wordGroup": [ + "detained", + "Period", + "serious", + "under", + "18" + ] + }, + { + "wordGroup": [ + "detained", + "Period" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ab6cc1f6-011b-4744-accc-bba181614188", + "label": "Detention Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "746c833a-7d33-4800-a40c-425dbacf7492", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": "concurrent", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "7784b81d-44d2-43c0-a903-a53b0e73683b", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": "consecutiveToOffenceNumber", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "da9c91a6-7090-44f3-8644-b4b184533fc4", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "8115982c-af5c-4439-b6ff-c9c6303a6292", + "label": "Detention reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1007", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "7f410e16-bda3-4bca-944e-ef88832e41b5", + "label": "Minimum sentence of detention in young offender institution for drug trafficking", + "shortCode": "MINDDT", + "level": "O", + "rank": 9600, + "wordGroups": [ + { + "wordGroup": [ + "minimum", + "detention", + "yoi", + "Drug" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label": "Custody period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label": "Custody period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label": "Custody period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "172e3ce2-1d22-499c-bb0a-bda480bca008", + "label": "Custody period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "qualifier": "AD", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "1bcdae76-37f8-4331-9076-fd46dbd4b1fc", + "label": "Minimum sentence of detention in young offender institution for domestic burglary", + "shortCode": "MINDDB", + "level": "O", + "rank": 9700, + "wordGroups": [ + { + "wordGroup": [ + "minimum", + "detention", + "yoi", + "domestic" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label": "Custody Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label": "Custody Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label": "Custody Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "52d72ef6-ed79-40db-a1a8-833258e34b13", + "label": "Custody Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1024", + "adjournment": false, + "convicted": true, + "qualifier": "AE", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "47f143eb-7961-4e85-834b-1aa5e47cb3ef", + "label": "Minimum sentence of Imprisonment for drug trafficking", + "shortCode": "MINIDT", + "level": "O", + "rank": 9800, + "wordGroups": [ + { + "wordGroup": [ + "Miniumum", + "imprisonment", + "Drug" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "qualifier": "AD", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "97fdae65-37a0-4156-912f-a35363e26f31", + "label": "Minimum sentence of Imprisonment for domestic burglary", + "shortCode": "MINIDB", + "level": "O", + "rank": 9900, + "wordGroups": [ + { + "wordGroup": [ + "minimum", + "imprisonment", + "domestic" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", + "label": "Imprisonment Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "bailRemandDaysToCount", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "cc398d5e-6a52-416d-8081-af8a5adf24f9", + "label": "Number of days in custody in foreign jurisdiction to count", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "numberOfDaysInCustodyInForeignJurisdiction", + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1002", + "adjournment": false, + "convicted": true, + "qualifier": "AE", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "6cb15971-c945-4398-b7c9-3f8b743a4de3", + "ruleType": "mandatory" + } + ] + }, + { + "id": "5679e5b7-0ca8-4d2a-ba80-7a50025fb589", + "label": "Suspended sentence order - detention in a young offender institution", + "shortCode": "SUSPSD", + "level": "O", + "rank": 10000, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "detention", + "yoi" + ] + }, + { + "wordGroup": [ + "suspended", + "detention" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label": "Custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label": "Custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label": "Custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "1debb9fe-f695-4fed-b60b-834ea3171c99", + "label": "Custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "31e2a7a7-03fc-472b-97ad-67d5aae41a70", + "label": "Custody reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "qual": null, + "reference": "responsibleOfficer", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court name", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "supervisingCourtName", + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1134", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "mandatory" + } + ] + }, + { + "id": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "version": "2024-04-09T14:32:54.430Z", + "startDate": "2024-04-10", + "label": "Further curfew requirement made", + "shortCode": "CURA", + "level": "O", + "rank": 64200, + "wordGroups": [ + { + "wordGroup": [ + "CURA", + "Curfew", + "Curfew", + "second" + ] + } + ], + "prompts": [ + { + "id": "51f96065-e622-4f72-b7dc-0c11c17d1983", + "label": "Defendant to remain at", + "welshLabel": "Diffynnydd i aros yn", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 300, + "financial": "N", + "reference": "curfewAddressDetailsAndTimings", + "wordGroup": [ + "Curfew address" + ], + "userGroups": [], + "min": "1", + "max": "500", + "qual": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "e5b96ed6-7ec0-464d-a698-62bc94a7f52f", + "label": "Details and timings", + "welshLabel": "Manylion ac amseroedd", + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "financial": "N", + "reference": "detailsAndTimings", + "userGroups": [], + "min": "1", + "max": "1500", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "6dd7348a-29e8-4487-a956-ae07d7fe7668", + "label": "End date", + "welshLabel": "Dyddiad terfyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 200, + "financial": "N", + "reference": "endDate", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "206a8658-96da-42cb-80a7-ae1c0e440e11", + "label": "Start date", + "welshLabel": "Dyddiad cychwyn", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "financial": "N", + "reference": "startDate", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Gofyniad cyrffyw pellach wedi’i wneud", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Community Requirement", + "cjsCode": "3105", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "B", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "Curfew Requirement: Further curfew requirement made. Start date {startDate}. End date {endDate}. Offender to remain at {curfewAddressDetailsAndTimings} {detailsAndTimings}", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "06f0ddcd-30d5-49ac-9500-3d66daeeda9b", + "label": "Suspended sentence order Scotland - detention in a young offender institution", + "shortCode": "SUSPSDS", + "level": "O", + "rank": 10100, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "detention", + "yoi", + "scotland" + ] + }, + { + "wordGroup": [ + "suspended", + "detention", + "scotland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "31e2a7a7-03fc-472b-97ad-67d5aae41a70", + "label": "Custody reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ad4f684d-0a83-4ee1-b04f-7864487eb41c", + "label": "Appropriate Scottish Court", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5cf339ba-1dd4-4476-99a5-281c833dd134", + "label": "Locality in Scotland", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1134", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "optional" + } + ] + }, + { + "id": "a78b50cc-0777-403d-8e51-5458e1ee3513", + "label": "Suspended sentence order Northern Ireland - detention in a young offender institution", + "shortCode": "SUSPSDNI", + "level": "O", + "rank": 10200, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "detention", + "yoi", + "ireland" + ] + }, + { + "wordGroup": [ + "suspended", + "detention", + "ireland" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "95b20a96-8863-46e4-8779-b870ab74a385", + "label": "Custodial Period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": 1 + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 200, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "05a40d21-7ef7-4008-92f7-90f5abe6806b", + "label": "Judge reserves breach proceedings", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1000, + "duration": null, + "wordGroup": [ + "Breach" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "31e2a7a7-03fc-472b-97ad-67d5aae41a70", + "label": "Custody reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", + "label": "The reasons for this", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "FIXLM", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", + "label": "Petty Sessions District", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1134", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "optional" + } + ] + }, + { + "id": "d4490cde-3f85-4f51-9545-e2648e458a13", + "label": "Suspended sentence of imprisonment activated unaltered", + "shortCode": "SSI", + "level": "O", + "rank": 10300, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "imprisonment", + "activate" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label": "Name of court that imposed suspended sentence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label": "Date suspended sentence imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1507", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "8847f470-7bf6-4d7f-aad3-efb31104f337", + "label": "Suspended sentence of imprisonment activated with lesser term", + "shortCode": "SSIV", + "level": "O", + "rank": 10400, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "imprisonment", + "activate", + "lesser" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label": "Name of court that imposed suspended sentence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label": "Date suspended sentence imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1507", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1f9c69f6-8fb6-478e-95ba-4501974c3c00", + "label": "Suspended sentence of detention in a young offender institution activated unaltered", + "shortCode": "SSID", + "level": "O", + "rank": 10500, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "detention", + "activate" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1100, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label": "Name of court that imposed suspended sentence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label": "Date suspended sentence imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 800, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1200, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1507", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "01c907a7-6035-40d0-9b90-e25799797dda", + "label": "Suspended sentence of detention in a young offender institution activated with lesser term", + "shortCode": "SSIVD", + "level": "O", + "rank": 10600, + "wordGroups": [ + { + "wordGroup": [ + "suspended", + "detention", + "activate", + "lesser" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", + "label": "Original custody term", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2c397327-1db7-4a5c-957d-85793f59deaa", + "label": "Original suspension period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "5f6b92e4-3297-4786-84f9-c3f1d9568012", + "label": "Concurrent", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, + "duration": null, + "wordGroup": [ + "Concurrent" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "C", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "008282a9-aa16-4097-91a9-6a11e4b7b351", + "label": "Lesser term imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Years", + "wordGroup": [ + "Years" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Months", + "wordGroup": [ + "Months" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Weeks", + "wordGroup": [ + "Weeks" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "ca85396d-f597-47d7-9c4c-efe80754959e", + "label": "Total custodial period", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 900, + "duration": "Days", + "wordGroup": [ + "Days" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2395831b-5044-451f-acaf-259d00e01bea", + "label": "Sentenced in absence", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1200, + "duration": null, + "wordGroup": [ + "Absence" + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "FH", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "6c2f5e36-9657-40a4-abf8-86dd1e262c12", + "label": "Consecutive to offence number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "INT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "777e60fc-6bab-467c-9ab5-1fc2a068337d", + "label": "Where consecutive to an offence on another case - specify that case number", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": "F", + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", + "label": "Name of court that imposed suspended sentence", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 600, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "38dd4cca-885d-45f4-b5a2-5823fc9ada95", + "label": "Date suspended sentence imposed", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 700, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", + "label": "Prison", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 900, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "prison", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", + "label": "Risk or vulnerability factors", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "riskFactors", + "courtExtract": "N", + "durationSequence": null + }, + { + "id": "db6f4f71-4088-42f6-919c-74e82fea6f78", + "label": "Total sentence consecutive to what", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "d483e89c-4919-4248-a046-372a6a4532a6", + "label": "Reason for sentence without PSR", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", + "label": "Reasons", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "F", + "cjsCode": "1507", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c93c5a18-838a-41d3-a017-c203b37f5655", + "label": "Adjournment reason: At request of the defence", + "shortCode": "DEF", + "level": "O", + "rank": 10700, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "request", + "defence" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rheswm dros ohirio: Ar gais yr amddiffyniad", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "DB", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "4958de15-8a0a-4d2b-9f7e-56e037cf03da", + "label": "Adjournment reason: For the trial to take place", + "shortCode": "TRIAL", + "level": "O", + "rank": 10800, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "trial" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio: Er mwyn cynnal y treial", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "GC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", + "label": "Adjournment reason: At request of the prosecution", + "shortCode": "PROS", + "level": "O", + "rank": 10900, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "request", + "prosecution" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", + "label": "Additional information", + "welshLabel": null, + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": "additionalInformation", + "courtExtract": "Y", + "durationSequence": null + } + ], + "welshLabel": "Rheswm dros ohirio: Ar gais yr erlyniad", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "DC", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "c2eca548-4511-4023-bbe6-50fe0b679b4a", + "label": "Adjournment reason: To plead guilty or not guilty to the offence(s)", + "shortCode": "PLEA", + "level": "O", + "rank": 11000, + "wordGroups": [ + { + "wordGroup": [ + "adjournment", + "plea" + ] + } + ], + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "prompts": [], + "welshLabel": "Rheswm dros ohirio: I bledio’n euog neu’n ddieuog i'r trosedd(au)", + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "adjournment": false, + "convicted": false, + "qualifier": "DM", + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Adjournment reasons", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "label": "Community requirement: Curfew waived", + "shortCode": "CURW", + "level": "O", + "rank": 1800, + "wordGroups": [ + { + "wordGroup": [ + "Curfew", + "waived" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "040c7d54-3e56-4ed1-8004-d63ab3cd5128", + "label": "Date excused", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 1", + "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", + "label": "Excused time from", + "welshLabel": null, "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress1", + "type": "TIME", + "sequence": 200, + "duration": null, + "wordGroup": null, "userGroups": [ - + "Court Clerks", + "Legal Advisers" ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 2", + "id": "ba3cd0c4-2bd0-4b02-9636-2064e293466b", + "label": "Excused time to", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 300, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "3a71ea3c-2083-4584-8c73-e7bb0608c468", + "label": "Excused reason", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 400, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + }, + { + "id": "e4fb2729-c6e4-4d32-b3f0-24285f625a87", + "label": "Other curfew requirements", + "welshLabel": null, "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress2", + "type": "TXT", + "sequence": 500, + "duration": null, + "wordGroup": null, "userGroups": [ - + "Court Clerks", + "Legal Advisers" ], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "3105", + "adjournment": false, + "convicted": true, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "Community Requirement", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", + "label": "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity", + "shortCode": "D49", + "level": "O", + "rank": 60000, + "wordGroups": [ + { + "wordGroup": [ + "Order", + "49", + "publicity" + ] + } + ], + "userGroups": [], + "prompts": [ + { + "id": "8b419e6d-c248-4f9e-8638-470d237022b1", + "label": "Details of reporting restriction", + "welshLabel": null, + "resultPromptRule": "mandatory", + "type": "TXT", + "sequence": 100, + "duration": null, + "wordGroup": null, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "fixedListId": null, + "qual": null, + "reference": null, + "courtExtract": "Y", + "durationSequence": null + } + ], + "isAvailableForCourtExtract": true, + "financial": false, + "category": "A", + "cjsCode": "4509", + "adjournment": false, + "convicted": false, + "postHearingCustodyStatus": "A", + "resultDefinitionGroup": "PressOn", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "urgent": false, + "d20": false, + "resultDefinitionRules": [] + }, + { + "id": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", + "version": "2021-02-25T12:42:54.190Z", + "startDate": "2021-02-26", + "label": "Account Consolidated", + "shortCode": "ACON", + "level": "D", + "rank": 8800, + "wordGroups": [ + { + "wordGroup": [ + "ACON" + ] }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 3", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "wordGroup": [ + "consolidated", + "account" + ] + } + ], + "prompts": [ + { + "id": "e6861c6e-0de2-4029-ab8c-c89769daea29", + "label": "Account to be consolidated with existing accounts", + "welshLabel": "Cyfrif i’w gyfuno â chyfrifon presennol", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 200, "financial": "N", - "reference": "probationteamtobenotifiedAddress3", + "reference": "accountToBeConsolidatedWithExistingAccounts", + "wordGroup": [ + "Consolidated" + ], "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine3", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 4", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "id": "d05f476d-a0b9-47c7-bf95-d9cfd591b747", + "label": "Account to be consolidated with existing account number", + "welshLabel": "Cyfrif i’w gyfuno â rhif cyfrif presennol", + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 100, "financial": "N", - "reference": "probationteamtobenotifiedAddress4", + "reference": "accountToBeConsolidatedWithExistingAccountNumber", + "wordGroup": [ + "Consolidated" + ], "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", + "min": "1", + "max": "20", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine4", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 5", + "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label": "Additional information", + "welshLabel": "Gwybodaeth ychwanegol", "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "type": "TXT", + "sequence": 300, "financial": "N", - "reference": "probationteamtobenotifiedAddress5", + "reference": "additionalInformation", "userGroups": [ - ], - "min": "", - "max": "", - "courtExtract": "N", + "min": "1", + "max": "1000", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine5", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Cyfrif wedi’i gyfuno", + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "B", + "libraCode": "ACON", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "8b1cff00-a456-40da-9ce4-f11c20959084", + "version": "2022-12-08T20:00:45.162Z", + "startDate": "2022-12-09", + "label": "Suspended sentence order - imprisonment", + "shortCode": "SUSPS", + "level": "O", + "rank": 30500, + "wordGroups": [ + { + "wordGroup": [ + "SUSPS" + ] }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified post code", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "wordGroup": [ + "suspended", + "imprisonment" + ] + } + ], + "prompts": [ + { + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", "financial": "N", - "reference": "probationteamtobenotifiedPostCode", - "userGroups": [ - + "reference": "imprisonmentPeriod", + "wordGroup": [ + "Years" ], - "min": "", - "max": "", - "courtExtract": "N", + "userGroups": [], + "durationSequence": 1, + "welshDuration": "Flynedd", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "PostCode", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, + "type": "INT", + "sequence": 100, + "duration": "Months", "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress1", - "userGroups": [ - + "reference": "imprisonmentPeriod", + "wordGroup": [ + "Months" ], - "min": "", - "max": "", - "courtExtract": "N", + "userGroups": [], + "durationSequence": 1, + "welshDuration": "Mis", + "courtExtract": "Y", "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress2", - "userGroups": [ - + "reference": "imprisonmentPeriod", + "wordGroup": [ + "Weeks" ], - "min": "", - "max": "", - "courtExtract": "N", + "userGroups": [], + "durationSequence": 1, + "welshDuration": "Wythnos", + "courtExtract": "Y", "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "welshLabel": "Swyddog cyfrifol", + "id": "76f15753-1706-42fb-b922-0d56d01e5706", + "label": "Imprisonment Period", + "welshLabel": "Cyfnod Carcharu", "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, + "type": "INT", + "sequence": 100, + "duration": "Days", "financial": "N", - "reference": "responsibleOfficer", - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "userGroups": [ - + "reference": "imprisonmentPeriod", + "wordGroup": [ + "Days" ], - "courtExtract": "N", + "userGroups": [], + "durationSequence": 1, + "welshDuration": "Niwrnod", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label": "End Date", - "welshLabel": "Dyddiad terfyn", + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": "Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)", "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, + "type": "INT", + "sequence": 700, "financial": "N", - "reference": "endDate", - "userGroups": [ - + "reference": "bailRemandDaysToCountTaggedDays", + "wordGroup": [ + "Tagged days" ], - "courtExtract": "Y", + "userGroups": [], + "min": "0", + "max": "999", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, - "isDurationEndDate": true, "associatedWithReferenceData": false }, { - "id": "e61aa161-8eb6-42c2-ac85-89682ba79b1f", - "label": "Direction that a failure to comply be dealt with by magistrates' court", - "welshLabel": "Cyfarwyddyd bod llys ynadon yn delio â methiant i gydymffurfio", + "id": "746c833a-7d33-4800-a40c-425dbacf7492", + "label": "Concurrent", + "welshLabel": "Cydamserol", "resultPromptRule": "optional", "type": "BOOLEAN", - "sequence": 600, + "sequence": 120, "financial": "N", - "reference": "directionThatAFailureToComplyBeDealtWithByMagistratesCourt", - "userGroups": [ - + "reference": "concurrent", + "wordGroup": [ + "Concurrent" ], + "userGroups": [], + "qual": "C", "courtExtract": "Y", - "jurisdiction": "C", + "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "welshLabel": "Llys sy’n Goruchwylio", + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 300, + "type": "INT", + "sequence": 200, + "duration": "Years", "financial": "N", - "reference": "supervisingCourt", - "userGroups": [ - + "reference": "suspendedPeriod", + "wordGroup": [ + "Years" ], - "min": "1", - "max": "120", + "userGroups": [], + "durationSequence": 2, + "welshDuration": "Flynedd", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "supervisingCourt", "nameEmail": false, - "cacheable": 2, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "73833869-1d5e-47d3-a2f5-dac8a39466b0", - "label": "The defendant is a persistent offender previously fined, it is in the interests of justice to make a community order instead of imposing a fine for this offence because", - "welshLabel": "Mae'r diffynnydd yn droseddwr parhaus a ddirwywyd yn flaenorol, mae gwneud gorchymyn cymunedol yn lle gosod dirwy am y drosedd hon er budd cyfiawnder oherwydd", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 400, + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", "financial": "N", - "reference": "persistentOffenderPreviouslyFined", - "userGroups": [ - + "reference": "suspendedPeriod", + "wordGroup": [ + "Months" ], - "min": "1", - "max": "1000", + "userGroups": [], + "durationSequence": 2, + "welshDuration": "Mis", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, - "associatedWithReferenceData": false}, + "associatedWithReferenceData": false + }, { - - "id": "c1116d12-dd35-4171-807a-2cb845357d22", - "label": "REV", - "welshLabel": "REV", + "id": "7784b81d-44d2-43c0-a903-a53b0e73683b", + "label": "Consecutive to offence", "resultPromptRule": "optional", "type": "TXT", - "sequence": 400, + "sequence": 140, "financial": "N", - "reference": "HTYPE", - "userGroups": [ - + "reference": "consecutiveToOffenceNumber", + "wordGroup": [ + "Consecutive to" ], + "userGroups": [], "min": "1", - "max": "1000", + "max": "99", + "qual": "F", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false - } - ], - "welshLabel": "Gorchymyn cymunedol Cymru / Lloegr", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "Y", - "d20": false, - "dvlaCode": "M", - "cjsCode": "1116", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "libraCode": "COEW", - "lCode": "COEW", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "ruleType": "mandatory" }, { - "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "ruleType": "mandatory" - } - ], - "canBeSubjectOfBreach": true, - "canBeSubjectOfVariation": true, - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id" : "6feb0f2e-8d1e-40c7-af2c-05b28c69e5fc", - "label" : "Withdrawn (notice produced)", - "shortCode" : "WDRNNOT", - "level" : "O", - "rank" : 41600, - "wordGroups" : [ { - "wordGroup" : [ "withdrawn", "notice" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2063", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "615313b5-0647-4d61-b7b8-6b36265d8929", - "label" : "No collection order reason", - "shortCode" : "NOCOLLO", - "level" : "D", - "rank" : 41700, - "wordGroups" : [ { - "wordGroup" : [ "no", "collection", "reason" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "de27ffb3-b7ef-4308-b8c7-ca51ab0c1136", - "label" : "Reason for no collection order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "4e66b3e0-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "04f4c331-754c-4153-9933-3411843836a4", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros beidio â gwneud Gorchymyn Casglu", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "eb2e4c4f-b738-4a4d-9cce-0572cecb7cb8", - "label" : "Withdrawn", - "shortCode" : "WDRN", - "level" : "O", - "rank" : 41800, - "wordGroups" : [ { - "wordGroup" : [ "WDRN" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2063", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c8326b9e-56eb-406c-b74b-9f90c772b657", - "label" : "Withdrawn (recharge at named Court)", - "shortCode" : "WDRNOS", - "level" : "O", - "rank" : 41900, - "wordGroups" : [ { - "wordGroup" : [ "withdrawn", "recharge", "court" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9d3ed4ee-40ad-41c4-9778-a657e8e7605e", - "label" : "Court handling re-charged offence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "4010", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "eaecff82-32da-4cc1-b530-b55195485cc7", - "label" : "Withdrawn (recharge at unnamed Court)", - "shortCode" : "WDRNOU", - "level" : "O", - "rank" : 42000, - "wordGroups" : [ { - "wordGroup" : [ "withdrawn", "recharge", "unnamed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d20aad5-9dc2-42a2-9498-5687f3e5ce33", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "4010", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "40cf92bc-1dd9-492c-a7c5-d0d337e91994", - "label" : "Wasted costs order - defendant to pay", - "shortCode" : "WCOD", - "level" : "O", - "rank" : 42100, - "wordGroups" : [ { - "wordGroup" : [ "wasted", "Costs" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "d5c1709c-bbe2-46af-b3e0-91fc2562a120", - "label" : "Full amount of costs due to creditor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "22ebf965-8a1c-4229-9894-0df7f8117753", - "label" : "Major creditor name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", - "qual" : null, - "reference" : "CREDNAME", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "2505", - "adjournment" : false, - "convicted" : false, - "qualifier" : "IE", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b786ce8a-ce7a-4fa1-94ce-a3d9777574e4", - "label" : "Pay costs to named party (inter partes costs)", - "shortCode" : "IPC", - "level" : "C", - "rank" : 42200, - "wordGroups" : [ { - "wordGroup" : [ "pay", "Costs", "names" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "247cfcbd-582e-4e79-bdac-567ad04fbfb3", - "label" : "Name of party to pay the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2a7dbf0b-4090-4d0b-abcc-fbf38302d11a", - "label" : "Amount of costs", - "welshLabel" : "Swm y costau", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "13405496-927f-422c-9b32-1b8d90fe7ebe", - "label" : "Name of party to receive costs", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68159a17-22a7-4744-815e-7cd539948af1", - "label" : "Payment terms", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f5759650-31a1-11e8-b467-0ed5f89f718b", - "label" : "Money security forfeited", - "shortCode" : "SECMF", - "level" : "O", - "rank" : 42300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "3e124994-31a2-11e8-b467-0ed5f89f718b", - "label" : "Amount forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4f058bd0-31a2-11e8-b467-0ed5f89f718b", - "label" : "Youth rehabilitation order England / Wales", - "shortCode" : "YRO", - "level" : "O", - "rank" : 42400, - "wordGroups" : [ { - "wordGroup" : [ "youth", "Rehabilitation", "Order" ] - }, { - "wordGroup" : [ "YRO" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label" : "Start Date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : "responsibleOfficer", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1141", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "574fb809-4473-4a90-ba0f-519a50cfc9ec", - "label" : "Youth rehabilitation requirement: Activity - specified", - "shortCode" : "YRA1", - "level" : "O", - "rank" : 42600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab3c3545-4a09-4a32-b779-33e96763debe", - "label" : "Activity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "abb95a52-2a75-40c3-8d3f-a1d75a199c47", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Imprisonment", - "shortCode" : "imp", - "level" : "O", - "rank" : 4900, - "resultWording": "section 12(c)", - "wordGroups" : [ { - "wordGroup" : [ "imp" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "76f15753-1706-42fb-b922-0d56d01e5706", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "imprisonmentPeriod", - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "76f15753-1706-42fb-b922-0d56d01e5706", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "imprisonmentPeriod", - "isAvailableForCourtExtract" : true, - "durationSequence" : 1 - }, { - "id" : "76f15753-1706-42fb-b922-0d56d01e5706", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "imprisonmentPeriod", - "courtExtract" : "N", - "durationSequence" : 1 - }, { - "id" : "76f15753-1706-42fb-b922-0d56d01e5706", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "imprisonmentPeriod", - "isAvailableForCourtExtract" : false, - "durationSequence" : 1 - }, { - "id" : "321c3fd8-ea44-4ccc-b763-bc693ee6be0f", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : "concurrent", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7b5ba551-7adb-4555-93b1-dcb6f027f02f", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : "consecutiveToOffenceNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9637677e-c2d7-4609-a750-ffe90eba9351", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : "whereConsecutiveToAnOffence", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e307f79-d4ca-466e-8c5c-a7d874c89b39", - "label" : "Imprisonment reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : "imprisonmentReasons", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "622aa563-a3db-4102-ba7e-21c21cee0110", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : "theReasonForThis", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "55a1cab9-8aa6-41f6-a116-0345198324e6", - "label" : "Youth rehabilitation requirement: Activity at specified place", - "shortCode" : "YRA2", - "level" : "O", - "rank" : 42700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7365f685-e91e-4a5f-8021-34246eb56fcb", - "label" : "Place to attend", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d0e31533-c60f-4b90-a98a-4a9678ecf69e", - "label" : "Person to go to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", - "label" : "Youth rehabilitation requirement: Activity with residential exercise at a place", - "shortCode" : "YRA3", - "level" : "O", - "rank" : 42800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "72a96d2c-d41e-426f-a824-6dffc607ecfc", - "label" : "Residential exercise place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c5e204ce-9a2d-4911-96f7-e189565f429e", - "label" : "Youth rehabilitation requirement: Activity with residential exercise", - "shortCode" : "YRA4", - "level" : "O", - "rank" : 42900, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "90bc2885-5f74-4b35-ba58-33da0ef1f1df", - "label" : "Activity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", - "label" : "Youth rehabilitation requirement: Activity - engage in activities in accordance with instructions of responsible officer", - "shortCode" : "YRA5", - "level" : "O", - "rank" : 43000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96bd9a5b-005c-42ac-b188-fcb786e53b4a", - "label" : "Responsible officer may require participation in residential exercise for not more than 7 days", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "191ec139-10b6-4b18-8a2c-1359425244c3", - "label" : "Youth rehabilitation requirement: Activity - engage in residential activity in accordance with instructions of responsible officer", - "shortCode" : "YRA6", - "level" : "O", - "rank" : 43100, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "536adc8b-1f26-43f0-9659-4bf25e2b42db", - "label" : "Youth rehabilitation requirement: Programme", - "shortCode" : "YRP1", - "level" : "O", - "rank" : 43200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", - "label" : "Programme name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7365f685-e91e-4a5f-8021-34246eb56fcb", - "label" : "Place to attend", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3103", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1819e6a0-b13d-47e0-9027-388819457256", - "label" : "Youth rehabilitation requirement: Programme with residence", - "shortCode" : "YRP2", - "level" : "O", - "rank" : 43300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "481cd38f-08b4-46c0-9c29-ae5beaa6a2c7", - "label" : "Programme name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4224806d-6caa-48a7-8f80-5ce1ff6baf5b", - "label" : "Place to reside", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3103", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "27528205-a237-471b-a487-7943e9284c44", - "label" : "Youth rehabilitation requirement: Attendance centre", - "shortCode" : "YRAC1", - "level" : "O", - "rank" : 43400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "f13d59b1-88a1-4ad0-972c-e86a22cdd700", - "label" : "Number of hours", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Hours" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0995a846-ba03-41b0-bb65-e50323296bdb", - "label" : "Attendance Centre name / contact", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "28e2f7e0-8886-4cf6-a828-776849f8d3d4", - "label" : "Additional / concurrent to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3111", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d3313cb9-c75e-45e4-b833-8479ff80f9ac", - "label" : "Youth rehabilitation requirement: Prohibited activity for a period", - "shortCode" : "YRPA1", - "level" : "O", - "rank" : 43500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label" : "Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label" : "Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label" : "Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3adbbd2e-ac8d-4444-8b37-2047232fd57e", - "label" : "Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label" : "Prohibited activities", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3104", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", - "label" : "Youth rehabilitation requirement: Prohibited activity for specified days", - "shortCode" : "YRPA2", - "level" : "O", - "rank" : 43600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "1d1b41c9-0b16-4ac7-abfc-b28c2f444e20", - "label" : "Prohibited activities", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "939bb78c-6e15-4270-b22b-86fad8021d53", - "label" : "Days of the week", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3104", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "72393fb6-77dd-45b2-98f5-6612966de882", - "label" : "Committed to young offender institution", - "shortCode" : "yoi", - "level" : "O", - "rank" : 5000, - "wordGroups" : [ { - "wordGroup" : [ "yoi" ] - }, { - "wordGroup" : [ "committed", "young", "institution" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d4d8f560-8bf0-4fb3-8bb6-ff90c961c20c", - "label" : "Custody reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "69c444b1-9e98-4d1c-9128-dc856a00d8a0", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "fb9fedf8-2b60-496b-8147-168233e81be3", - "label" : "Youth rehabilitation requirement: Supervision", - "shortCode" : "YRS1", - "level" : "O", - "rank" : 43700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1044", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5ab456c8-d272-4082-87ed-cd1f44a0603a", - "label" : "Youth rehabilitation requirement: Unpaid work", - "shortCode" : "YRUP1", - "level" : "O", - "rank" : 43800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "83f27f8b-0d02-4f19-bbde-3619b88c06ac", - "label" : "Number of hours", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Hours", - "wordGroup" : [ "Hours" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "28e2f7e0-8886-4cf6-a828-776849f8d3d4", - "label" : "Additional / concurrent to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3101", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8f979084-dc3b-4e71-bceb-87e30a4fc381", - "label" : "Youth rehabilitation requirement: Residence at a specified place", - "shortCode" : "YRR1", - "level" : "O", - "rank" : 43900, - "userGroups" : [ ], - "prompts" : [ { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden" : false - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden" : false - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null, - "hidden" : false - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0d0b4ec0-1d58-4d53-99aa-96bb0bd12db1", - "label" : "Place to reside at", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd192d80-cf96-403e-9c3b-c0738d5a4a13", - "label" : "Responsible office may approve different address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3107", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", - "label" : "Youth rehabilitation requirement: Residence with an individual", - "shortCode" : "YRR2", - "level" : "O", - "rank" : 44000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d611217b-4778-4bec-a056-8c821aa6bc22", - "label" : "Name of person to live with", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3107", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "63f8c00a-2115-46a9-94ff-b30bbad0f287", - "label" : "Youth rehabilitation requirement: Residence in local authority accommodation", - "shortCode" : "YRR3", - "level" : "O", - "rank" : 44100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "61b4049d-4d14-4816-b0d7-a7ce5adcbc7f", - "label" : "Period of residence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f63f692f-3bfc-4d0f-8e45-acd99b06431c", - "label" : "Name of local authority", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "eecf7565-8c4a-4059-9a97-b83a7f975e22", - "label" : "Name of person youth must NOT reside with", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3107", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "30bd1b11-5336-486e-aae6-1285ab4c8d65", - "label" : "Youth rehabilitation requirement: Mental health treatment", - "shortCode" : "YRM1", - "level" : "O", - "rank" : 44200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HG", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", - "label" : "Youth rehabilitation requirement: Mental health treatment residential patient", - "shortCode" : "YRM2", - "level" : "O", - "rank" : 44300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fb580537-9d36-4139-811b-77af09547b0d", - "label" : "Care home / Hospital", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HE", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", - "label" : "Youth rehabilitation requirement: Mental health treatment non-residential patient", - "shortCode" : "YRM3", - "level" : "O", - "rank" : 44400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a31e61d6-f5bc-4327-821a-ff1f9fc5050d", - "label" : "Medical practitioner / Psychologist", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3108", - "adjournment" : false, - "convicted" : true, - "qualifier" : "HF", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", - "label" : "Youth rehabilitation requirement: Drug treatment as a resident", - "shortCode" : "YRD1", - "level" : "O", - "rank" : 44500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b625180-fd12-4422-9150-3185ac672151", - "label" : "Name of institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label" : "By or under the direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3128", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", - "label" : "Youth rehabilitation requirement: Drug treatment as a non-resident", - "shortCode" : "YRD2", - "level" : "O", - "rank" : 44600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b625180-fd12-4422-9150-3185ac672151", - "label" : "Name of institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label" : "By or under the direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3128", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BS", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4e786114-e1c0-42bb-9c52-64edeffa3a3b", - "label" : "Youth rehabilitation requirement: Drug testing", - "shortCode" : "YRDT1", - "level" : "O", - "rank" : 44700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "da2007ba-6b96-4b88-b518-ca7a27144e2d", - "label" : "Minimum number of occasions a month samples are to be provided", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3129", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BT", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1e78e819-13fc-4e14-a263-c632e4e3c85e", - "label" : "Youth rehabilitation requirement: Intoxicating substance treatment as a non-resident", - "shortCode" : "YRI1", - "level" : "O", - "rank" : 44800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6aaf3645-0806-4917-ada5-b019c6a606c5", - "label" : "Treatment intervals", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b625180-fd12-4422-9150-3185ac672151", - "label" : "Name of institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label" : "By or under the direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3130", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "03a1cbef-e54a-4a00-bcd5-44350f882ced", - "label" : "Youth rehabilitation requirement: Intoxicating substance treatment as a resident", - "shortCode" : "YRI2", - "level" : "O", - "rank" : 44900, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5e636c8d-c742-4cd4-a873-5d002ef36f5d", - "label" : "Period of treatment", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b625180-fd12-4422-9150-3185ac672151", - "label" : "Name of institution / place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c8e00ca0-9ecb-41f8-a29b-e1354155a820", - "label" : "By or under the direction of", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3130", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a17f9787-ba56-43d4-be5f-6fc91d29646e", - "label" : "Youth rehabilitation requirement: Education", - "shortCode" : "YRE1", - "level" : "O", - "rank" : 45000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label" : "Period of education", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label" : "Period of education", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label" : "Period of education", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f6267956-11dd-4948-9a3a-1b3a3487dc0d", - "label" : "Period of education", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6766cc06-f1de-443f-8a6b-2ba64cc222f4", - "label" : "Local Authority", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3131", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b986b6ad-816c-44d6-bdf8-0df189732648", - "label" : "Youth rehabilitation requirement: Exclusion not to enter for a period", - "shortCode" : "YREX1", - "level" : "O", - "rank" : 45100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f97ac32b-f4f3-48d1-b434-7b69c51d00b1", - "label" : "Period of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6d322ff1-1d95-4053-ac79-19d1b7874f2d", - "label" : "End date of exclusion", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a15102d7-a151-425a-a827-0e35bc159049", - "label" : "Youth rehabilitation requirement: Exclusion not to enter with between dates", - "shortCode" : "YREX2", - "level" : "O", - "rank" : 45200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ac46c9c8-976d-40ef-a913-85c64a6859bc", - "label" : "From date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9e41b95c-c776-4d95-b057-05b7fcb155aa", - "label" : "Until date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "416684ab-755f-4958-ab83-2795a21d62a3", - "label" : "Youth rehabilitation requirement: Exclusion not to enter for a period with electronic monitoring", - "shortCode" : "YREX3", - "level" : "O", - "rank" : 45300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "e4f5a70e-c140-4993-ba09-e07ae067a758", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e4f5a70e-c140-4993-ba09-e07ae067a758", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e4f5a70e-c140-4993-ba09-e07ae067a758", - "label" : "Exclusion and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2fcf2607-6619-4072-a348-77f6afb500f3", - "label" : "Place / area", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cf3dc0dd-2bbc-4ab5-a32a-d17fe82b53ac", - "label" : "Start date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f02e3b28-83e7-4650-a8e1-810bbb464bb4", - "label" : "Start time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bcba1a0d-97ee-4ddc-b077-141a70e2adf8", - "label" : "End date for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "487358be-eccc-46e4-aa8e-e41495638a2c", - "label" : "End time for tag", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3106", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d79c92bb-c301-491a-b4d2-cb86e473b5af", - "label" : "Youth rehabilitation requirement: Curfew with electronic monitoring", - "shortCode" : "YRC1", - "level" : "O", - "rank" : 45400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f18d4d90-954d-4b27-9e70-f4be9c487b0e", - "label" : "Start time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd6186a4-d928-47f1-abee-2466b9b80ebf", - "label" : "End time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0f7eade6-3602-486c-8491-45e2bdee9960", - "label" : "Youth rehabilitation requirement: Curfew", - "shortCode" : "YRC2", - "level" : "O", - "rank" : 45500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b8654020-f9ed-4707-8757-8db6efb323b9", - "label" : "Youth rehabilitation requirement: Curfew with second address", - "shortCode" : "YRC3", - "level" : "O", - "rank" : 45600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "49939c7c-750f-403e-9ce1-f82e3e568065", - "label" : "No separate penalty", - "shortCode" : "NSP", - "level" : "O", - "rank" : 5200, - "wordGroups" : [ { - "wordGroup" : [ "NSP" ] - }, { - "wordGroup" : [ "seperate", "penalty" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1057", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "78d6e77c-fb17-46ae-a719-66eacd6281a9", - "label" : "Youth rehabilitation requirement: Curfew waived", - "shortCode" : "YRC4", - "level" : "O", - "rank" : 45700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "040c7d54-3e56-4ed1-8004-d63ab3cd5128", - "label" : "Date excused", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", - "label" : "Excused time from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ba3cd0c4-2bd0-4b02-9636-2064e293466b", - "label" : "Excused time to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3a71ea3c-2083-4584-8c73-e7bb0608c468", - "label" : "Excused reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e4fb2729-c6e4-4d32-b3f0-24285f625a87", - "label" : "Other curfew requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label" : "Start Date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : "responsibleOfficer", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0b5ce679-b262-436d-8f94-aa78de85022a", - "label" : "Youth rehabilitation order with intensive supervision and surveillance England / Wales", - "shortCode" : "YROISS", - "level" : "O", - "rank" : 45800, - "wordGroups" : [ { - "wordGroup" : [ "YROISS" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1142", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ae8c21a9-cf2a-487b-8fae-58d50c7104f0", - "label" : "Youth rehabilitation order with fostering England / Wales", - "shortCode" : "YROF", - "level" : "O", - "rank" : 45900, - "wordGroups" : [ { - "wordGroup" : [ "YROF" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", - "label" : "Period of fostering", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", - "label" : "Period of fostering", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc6a7c68-4d9e-4865-8ee0-6bc7f2d4ffc2", - "label" : "Period of fostering", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label" : "Start Date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9de7d91b-77a2-4de4-bde0-8481d1f5b42e", - "label" : "Name of local authority", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : "responsibleOfficer", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1143", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e9bdae5d-5bec-456c-a361-52d0dae89e11", - "label" : "Youth rehabilitation order Northern Ireland", - "shortCode" : "YRONI", - "level" : "O", - "rank" : 46000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label" : "Start Date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2216f87f-7e1c-489e-a481-8c941796db49", - "label" : "Corresponding Northern Ireland order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "555a4eb3-548b-4b1e-84ee-8a000223da2f", - "label" : "Relevant officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d8162d74-5d0f-4841-a013-eba02a267ae5", - "label" : "Petty Sessional District in Northern Ireland", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1141", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "7dadfe69-9486-4edc-84ef-7d4f2e13633e", - "label" : "Youth rehabilitation order with intensive supervision and surveillance Northern Ireland", - "shortCode" : "YROINI", - "level" : "O", - "rank" : 46100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d5243234-31a2-11e8-b467-0ed5f89f718b", - "label" : "Start Date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2216f87f-7e1c-489e-a481-8c941796db49", - "label" : "Corresponding Northern Ireland order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "555a4eb3-548b-4b1e-84ee-8a000223da2f", - "label" : "Relevant officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d8162d74-5d0f-4841-a013-eba02a267ae5", - "label" : "Petty Sessional District in Northern Ireland", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02419e85-32f2-4beb-b10f-0f85a51c9de5", - "label" : "Direction further proceedings relating to the YRO be dealt with by a youth court or magistrates' court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1142", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "48646574-8bd7-49f7-9fa1-3aeb60f7c059", - "label" : "Youth rehabilitation requirement: Extended activity - specified", - "shortCode" : "YREA1", - "level" : "O", - "rank" : 46200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e0b217c9-73aa-48b2-b168-56dcd5c1e75c", - "label" : "Extended activity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7365f685-e91e-4a5f-8021-34246eb56fcb", - "label" : "Place to attend", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d0e31533-c60f-4b90-a98a-4a9678ecf69e", - "label" : "Person to go to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "79deff01-d3b0-4453-b290-ea34c60ce3e9", - "label" : "Youth rehabilitation requirement: Extended activity with residential exercise at a place", - "shortCode" : "YREA2", - "level" : "O", - "rank" : 46300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "72a96d2c-d41e-426f-a824-6dffc607ecfc", - "label" : "Residential exercise place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", - "label" : "Youth rehabilitation requirement: Extended activity with residential exercise", - "shortCode" : "YREA3", - "level" : "O", - "rank" : 46400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "496c25e3-fc0f-4a8e-be31-8ea5628a269a", - "label" : "Period of residence exercise", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b85e1325-9fc1-436a-82f6-469f7f21de6a", - "label" : "Extended activity", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "482da08b-4ef8-41a2-8a69-7b98d5581f5c", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", - "label" : "Youth rehabilitation requirement: Extended activity - engage in activities in accordance with instructions of responsible officer", - "shortCode" : "YREA4", - "level" : "O", - "rank" : 46500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "d47ca68f-ff24-4c43-8870-3c1868022023", - "label" : "Number of days", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "96bd9a5b-005c-42ac-b188-fcb786e53b4a", - "label" : "Responsible officer may require participation in residential exercise for not more than 7 days", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3102", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Rehabilitation requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f029c131-16b3-4a6d-895d-00b609d858e9", - "label" : "Referral order", - "shortCode" : "YOP", - "level" : "O", - "rank" : 46600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", - "label" : "Referral period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", - "label" : "Referral period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label" : "Total length of contract period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 1400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label" : "Total length of contract period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 1400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a6e65d2-ecbc-471f-8433-5f95d478f650", - "label" : "Youth Offender Panel name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d928400b-8f20-4b9e-aff5-868aafa4cc27", - "label" : "Parent/Guardian's name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f56d8811-15fb-4f82-b91e-fef8fcce3885", - "label" : "Parent/Guardian's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c6677a77-7028-4674-85c9-1cbc2f0e0088", - "label" : "This parent / guardian must attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29b5ced8-4101-4073-8642-1fa52791098a", - "label" : "This parent / guardian may attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "701fe552-5edd-477d-9fbf-4ed2c6e931e1", - "label" : "A local authority representative must attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0c25627d-07d0-406c-9e8e-08081a649cf5", - "label" : "A local authority representative may attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "848927d6-fcac-4e0d-96f7-92bb4455a162", - "label" : "This is a second referral order", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f1619e53-cdb4-4979-8211-7f92134c38c6", - "label" : "The Court certified the following facts", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", - "label" : "The Court made the following remarks", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1097", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "685cc7e9-8bd1-4559-a05c-d8a7a89f9779", - "label" : "Count to remain on file", - "shortCode" : "cremfile", - "level" : "O", - "rank" : 5300, - "wordGroups" : [ { - "wordGroup" : [ "Lie", "on", "file" ] - }, { - "wordGroup" : [ "cremfile" ] - }, { - "wordGroup" : [ "Count", "remain", "file" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "2008", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "843f1ba4-af62-4b5b-a5f2-51128b08a128", - "label" : "Referral order extended", - "shortCode" : "YOPE", - "level" : "O", - "rank" : 46700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", - "label" : "Referral period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4492f39a-37fa-4202-8913-868d88e56b2d", - "label" : "Referral period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label" : "Total length of contract period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 1300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "182985c0-5c26-4268-bd17-2f138b4ae8cc", - "label" : "Total length of contract period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 1300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9a6e65d2-ecbc-471f-8433-5f95d478f650", - "label" : "Youth Offender Panel name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5158481f-eceb-4920-b1f3-4811ddb1860b", - "label" : "Youth offending team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d928400b-8f20-4b9e-aff5-868aafa4cc27", - "label" : "Parent/Guardian's name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f56d8811-15fb-4f82-b91e-fef8fcce3885", - "label" : "Parent/Guardian's address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c6677a77-7028-4674-85c9-1cbc2f0e0088", - "label" : "This parent / guardian must attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29b5ced8-4101-4073-8642-1fa52791098a", - "label" : "This parent / guardian may attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "701fe552-5edd-477d-9fbf-4ed2c6e931e1", - "label" : "A local authority representative must attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0c25627d-07d0-406c-9e8e-08081a649cf5", - "label" : "A local authority representative may attend meetings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f1619e53-cdb4-4979-8211-7f92134c38c6", - "label" : "The Court certified the following facts", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "49acd5ab-a325-4ac7-a360-d0ae7a0e23bd", - "label" : "The Court made the following remarks", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1097", - "adjournment" : false, - "convicted" : true, - "qualifier" : "E", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b4cd9c69-ed12-4d23-948c-f35e7386a05f", - "label" : "Committed to prison for refusal to be sworn", - "shortCode" : "RSWN", - "level" : "O", - "rank" : 46800, - "wordGroups" : [ { - "wordGroup" : [ "prison", "refuse", "evidence" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", - "ruleType" : "optional" - } ] - }, { - "id" : "5f938747-a0aa-47b7-84a5-31fe87cfb15b", - "label" : "Committed to prison for refusal to affirm", - "shortCode" : "AFM", - "level" : "O", - "rank" : 46900, - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", - "ruleType" : "optional" - } ] - }, { - "id" : "005c9631-a1f1-4222-9702-88fb9368a17c", - "label" : "Committed to prison for refusal to produce documents", - "shortCode" : "CPRPD", - "level" : "O", - "rank" : 47000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "dbb41b1a-a302-485f-96f9-1632c7ce1eff", - "label" : "Documents or items to be produced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", - "ruleType" : "optional" - } ] - }, { - "id" : "381f97b8-b8c8-45b0-a8d6-ac8f58da5493", - "label" : "Committed to prison for refusal to give evidence and produce documents", - "shortCode" : "EVP", - "level" : "O", - "rank" : 47100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "dbb41b1a-a302-485f-96f9-1632c7ce1eff", - "label" : "Documents or items to be produced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", - "ruleType" : "optional" - } ] - }, { - "id" : "c09416e2-327c-11e8-b467-0ed5f89f718b", - "label" : "Committed to prison for refusal to give evidence", - "shortCode" : "EV", - "level" : "O", - "rank" : 47200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "9b43a5f4-2688-4534-92c3-82c0b106b59c", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "66105417-41c8-420d-820f-40b61b507442", - "ruleType" : "optional" - } ] - }, { - "id" : "8c67b30a-418c-11e8-842f-0ed5f89f718b", - "label" : "Defendant's details changed", - "shortCode" : "DDCH", - "level" : "D", - "rank" : 47300, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4592", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "98138ec8-5dd3-11e8-9c2d-fa7ae01bbebc", - "label" : "Text", - "shortCode" : "TEXT", - "level" : "O", - "rank" : 47400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "b4ac2e46-5dd3-11e8-9c2d-fa7ae01bbebc", - "label" : "Text", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", - "version": "2021-02-25T12:41:15.256Z", - "startDate": "2021-02-26", - "label": "Reserve Terms Lump sum", - "shortCode": "RLSUM", - "level": "D", - "rank": 9000, - "wordGroups": [ - { - "wordGroup": [ - "RLSUM" - ] + "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", + "label": "Responsible officer", + "welshLabel": "Swyddog cyfrifol", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 340, + "financial": "N", + "reference": "responsibleOfficer", + "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "wordGroup": [ - "rt", - "ls" - ] + "id": "90d17fe3-8f87-43f2-bd96-a4108e4603ae", + "label": "The reasons for this", + "welshLabel": "Y rhesymau dros hyn", + "resultPromptRule": "optional", + "type": "FIXLOM", + "sequence": 300, + "financial": "N", + "reference": "theReasonsForThis", + "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "M", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "wordGroup": [ - "pay", - "reserve", - "terms", - "lump" - ] + "id": "da9c91a6-7090-44f3-8644-b4b184533fc4", + "label": "which is on case number", + "welshLabel": "sydd dan y rhif achos", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 160, + "financial": "N", + "reference": "whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber", + "userGroups": [], + "min": "1", + "max": "20", + "qual": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "wordGroup": [ - "terms", - "lump", - "sum", - "reserve" - ] - } - ], - "prompts": [ - { - "id": "c131cab0-5dd6-11e8-9c2d-fa7ae01bbebc", - "label": "Pay lump sum in full within", - "welshLabel": "Talu cyfandaliad yn llawn o fewn", + "id": "ea957761-0813-4a92-9e7c-b536654325f0", + "label": "Imprisonment reasons", + "welshLabel": "Rhesymau dros garcharu", "resultPromptRule": "mandatory", "type": "FIXL", - "sequence": 100, + "sequence": 200, "financial": "N", - "reference": "LSPW", - "fixedListId": "cd4cc782-5dd6-11e8-9c2d-fa7ae01bbebc", - "userGroups": [ - - ], + "reference": "imprisonmentReasons", + "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "M", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", + "label": "Supervising Court", + "welshLabel": "Llys sy’n Goruchwylio", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 360, + "financial": "N", + "reference": "supervisingCourt", + "userGroups": [], + "min": "1", + "max": "120", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "referenceDataKey": "supervisingCourt", "nameEmail": false, - "associatedWithReferenceData": false + "cacheable": 2, + "associatedWithReferenceData": true } ], - "welshLabel": "Cyfandaliad y Telerau Wrth Gefn", + "welshLabel": "Gorchymyn dedfryd ohiriedig - carcharu", "financial": "N", "unscheduled": false, "adjournment": "N", "category": "F", "urgent": false, - "convicted": "N", + "convicted": "Y", "d20": false, - "resultDefinitionGroup": "Payment terms", + "dvlaCode": "C", + "cjsCode": "1115", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, - "rollUpPrompts": false, + "rollUpPrompts": true, "publishedForNows": false, "publishedAsAPrompt": false, "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "M", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, { - "id" : "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", - "label" : "Reserve Terms Lump sum plus instalments", - "shortCode" : "RLSUMI", - "level" : "C", - "rank" : 47600, - "wordGroups" : [ { - "wordGroup" : [ "pay", "reserve", "terms", "lump", "sum", "instalments" ] - }, { - "wordGroup" : [ "reserve", "terms", "lump", "sum", "instalments" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8e235a65-5ea2-4fff-ba3b-6cdb74195436", - "label" : "Lump sum amount", - "welshLabel" : "Cyfanswm y lwmp swm", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "LSA", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", - "label" : "Instalment amount", - "welshLabel" : "Swm y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "IAMT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b487696e-dfc9-4c89-80d3-337a4319e925", - "label" : "Instalment start date", - "welshLabel" : "Dyddiad cychwyn y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f2a61e80-c13e-4f44-8e91-8ce23e85596b", - "label" : "Payment frequency", - "welshLabel" : "Amlder y taliadau", - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual" : null, - "reference" : "PF", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Lwmp swm a rhandaliadau - Telerau Wrth Gefn", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2236c06f-ad8e-4620-abbe-0ee214fa885c", - "label" : "Count quashed", - "shortCode" : "CQUASH", - "level" : "O", - "rank" : 5400, - "wordGroups" : [ { - "wordGroup" : [ "Count", "quashed" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", - "label" : "Reserve Terms Instalments only", - "shortCode" : "RINSTL", - "level" : "C", - "rank" : 47700, - "wordGroups" : [ { - "wordGroup" : [ "pay", "reserve", "terms", "instalments" ] - }, { - "wordGroup" : [ "reserve", "terms", "instalments" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", - "label" : "Instalment amount", - "welshLabel" : "Swm y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "IAMT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f2a61e80-c13e-4f44-8e91-8ce23e85596b", - "label" : "Payment frequency", - "welshLabel" : "Amlder y taliadau", - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual" : null, - "reference" : "PF", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e091af2e-43d0-495d-b3b0-432010358a45", - "label" : "Instalment start date", - "welshLabel" : "Dyddiad cychwyn y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "ISTD", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rhandaliadau yn unig - Telerau Wrth Gefn", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", - "label" : "Lump sum plus instalments", - "shortCode" : "LUMSI", - "level" : "C", - "rank" : 47800, - "wordGroups" : [ { - "wordGroup" : [ "pay", "lump", "sum", "instalments" ] - }, { - "wordGroup" : [ "lump", "sum", "instalments" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "11ba492a-e2ad-11e8-9f32-f2801f1b9fd1", - "label" : "Lump sum amount", - "welshLabel" : "Cyfanswm y lwmp swm", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "LSA", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", - "label" : "Instalment amount", - "welshLabel" : "Swm y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "IAMT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fb4f761c-29d0-4a8e-a947-3debf281dab0", - "label" : "Payment frequency following lump sum", - "welshLabel" : "Amlder y taliadau yn dilyn lwmp swm", - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual" : null, - "reference" : "PF", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e091af2e-43d0-495d-b3b0-432010358a45", - "label" : "Instalment start date", - "welshLabel" : "Dyddiad cychwyn y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "ISTD", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a9ad5002-ea38-4374-a475-4b352cdfa207", - "label" : "Parent / Guardian to pay", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PARENT_GAURDIAN_TO_PAY", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", - "label" : "Number of days in default", - "welshLabel" : "Nifer y diwrnodau lle erys y ddyled heb ei thalu", - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "DID", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d0f08c9c-e1e5-46eb-b573-f1728bc51414", - "label" : "Payment card required", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PAYMENT_CARD_REQUIRED", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Lwmp swm a rhandaliadau", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", - "label" : "Instalments only", - "shortCode" : "INSTL", - "level" : "C", - "rank" : 47900, - "wordGroups" : [ { - "wordGroup" : [ "pay", "instalments", "only" ] - }, { - "wordGroup" : [ "instalments", "only" ] - }, { - "wordGroup" : [ "INSTL" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1393acda-7a35-4d65-859d-6298e1470cf1", - "label" : "Instalment amount", - "welshLabel" : "Swm y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "IAMT", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f2a61e80-c13e-4f44-8e91-8ce23e85596b", - "label" : "Payment frequency", - "welshLabel" : "Amlder y taliadau", - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "e555e078-5dd8-11e8-9c2d-fa7ae01bbebc", - "qual" : null, - "reference" : "PF", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e091af2e-43d0-495d-b3b0-432010358a45", - "label" : "Instalment start date", - "welshLabel" : "Dyddiad cychwyn y rhandaliad", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "ISTD", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a9ad5002-ea38-4374-a475-4b352cdfa207", - "label" : "Parent / Guardian to pay", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PARENT_GAURDIAN_TO_PAY", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", - "label" : "Number of days in default", - "welshLabel" : "Nifer y diwrnodau lle erys y ddyled heb ei thalu", - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "DID", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d0f08c9c-e1e5-46eb-b573-f1728bc51414", - "label" : "Payment card required", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "PAYMENT_CARD_REQUIRED", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rhandaliadau yn unig", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Payment terms", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id": "4871697d-6dd1-4da2-8894-707e6b13c361", - "version": "2021-02-25T12:43:06.714Z", - "startDate": "2021-02-26", - "label": "Reserve Terms", - "shortCode": "RT", - "level": "D", - "rank": 8500, - "userGroups": [ - - ], - "welshLabel": "Telerau Wrth Gefn", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "I", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": true, "alwaysPublished": false, "jurisdiction": "B", + "libraCode": "SUSPS", "resultDefinitionRules": [ { - "childResultDefinitionId": "9ba8f03a-5dda-11e8-9c2d-fa7ae01bbebc", - "ruleType": "oneOf" + "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "ruleType": "optional" }, { - "childResultDefinitionId": "d6e93aae-5dd7-11e8-9c2d-fa7ae01bbebc", - "ruleType": "oneOf" + "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "ruleType": "mandatory" }, { - "childResultDefinitionId": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", - "ruleType": "oneOf" + "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "859c7729-93bf-4fda-8345-3e56695dddb5", + "ruleType": "optional" } ], - "isAvailableForCourtExtract": false, + "canBeSubjectOfBreach": true, + "canBeSubjectOfVariation": true, + "resultTextTemplate": "Committed to prison for {imprisonmentPeriod}[ {concurrent}][ consecutive to offence {consecutiveToOffenceNumber}][ which is on case number {whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber}] suspended. Reason: {imprisonmentReasons}.[ Reason for custody: {theReasonsForThis}.] [The defendant must comply with the requirements (shown below) within the supervision period.%CRS%] %FRHS% In the event of activation of sentence: {bailRemandDaysToCountTaggedDays} bail remand days to count. %STIMP%", + "dependantResultDefinitionGroup": "Community Requirements", + "isAvailableForCourtExtract": true, "isBooleanResult": false - },{ - "id": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", - "version": "2022-01-10T09:35:43.154Z", - "startDate": "2022-01-11", - "label": "Application made for benefit deductions", - "shortCode": "ABDC", + }, + { + "id": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", + "version": "2022-12-08T20:00:45.902Z", + "startDate": "2022-12-09", + "label": "Total suspended custodial period", + "shortCode": "STIMP", "level": "D", - "rank": 600, + "rank": 29200, "wordGroups": [ { "wordGroup": [ - "application", - "benefit", - "deductions" + "STIMP" ] }, { "wordGroup": [ - "ABDC" + "SSO", + "suspended", + "custodial", + "imprisonment", + "period", + "Total" ] } ], "prompts": [ { - "id": "91687bb9-d0ca-44a7-ada0-b89b71b89b8e", - "label": "DWP AP number", - "welshLabel": "Rhif AP DWP", + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Years", + "financial": "N", + "reference": "totalCustodialPeriod", + "wordGroup": [ + "Years" + ], + "userGroups": [], + "welshDuration": "Flynedd", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Months", + "financial": "N", + "reference": "totalCustodialPeriod", + "wordGroup": [ + "Months" + ], + "userGroups": [], + "welshDuration": "Mis", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Weeks", + "financial": "N", + "reference": "totalCustodialPeriod", + "wordGroup": [ + "Weeks" + ], + "userGroups": [], + "welshDuration": "Wythnos", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", + "label": "Total custodial period", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Days", + "financial": "N", + "reference": "totalCustodialPeriod", + "wordGroup": [ + "Days" + ], + "userGroups": [], + "welshDuration": "Niwrnod", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", + "label": "Judge reserves breach proceedings", + "welshLabel": "Barnwr yn neilltuo achos torri amodau", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 1600, + "financial": "N", + "reference": "judgeReservesBreachProceedings", + "wordGroup": [ + "reserved" + ], + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 500, + "duration": "Years", + "financial": "N", + "reference": "supervisionPeriod", + "wordGroup": [ + "Years" + ], + "userGroups": [], + "welshDuration": "Flynedd", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 500, + "duration": "Months", + "financial": "N", + "reference": "supervisionPeriod", + "wordGroup": [ + "Months" + ], + "userGroups": [], + "welshDuration": "Mis", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 500, + "duration": "Weeks", + "financial": "N", + "reference": "supervisionPeriod", + "wordGroup": [ + "Weeks" + ], + "userGroups": [], + "welshDuration": "Wythnos", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", + "label": "Supervision period", + "welshLabel": "Cyfnod Goruchwylio", "resultPromptRule": "optional", - "type": "TXT", + "type": "INT", + "sequence": 500, + "duration": "Days", + "financial": "N", + "reference": "supervisionPeriod", + "wordGroup": [ + "Days" + ], + "userGroups": [], + "welshDuration": "Niwrnod", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", + "resultPromptRule": "mandatory", + "type": "INT", "sequence": 200, + "duration": "Years", "financial": "N", - "reference": "dWPAPNumber", - "userGroups": [ - "CPS", - "Defence", - "Judiciary", - "NCES", - "Probation", - "Prosecuting Authorities", - "YOTs" + "reference": "suspendedPeriod", + "wordGroup": [ + "Years" ], - "min": "0", - "max": "10", - "courtExtract": "N", + "userGroups": [], + "durationSequence": 2, + "welshDuration": "Flynedd", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "8273d5ba-680e-11e8-adc0-fa7ae01bbebc", - "label": "Reason", - "welshLabel": "Rheswm", - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 100, + "id": "95618691-0742-417e-82b9-c4d4bff94585", + "label": "Suspended period", + "welshLabel": "Cyfnod Gohiriedig", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 200, + "duration": "Months", "financial": "N", - "reference": "reason", - "fixedListId": "1fa26fa6-da67-48f7-9bb4-9b55d825854e", - "userGroups": [ - + "reference": "suspendedPeriod", + "wordGroup": [ + "Months" ], + "userGroups": [], + "durationSequence": 2, + "welshDuration": "Mis", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false - } - ], - "welshLabel": "Cais wedi'i wneud am ddidyniadau o fudd-dal", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "N", - "d20": false, - "cjsCode": "1514", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "M", - "resultDefinitionRules": [ + }, { - "childResultDefinitionId": "4871697d-6dd1-4da2-8894-707e6b13c361", - "ruleType": "mandatory" - } - ], - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, { - "id" : "bdb32555-8d55-4dc1-b4b6-580db5132496", - "label" : "Attachment of earnings order", - "shortCode" : "AEOC", - "level" : "C", - "rank" : 48100, - "wordGroups" : [ { - "wordGroup" : [ "attachment", "earnings", "Order" ] - }, { - "wordGroup" : [ "AEOC" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a289b1bd-06c8-4da3-b117-0bae6017857c", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "485f7d22-718c-4f47-bbd5-f8d934417a03", - "label" : "Employer's name", - "welshLabel" : "Enw eich cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "86854563-b404-4cd4-9c05-50f1e61a0bfe", - "label" : "Employer's address Line 1", - "welshLabel" : "Llinell gyntaf cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerAddress1", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef87b9fe-1d9d-46a2-b094-ce5ba24a9835", - "label" : "Employer's address Line 2", - "welshLabel" : "Ail linell cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerAddress2", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "df1d55f8-29dd-42d2-8f99-cb4d369cb38b", - "label" : "Employer's address Line 3", - "welshLabel" : "Trydedd linell cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerAddress3", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d3d8e5dc-4ced-4d57-bcbb-5de8f91a580a", - "label" : "Employer's address Line 4", - "welshLabel" : "Pedwaredd llinell cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerAddress4", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a812f1c7-96df-4d8d-9684-25e4e227b2e2", - "label" : "Employer's address Line 5", - "welshLabel" : "Pumed llinell cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerAddress5", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4ff32fe8-5508-4b7e-8e6f-b3e79763a9fe", - "label" : "Employer's post code", - "welshLabel" : "Cod post cyfeiriad y cyflogwr", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerPostCode", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "eb1d0fdc-2e51-4e98-9f6e-ee0daa14c157", - "label" : "Employee reference number", - "welshLabel" : "Cyfeirnod y cyflogai", - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "employerReferenceNumber", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Gorchymyn Atafaelu Enillion", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1511", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "76d43772-0660-4a33-b5c6-8f8ccaf6b4e3", - "label" : "Costs", - "shortCode" : "FCOST", - "level" : "C", - "rank" : 48200, - "wordGroups" : [ { - "wordGroup" : [ "FCOST" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "db261fd9-c6bb-4e10-b93f-9fd98418f7b0", - "label" : "Amount of costs", - "welshLabel" : "Swm y costau", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOC", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "22ebf965-8a1c-4229-9894-0df7f8117753", - "label" : "Major creditor name", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", - "qual" : null, - "reference" : "CREDNAME", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "043faecf-e97c-4daf-9763-4b755d941b45", - "label" : "Minor creditor title", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "202afd61-e9fb-4bc7-aad6-f0a5799406e2", - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", - "label" : "Minor creditor company name", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", - "label" : "Minor creditor surname", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", - "label" : "Minor creditor initials", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "41576571-5573-498b-a9e9-eee24f7a67fa", - "label" : "Minor creditor forename(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", - "label" : "Minor creditor address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", - "label" : "Minor creditor postcode", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - } ], - "welshLabel" : "Costau", - "isAvailableForCourtExtract" : true, - "financial" : true, - "category" : "F", - "cjsCode" : "3011", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c514dcec-804c-11e8-adc0-fa7ae01bbebc", - "label" : "Adjournment reason: Equivocal plea", - "shortCode" : "EP", - "level" : "O", - "rank" : 48300, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "equivocal", "plea" ] - }, { - "wordGroup" : [ "adjournment", "equivocal" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio: Ple amhendant", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "GC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", - "label" : "Adjournment reason: To attend or to return the plea form sent with the summons", - "shortCode" : "AP", - "level" : "O", - "rank" : 48400, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "return" ] - }, { - "wordGroup" : [ "adjournment", "attend" ] - }, { - "wordGroup" : [ "adjournment", "appear", "proceed", "prove", "Absence" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio: I fynychu neu i ddychwelyd y ffurflen pledio a anfonwyd gyda'r wŷs", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "DM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Next hearing in magistrates' court", - "shortCode" : "NHMC", - "level" : "O", - "rank" : 48500, - "wordGroups" : [ { - "wordGroup" : [ "NHMC" ] - }, { - "wordGroup" : [ "next", "hearing", "magistrates" ] - }, { - "wordGroup" : [ "adjournment", "magistrates" ] - } ], - "userGroups" : [ ], - "resultTextTemplate": "hearing on {HDATE}[ at {timeOfHearing}][ in {HCROOM},] {HCHOUSE~Name}", - "prompts" : [ { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - },{ - "id": "e73e6ab8-9bfe-4135-9fe6-f526544584d6", - "label": "Booking reference", - "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": true, - "associateToReferenceData": false, - "sequence": 700, - "userGroups": [], - "courtExtract": "N", - "financial": "N", - "jurisdiction": "M", - "min": "1", - "max": "50", - "reference": "bookingReference" - }, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified organisation name", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 700, + "financial": "N", + "reference": "probationteamtobenotifiedOrganisationName", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "OrganisationName", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 1", - "resultPromptRule": "optional", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 1", + "resultPromptRule": "mandatory", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEAddress1", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedAddress1", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "AddressLine1", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true - }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 2", + }, + { + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 2", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEAddress2", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedAddress2", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "AddressLine2", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 3", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 3", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEAddress3", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedAddress3", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "AddressLine3", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 4", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 4", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEAddress4", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedAddress4", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "AddressLine4", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 5", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified address line 5", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEAddress5", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedAddress5", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "AddressLine5", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse post code", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified post code", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEPostCode", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedPostCode", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", "partName": "PostCode", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "welshLabel": "Ystafell Llys", - "resultPromptRule": "optional", - "type": "INT", - "sequence": 400, + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 700, "financial": "N", - "reference": "HCROOM", - "userGroups": [ - ], - "min": "1", - "max": "99", - "courtExtract": "Y", + "reference": "probationteamtobenotifiedEmailAddress1", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", - "hidden": false, - "referenceDataKey": "HCROOM", - "nameEmail": false, + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress1", + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, - { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse organisation name", + "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", + "label": "Probation team to be notified email address 2", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 700, "financial": "N", - "reference": "hCHOUSEOrganisationName", - "userGroups": [ - ], + "reference": "probationteamtobenotifiedEmailAddress2", + "userGroups": [], "min": "", "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", - "hidden": false, + "hidden": true, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", - "partName": "OrganisationName", - "nameEmail": false, + "componentLabel": "Probation team to be notified", + "fixListLabel": "Select Probation team to be notified", + "referenceDataKey": "probationteamtobenotified", + "partName": "EmailAddress2", + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Hours", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", - "label" : "Estimated duration", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Minutes", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HEST", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d27a5d86-d51f-4c6e-914b-cb4b0abc4283", - "label" : "Date of hearig", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HDATE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dfac671c-5b85-42a1-bb66-9aeee388a08d", - "label" : "Time of hearing", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTIME", - "courtExtract" : "Y", - "durationSequence" : null - },{ - "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", - "label": "Time of hearing", + "id": "0ccd9da5-d611-4f9e-92ff-02375be8bb11", + "label": "Total sentence consecutive to", + "welshLabel": "Y ddedfryd gyfan yn dilyn y", "resultPromptRule": "optional", - "type": "TIME", - "sequence": 200, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "Y", + "type": "TXT", + "sequence": 300, "financial": "N", + "reference": "totalSentenceConsecutiveTo", + "userGroups": [], + "min": "1", + "max": "150", + "courtExtract": "Y", "jurisdiction": "B", - "reference": "timeOfHearing" - }, - { - "id" : "5f507153-6dc9-4ec0-94db-c821eff333f1", - "label" : "Courtroom", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HCROOM", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "66868c04-72c4-46d9-a4fc-860a82107475", - "label" : "Courthouse name", - "welshLabel" : "Enw’r adeilad llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HCHOUSE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null - }, - { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "sequence":15, - "mandatory":false, - "userGroups":[ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "reference":"totalCustodialPeriod", - "type":"TXT", - "welshLabel":"TBD" - }, - { - "id":"d6caa3c4-ec9d-41ec-8f86-2c617ef0d5d9", - "label":"End Date", - "mandatory":false, - "type":"DATE", - "sequence":16, - "userGroups":[ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "reference":"endDate", - "welshLabel":"TBD" - }, - { - "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", - "label": "First review date", - "reference": "firstReviewDate", - "mandatory":false, - "type":"DATE", - "sequence":17, - "userGroups":[ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "welshLabel":"TBD" - }, - { - "id" : "c1116d12-dd35-4171-807a-2cb845357d22", - "label" : "Hearing type", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "HTYPE", - "courtExtract" : "Y", - "durationSequence" : null - }, - { - "id": "f622f008-f8e7-4f34-a7df-df85a7ed4d47", - "label": "First review time", - "reference": "firstReviewTime", - "mandatory":false, - "type":"TIME", - "sequence":18, - "userGroups":[ - "Court Clerks", - "Probation Admin", - "Police Admin", - "Victims & Witness Care Admin", - "Youth Offending Service Admin" - ], - "welshLabel":"TBD" - } - ], - "welshLabel" : "Ni wnaeth y Llys barhau â’r treial yn absenoldeb y diffynnydd", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Next hearing", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d278650c-e429-11e8-9f32-f2801f1b9fd1", - "label" : "Adjournment", - "shortCode" : "A", - "level" : "O", - "rank" : 48600, - "wordGroups" : [ { - "wordGroup" : [ "A" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label" : "Is the defendant excused attendance?", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantExcusedAttendance", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Gohiriad", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4506", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5ec54bfb-cde0-4ad2-bf87-d266e54fe072", - "label" : "Indictment to remain on file", - "shortCode" : "IREMFILE", - "level" : "O", - "rank" : 5500, - "wordGroups" : [ { - "wordGroup" : [ "indictment", "remain", "file" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "2008", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2852b770-a7ad-11e8-98d0-529269fb1459", - "label" : "Forfeiture and destruction", - "shortCode" : "FDEST", - "level" : "O", - "rank" : 7700, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "destruction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "13efdd20-a7ae-11e8-98d0-529269fb1459", - "label" : "Property to be forfeited and destroyed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7cca9a0e-b11f-4863-9fec-45b9b13f946b", - "label" : "Forfeiture and destruction ordered under", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "26d4c112-a7ae-11e8-98d0-529269fb1459", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4a30821a-a7b6-11e8-98d0-529269fb1459", - "label" : "Responsible for destroying property", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ea26f773-0a91-4526-b4ad-84d07b5bf940", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3135", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", - "version": "2021-02-25T12:41:20.415Z", - "startDate": "2021-02-26", - "label": "Pay by date", - "shortCode": "PDATE", - "level": "D", - "rank": 76700, - "wordGroups": [ - { - "wordGroup": [ - "PDATE" - ] + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "wordGroup": [ - "PBD", - "pay", - "full", - "date" - ] - } - ], - "prompts": [ - { - "id": "a9ad5002-ea38-4374-a475-4b352cdfa207", - "label": "Parent / Guardian to pay", - "welshLabel": "Rhiant / Gwarcheidwad i dalu", + "id": "3e7dab34-bb9d-46df-9a45-139113ee0b09", + "label": "which was imposed by", + "welshLabel": "a orfodwyd gan", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 200, + "type": "FIXL", + "sequence": 400, "financial": "N", - "reference": "PARENT_GAURDIAN_TO_PAY", - "userGroups": [ - - ], + "reference": "whichWasImpBy", + "userGroups": [], "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "referenceDataKey": "whichWasImpBy", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "ee7d253a-c629-11e8-a355-529269fb1459", - "label": "Date to pay in full by", - "welshLabel": "Dyddiad terfyn ar gyfer talu'r swm llawn", - "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, + "id": "21549bc3-5be9-4a91-abc7-57d8ed1b1676", + "label": "Reason for sentence without PSR", + "welshLabel": "Rheswm dros ddedfryd heb PSR", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 800, "financial": "N", - "reference": "PBD", - "userGroups": [ - - ], + "reference": "reasonForSentenceWithoutPSR", + "userGroups": [], + "min": "1", + "max": "1000", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -35956,6793 +65250,66 @@ "associatedWithReferenceData": false }, { - "id": "e57dd7e2-edbe-11e8-8eb2-f2801f1b9fd1", - "label": "Number of days in default", - "welshLabel": "Nifer y diwrnodau y mae'r ddyled heb ei thalu", + "id": "850439de-16ca-4282-b0f1-0ce6bf418f4e", + "label": "The custodial sentence has been suspended because", + "welshLabel": "Mae'r ddedfryd o garchar wedi'i gohirio oherwydd", "resultPromptRule": "optional", - "type": "INT", - "sequence": 300, + "type": "TXT", + "sequence": 600, "financial": "N", - "reference": "DID", - "userGroups": [ - - ], + "reference": "theCustodialSentenceHasBeenSuspendedBecause", + "userGroups": [], "min": "1", - "max": "999", + "max": "500", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, - "associatedWithReferenceData": false - } - ], - "welshLabel": "Dyddiad terfyn ar gyfer talu", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Payment terms", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "M", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, { - "id" : "de946ddc-ad77-44b1-8480-8bbc251cdcfb", - "label" : "Court house detention until court rises", - "shortCode" : "FIDICI", - "level" : "O", - "rank" : 48800, - "wordGroups" : [ { - "wordGroup" : [ "court", "rises", "until", "detention" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "9be231c5-e4e3-4294-872e-e0ad6c9a39a4", - "label" : "Type of detention", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "5769e88c-82c6-457d-9a5e-652a96ec105c", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c92fdcfc-ac7d-4692-a475-de88467f6fcf", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label" : "Total amount enforced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "TOTENF", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5c023b16-e79c-4eb5-9673-e23accbeb35b", - "label" : "Court house detention until time", - "shortCode" : "FIDICTI", - "level" : "O", - "rank" : 48900, - "wordGroups" : [ { - "wordGroup" : [ "court", "Time", "until", "detention" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0fd18b3d-d55e-4e6c-adfe-e45ad2241e5e", - "label" : "Time of release", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label" : "Total amount enforced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "TOTENF", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0e390ae0-8f3c-4735-8c0d-c16e8962537a", - "label" : "Detention in police station", - "shortCode" : "FIDIPI", - "level" : "O", - "rank" : 49000, - "wordGroups" : [ { - "wordGroup" : [ "detention", "police", "station" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a0e5f5aa-ce4d-41fa-94ba-c2fb293659b4", - "label" : "Time of release (by 8pm)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "668cda4e-a5b7-48cf-a24c-49f8927d55e1", - "label" : "Reason for decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6d2296be-3631-4a13-bfef-6be1d950cf20", - "label" : "Police Force providing police station to detain defendant", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9f78d3db-de59-47b3-a206-8e0c20dccc4a", - "label" : "Total amount enforced", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "TOTENF", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "1509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "61c246d8-f771-4420-9e02-30f34c0305b1", - "label" : "Community order amended - supervising court or end date", - "shortCode" : "COA", - "level" : "O", - "rank" : 49100, - "wordGroups" : [ { - "wordGroup" : [ "Community", "Order", "amended" ] - }, { - "wordGroup" : [ "supervising", "court" ] - }, { - "wordGroup" : [ "end", "date" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0eba630e-a486-439f-8d76-b49b1363067c", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5f1f9ac-f624-4d44-9ad0-7c1e586eee3a", - "label" : "Original end date of order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8a4af2f8-ee31-481e-847d-eb295896b975", - "label" : "New supervising court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8bad6b87-9ad5-418f-b3a3-90386d7c2769", - "label" : "Compliance date extended. All requiremets to be completed by", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1032", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4a026ff3-e1aa-407e-aafa-015723c1dbd0", - "label" : "Community order amended", - "shortCode" : "COV", - "level" : "O", - "rank" : 49300, - "wordGroups" : [ { - "wordGroup" : [ "Community", "Order", "amend" ] - }, { - "wordGroup" : [ "Requirement", "cancelled" ] - }, { - "wordGroup" : [ "new", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "0eba630e-a486-439f-8d76-b49b1363067c", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "39355876-d028-48fa-82d8-ccedbe4312f8", - "label" : "Date original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47f34fca-6355-4612-881a-07a2121b86ba", - "label" : "Supervising court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1b12bc7b-dfc7-41b7-9c4e-8c6b53b53274", - "label" : "Community requirements cancelled", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "faef913f-70ae-44cf-81dd-356c6dc41f0c", - "label" : "The court made new community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", - "label" : "The court amended a community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5e438d5-a7de-4be8-9a7d-3e07b8584f6a", - "label" : "Original community requirements to continue", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "361cee65-0550-4c9a-9fbd-3a234e9431f1", - "label" : "The end date of the order has been changed and the requirements must be complied with by", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06356516-5b1a-4036-afc5-2bb44a446a1a", - "label" : "The end date of the order has not been changed and the requirements must be complied with by", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "27bf0204-a185-4e82-8c34-7317287513c8", - "label" : "Responsible officer for the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", - "label" : "Reason for change", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40d90a02-53a9-43ef-a96f-da9ad1b476b7", - "label" : "The court made a new or varied an electronic monitoring requirement", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "92566757-ef79-4804-bced-c63ebb0937e7", - "label" : "Electronic monitoring contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40f05056-4c54-4251-a7a1-666197409f20", - "label" : "This is the first notification to contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c53e274f-ecbf-476e-971c-103a1d5a72d7", - "label" : "This is a variation of an electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1933ca78-459c-47f0-b4a9-1a4507e19af6", - "label" : "This is an additional electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6be2c968-d9b8-40fe-ba4d-f8d3c06ea129", - "label" : "This is a continuation of an electronic monitoring reequirement", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1030", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fb1a3668-4675-4541-ad61-7ca3c24ca0cc", - "label" : "Conviction quashed", - "shortCode" : "QC", - "level" : "O", - "rank" : 50000, - "wordGroups" : [ { - "wordGroup" : [ "conviction", "quashed" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "80dd4486-fa86-41f0-b09b-bad84b55f61c", - "label" : "Date appeal heard", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "CADATE", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "55f15ecf-ea80-40f4-848d-29e7b8d73ae2", - "label" : "Sentence varied", - "shortCode" : "SV", - "level" : "O", - "rank" : 50100, - "wordGroups" : [ { - "wordGroup" : [ "sentence", "varied" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "80dd4486-fa86-41f0-b09b-bad84b55f61c", - "label" : "Date appeal heard", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "CADATE", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "02c8aef6-601a-46e8-bbe5-d614e0da764a", - "label" : "Special measures direction: Witness to give evidence by means of a live link", - "shortCode" : "SMLL", - "level" : "C", - "rank" : 50300, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "live", "link" ] - }, { - "wordGroup" : [ "SMD", "live", "link" ] - }, { - "wordGroup" : [ "SMD", "witness" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "2f08896a-07b0-45b9-b7da-f919b8520480", - "label" : "Indictment quashed", - "shortCode" : "IQUASH", - "level" : "O", - "rank" : 5600, - "wordGroups" : [ { - "wordGroup" : [ "indictment", "quashed" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Special measures direction: A video recording be admitted of the evidence in chief of the interview", - "shortCode" : "SMVR", - "level" : "C", - "rank" : 50400, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "video" ] - }, { - "wordGroup" : [ "SMD", "video" ] - }, { - "wordGroup" : [ "SMD", "in", "chief" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", - "label" : "In respect of witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "inRespectOfWitnessName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "79b64864-8c39-4724-be94-e2db853db393", - "label" : "Date of interview", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef04068f-86d0-42a8-8fcf-ca12f340d57d", - "label" : "The whole of the video recording disclosed to be admitted", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c472c5b7-9e50-4390-ae59-78d6ca607231", - "label" : "Only the following specified part(s) of the video interview to be admitted, namely", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5c2c471c-08a0-46e5-8368-80d819fe4d19", - "label" : "Cross examination of the witness and re-examination of the witness to be recorded by means of a video recording and such recording to be admitted in accordance with section 28 of the Youth Justice and Criminal Evidence Act 1999", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b172d954-5aca-447b-b19e-2c836053b0af", - "label" : "Special measures direction: The recording must be made in the presence of specified person(s)", - "shortCode" : "SMVS", - "level" : "C", - "rank" : 50500, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "recording", "presence" ] - }, { - "wordGroup" : [ "SMD", "recording", "presence" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ef4d6fb2-d61c-4732-9e2c-b1c726be0f93", - "label" : "Name(s)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "41a18cc7-3106-4e84-8f66-ad52fe6dee75", - "label" : "Special measures direction: A video recording is not to be admitted because the requirements for its admission have not been complied with", - "shortCode" : "SMVN", - "level" : "C", - "rank" : 50600, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "video", "recording" ] - }, { - "wordGroup" : [ "SMD", "video", "recording" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", - "label" : "In respect of witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "inRespectOfWitnessName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "79b64864-8c39-4724-be94-e2db853db393", - "label" : "Date of interview", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ee74631f-c144-4a25-8a93-0253b98a7642", - "label" : "Special measures direction: Witness be prevented from seeing the defendant by means of a screen", - "shortCode" : "SMDW", - "level" : "C", - "rank" : 50700, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "screen" ] - }, { - "wordGroup" : [ "SMD", "screen" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "702b365f-dde6-4543-8fb5-1324c6a84ec4", - "label" : "Special measures direction: Witness be prevented from seeing the defendant by specified means", - "shortCode" : "SMSM", - "level" : "C", - "rank" : 50800, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "witness", "prevented" ] - }, { - "wordGroup" : [ "SMD", "witness", "prevented" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "62abea0f-310d-449a-bc9b-632796dec2d6", - "label" : "Specified means", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", - "label" : "Special measures direction: The examination is to be conducted through an intermediary", - "shortCode" : "SMI", - "level" : "C", - "rank" : 50900, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "intermediary" ] - }, { - "wordGroup" : [ "SMD", "intermediary" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1f983fe8-b061-4d33-86ec-1aeb37df4d8d", - "label" : "In respect of witness name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "inRespectOfWitnessName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "eef5d23c-b75e-4601-9196-02d4ec70bb27", - "label" : "Name of intermediary", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", - "label" : "Special measures direction: Witness to give evidence in private", - "shortCode" : "SMP", - "level" : "C", - "rank" : 51000, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "witness", "private" ] - }, { - "wordGroup" : [ "SMD", "witness", "private" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8683b918-c2bd-49da-bc0a-844659e097e2", - "label" : "This direction does not apply to one member of the press, namely", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "52218899-8f26-45cd-ae30-aeff5c189261", - "label" : "Special measures direction: Wigs and gowns shall not be worn for the duration of the evidence of a specified witness", - "shortCode" : "SMWG", - "level" : "C", - "rank" : 51100, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "wigs", "gowns" ] - }, { - "wordGroup" : [ "SMD", "wigs", "gowns" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "633d192a-cc90-484e-aa1d-318816b7d44a", - "label" : "Special measures direction: The accused \"in person\" shall not be permitted to cross-examine a specified witness", - "shortCode" : "SMIP", - "level" : "C", - "rank" : 51200, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "in", "person", "cross", "examine" ] - }, { - "wordGroup" : [ "SMD", "in", "person", "cross", "examine" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca43ea08-3a2b-49cf-bb7f-ac350cc519d6", - "label" : "The court appoints a specified person for the purpose of cross examination of the witness, namely", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "67a91dc8-f4f9-4f80-b644-e219326045cc", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Special measures direction: Witness to be provided with an aid to commumication", - "shortCode" : "SMAC", - "level" : "C", - "rank" : 51300, - "wordGroups" : [ { - "wordGroup" : [ "special", "measures", "direction", "aid" ] - }, { - "wordGroup" : [ "SMD", "aid" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c390d4e-3e46-4d75-9db8-961976e6d011", - "label" : "Name of witness", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "nameOfWitness", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f539367f-b941-4873-9567-a235ffb81d85", - "label" : "Device", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "device", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Special measures", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4850390f-13b3-4aa0-bae5-2dd0427b97eb", - "label" : "Discontinued", - "shortCode" : "disc", - "level" : "O", - "rank" : 5700, - "wordGroups" : [ { - "wordGroup" : [ "disc" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "2053", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", - "label" : "The court directs that evidence relating to the bad character of the defendant be admitted in the proceedings", - "shortCode" : "BCD", - "level" : "C", - "rank" : 51500, - "wordGroups" : [ { - "wordGroup" : [ "bad", "character", "direction", "admitted", "evidence" ] - }, { - "wordGroup" : [ "BCD", "admitted" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bad character", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fe77f387-ee64-4cef-8e95-c0776b9799e7", - "label" : "The court gives leave for evidence of the bad character of a person to be admitted in the proceedings", - "shortCode" : "BCO", - "level" : "C", - "rank" : 51600, - "wordGroups" : [ { - "wordGroup" : [ "bad", "character", "direction", "leave" ] - }, { - "wordGroup" : [ "BCD", "leave" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6c27cf1e-8f99-4344-b783-62f527882256", - "label" : "Name of person", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "06ae62bc-cec9-416f-9d86-d326b7b87c55", - "label" : "Reasons for making the direction", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Bad character", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "27bbe7cb-5884-4b68-9c1e-a3373cce6ce6", - "label" : "Suspended sentence order of imprisonment amended - supervising court or operational period or supervision period", - "shortCode" : "SUSPA", - "level" : "O", - "rank" : 51700, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "sentence", "amended", "supervising" ] - }, { - "wordGroup" : [ "SUSPA" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label" : "Period of imprisonment previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label" : "Period of imprisonment previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label" : "Period of imprisonment previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "20fc9c7b-ceb6-4be1-9af3-d42c4ae6ee87", - "label" : "Period of imprisonment previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label" : "Original operational period (time suspended for)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label" : "Original operational period (time suspended for)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label" : "The operational period (period of suspension) is extended to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label" : "The operational period (period of suspension) is extended to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", - "label" : "Specify court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c6d69d3-c5c3-41fd-b078-32439f516f0b", - "label" : "Specify date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", - "label" : "All community requirements are cancelled", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "27874127-6eee-4dac-b664-bf1796932b59", - "label" : "New supervision period (in full)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8a4af2f8-ee31-481e-847d-eb295896b975", - "label" : "New supervising court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1508", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "280a5606-c70a-432f-bdfe-a9dfd49f18c5", - "label" : "Suspended sentence order of imprisonment amended", - "shortCode" : "SUSPV", - "level" : "O", - "rank" : 51800, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "sentence", "amended" ] - }, { - "wordGroup" : [ "SUSPV" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", - "label" : "Original total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", - "label" : "Original total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", - "label" : "Original total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7205f528-f69e-4950-9628-a9aff3e31a40", - "label" : "Original total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0eba630e-a486-439f-8d76-b49b1363067c", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2a955180-259b-4492-9567-eec3c5ee6c27", - "label" : "Date the original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47f34fca-6355-4612-881a-07a2121b86ba", - "label" : "Supervising court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", - "label" : "The original term of imprisonment is consecutive to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c2f5704c-66f6-4323-a893-d4a212f74bc7", - "label" : "Community requirements cancelled", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "faef913f-70ae-44cf-81dd-356c6dc41f0c", - "label" : "The court made new community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", - "label" : "The court amended a community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02e44066-4850-4a74-8db6-1158f8324eb1", - "label" : "Original community requirements to continue", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "27bf0204-a185-4e82-8c34-7317287513c8", - "label" : "Responsible officer for the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", - "label" : "Reason for change", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40d90a02-53a9-43ef-a96f-da9ad1b476b7", - "label" : "The court made a new or varied an electronic monitoring requirement", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "92566757-ef79-4804-bced-c63ebb0937e7", - "label" : "Electronic monitoring contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40f05056-4c54-4251-a7a1-666197409f20", - "label" : "This is the first notification to contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c53e274f-ecbf-476e-971c-103a1d5a72d7", - "label" : "This is a variation of an electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1933ca78-459c-47f0-b4a9-1a4507e19af6", - "label" : "This is an additional electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", - "label" : "This is a continuation of an electronic monitoring requirement", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1508", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "fe2670ca-8fe9-4558-86a8-c611a18fd866", - "label" : "Witness summons", - "shortCode" : "SUMWITN", - "level" : "O", - "rank" : 51900, - "wordGroups" : [ { - "wordGroup" : [ "witness", "summons" ] - }, { - "wordGroup" : [ "SUMWITN" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a528bbfd-54b8-45d6-bad0-26a3a95eb274", - "label" : "Date of hearing", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", - "label" : "Time of hearing", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e498ec52-0adf-41cf-89e2-40955a418393", - "label" : "Courthouse name", - "welshLabel" : "Enw’r adeilad llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4b7bc1cf-e157-4f2f-9500-04dfa5504ff1", - "label" : "Courthouse address", - "welshLabel" : "Cyfeiriad y llys", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b0a4f0ea-2767-4327-8a49-6949bdf90791", - "label" : "Witness date of birth", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fff16e2a-b141-4659-94f6-edcd9581f127", - "label" : "Parent of witness name and address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0bb65e58-5d55-4f1a-8fb1-5d676b9f4cc3", - "label" : "Parent of witness date of birth", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a85ecb60-5fb4-4a5d-95c4-771de5220f39", - "label" : "Witness is required to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "854089e2-e9e1-45e7-bcf7-44de22bcc81d", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "00dbdd03-5c78-4a15-9787-f3843b90dade", - "label" : "The specified documents or things are", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ed6c7388-9103-41c2-af4f-3fe69d8582e8", - "label" : "Hearsay direction", - "shortCode" : "HD", - "level" : "C", - "rank" : 52000, - "wordGroups" : [ { - "wordGroup" : [ "hearsay", "direction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "2b04ace9-583f-4d2a-ae84-c3c377070f3c", - "label" : "Hearsay direction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c5b29640-fb51-4483-a1a9-845b75c7e8a4", - "label" : "Suspended sentence order of detention amended - supervising court or operational period or supervision period", - "shortCode" : "SUSPAD", - "level" : "O", - "rank" : 52100, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "sentence", "amend", "supervising" ] - }, { - "wordGroup" : [ "SUSPAD" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label" : "Period of detention previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label" : "Period of detention previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label" : "Period of detention previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3568c401-eb5d-4af3-8e56-11b7a8cd9b80", - "label" : "Period of detention previously imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label" : "Original operational period (time suspended for)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3bf8acdc-90c7-4a96-9a3b-93435207d89b", - "label" : "Original operational period (time suspended for)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label" : "The operational period (period of suspension) is extended to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b14d1fb1-06fb-4d4d-a543-a0d89ab25cfb", - "label" : "The operational period (period of suspension) is extended to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f18e4c43-b11e-4b4b-88a5-8f67b3e334c7", - "label" : "Specify court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c6d69d3-c5c3-41fd-b078-32439f516f0b", - "label" : "Specify date order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "45c9b1b1-afb3-4e15-896e-a2d5d1e79953", - "label" : "All community requirements are cancelled", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "27874127-6eee-4dac-b664-bf1796932b59", - "label" : "New supervision period (in full)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8a4af2f8-ee31-481e-847d-eb295896b975", - "label" : "New supervising court", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "726c4beb-9ead-4b6b-bed9-b761b5b43553", - "label" : "Suspended sentence order of detention amended", - "shortCode" : "SUSPVD", - "level" : "O", - "rank" : 52200, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "sentence", "amend" ] - }, { - "wordGroup" : [ "SUSPVD" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", - "label" : "Original total detention period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", - "label" : "Original total detention period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", - "label" : "Original total detention period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c711a619-92ac-449c-bd62-cf3218e986ad", - "label" : "Original total detention period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "961da051-d955-4016-b5cc-97f6c157958b", - "label" : "Original or amended supervision period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0eba630e-a486-439f-8d76-b49b1363067c", - "label" : "Court that made the original order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2a955180-259b-4492-9567-eec3c5ee6c27", - "label" : "Date the original order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47f34fca-6355-4612-881a-07a2121b86ba", - "label" : "Supervising court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "47a3125b-379c-4ddc-b6dc-667b4b4ef2e2", - "label" : "The original term of imprisonment is consecutive to", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "12bca5a7-6dce-472f-b424-9d9e4a9e973d", - "label" : "Community requirements cancelled", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "faef913f-70ae-44cf-81dd-356c6dc41f0c", - "label" : "The court made new community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0089cf1f-37c8-49c5-82ab-00d7b9ad5a0f", - "label" : "The court amended a community requirement(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "02e44066-4850-4a74-8db6-1158f8324eb1", - "label" : "Original community requirements to continue", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "8075e5f7-6f85-49c2-8738-c60c192d7ea1", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "27bf0204-a185-4e82-8c34-7317287513c8", - "label" : "Responsible officer for the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ef8e99a3-6f9a-4e9c-b688-9a91d7f0188b", - "label" : "Reason for change", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40d90a02-53a9-43ef-a96f-da9ad1b476b7", - "label" : "The court made a new or varied an electronic monitoring requirement", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "92566757-ef79-4804-bced-c63ebb0937e7", - "label" : "Electronic monitoring contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "40f05056-4c54-4251-a7a1-666197409f20", - "label" : "This is the first notification to contractor", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c53e274f-ecbf-476e-971c-103a1d5a72d7", - "label" : "This is a variation of an electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1933ca78-459c-47f0-b4a9-1a4507e19af6", - "label" : "This is an additional electronic monitoring requirement, the original order date was", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 1700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9dd0fbb8-62cd-43ee-8a6f-6cf71c10946e", - "label" : "This is a continuation of an electronic monitoring requirement", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1508", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "3d2c05b3-fcd6-49c2-b5a9-52855be7f90a", - "label" : "Summons on referral to other court", - "shortCode" : "SUMRTO", - "level" : "O", - "rank" : 52300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "a528bbfd-54b8-45d6-bad0-26a3a95eb274", - "label" : "Date of hearing", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf63b0b7-9d4b-45af-a16d-4aa520e6be35", - "label" : "Time of hearing", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f5699b34-f32f-466e-b7d8-40b4173df154", - "label" : "Magistrates' court", - "welshLabel" : "Llys Ynadon", - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dbbb47c9-2202-4913-9a0d-db0a048bfd5f", - "label" : "Reason for referring to court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c20d50a5-d3f5-4ff7-9366-f0a27b0c95ac", - "label" : "Case re-opened", - "shortCode" : "ROPEN", - "level" : "C", - "rank" : 52400, - "userGroups" : [ ], - "prompts" : [ { - "id" : "dcc576fb-f2ad-486f-b907-43f9db32ae40", - "label" : "Date re-opened", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b40c7eb-2095-4570-b56e-5ebbfe88e49a", - "label" : "Libra account number", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "79aa0f1a-a79b-4923-afbf-29ee3a911ef6", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Total custodial period", - "shortCode" : "TIMP", - "level" : "D", - "rank" : 5800, - "resultWording": "section 13(c)", - "userGroups" : [ ], - "prompts" : [ { - "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label" : "Total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalImprisonmentPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label" : "Total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalImprisonmentPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label" : "Total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalImprisonmentPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label" : "Total imprisonment period", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalImprisonmentPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3a0bf7f8-674f-4b5f-998d-aae0e2b2842e", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 700, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : "sentencedInAbsence", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "19d9d7b4-a55c-4f52-8cca-edf9c63e98e5", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalSentenceConsequenceToWhat", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9dbe839c-3804-4c47-bf9e-5be6f9b9b3bb", - "label" : "Total imprisonment period is life", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "totalImprisonmentPeriodInLife", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "21549bc3-5be9-4a91-abc7-57d8ed1b1676", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "reasonForSentenceWithoutPSR", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "266a2bbe-b6b5-4b24-830d-70ceff3e2cac", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "probationPeriodTobeNotified", - "isAvailableForCourtExtract" : false, - "durationSequence" : null - }, { - "id" : "52c9c1f5-2a00-45ee-bca3-024d43626773", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "600edfc3-a584-4f9f-a52e-5bb8a99646c1", - "label" : "Refer for a full court hearing", - "shortCode" : "SUMRCC", - "level" : "O", - "rank" : 52500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "bca4e07c-17e0-48f1-84f4-7b6ff8bab5e2", - "label" : "Reasons for referring to court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "a47a312a-79fe-4f3e-84ab-63a39f52bc75", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f7784e82-20b5-4d2c-b174-6fd57ebf8d7c", - "label" : "Adjourn to a later SJP hearing session", - "shortCode" : "ADJOURNSJP", - "level" : "O", - "rank" : 52600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "185e6a04-8b44-430d-8073-d8d12f69733a", - "label" : "Adjourn to date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0149ab92-5466-11e8-9c2d-fa7ae01bbebc", - "label" : "Referred for resulting in another SJP session", - "shortCode" : "SJPR", - "level" : "C", - "rank" : 52700, - "wordGroups" : [ { - "wordGroup" : [ "SJPR" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1e96d1a9-9618-4ddd-a925-ca6a0ef86018", - "label" : "Transfer of Fine Order to a Court in England or Wales", - "shortCode" : "TFOUT", - "level" : "D", - "rank" : 52800, - "wordGroups" : [ { - "wordGroup" : [ "transfer", "fine" ] - }, { - "wordGroup" : [ "TFOUT" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "5f589095-2986-4d2b-98fa-30ab00f675d4", - "label" : "Court to which fine is transferred", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "f31eadd5-41d4-4cff-98d8-effd946e7a09", - "label" : "Full bail argument", - "shortCode" : "FBA", - "level" : "O", - "rank" : 52900, - "wordGroups" : [ { - "wordGroup" : [ "full", "argument" ] - }, { - "wordGroup" : [ "FBA" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "78c79d11-a1ba-4c34-89d2-5b25977af957", - "label" : "The court certifies that full argument was heard on", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "474e4dc5-6751-4e31-849f-f03952b5597a", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8d29667b-15df-48af-9e5c-39b740b99d70", - "label" : "New considerations were placed before the court and this change in circumstances was found", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4532", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4d2fc4cf-970e-49db-83af-2756e43e106e", - "label" : "Unable to proceed with case on the Common Platform, entered into Libra", - "shortCode" : "UNABLE", - "level" : "C", - "rank" : 49200, - "wordGroups" : [ { - "wordGroup" : [ "UNABLE" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d3139b79-696b-4cb7-a39d-7f06fcc24f4a", - "label" : "Discharged", - "shortCode" : "DISCH", - "level" : "O", - "rank" : 49400, - "wordGroups" : [ { - "wordGroup" : [ "not", "guilty", "discharged" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : true, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "19463792-2c34-4c4e-bbbe-fbac0955a314", - "label" : "Anti-social behaviour injunction", - "shortCode" : "ABI", - "level" : "O", - "rank" : 49500, - "wordGroups" : [ { - "wordGroup" : [ "anti", "Social", "behaviour", "injunction" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "a13a81c9-113b-4156-8bf5-77280d5107b7", - "label" : "Duration period for anti-social behaviour injunction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7f15a291-0e73-4055-8b6c-067f628646da", - "label" : "Power of arrest attached to the following provisions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1c033a31-1fdd-400d-8277-cf520ef81de6", - "label" : "Power of arrest period ", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0ecac709-0dbe-45a7-ac04-cca8454377cc", - "label" : "Requirement supervisor for the injunction requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "33408f3d-885c-43f4-a4a8-76e37906569f", - "label" : "Police force name (for power of arrest)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2da00d65-6cdc-4149-9d51-df6cb43d9729", - "label" : "Police force address (for power of arrest) line 1", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ceb435f2-3d72-4b5a-929a-ce976881ace7", - "label" : "Police force address (for power of arrest) line 2", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "aa72f5cb-221a-42ce-b1f3-81f110be0e12", - "label" : "Police force address (for power of arrest) line 3", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6516de6a-2998-4ae5-9833-ea37b408558f", - "label" : "Police force address (for power of arrest) line 4", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6dacab3d-a730-4020-aed3-15d442fbdff5", - "label" : "Police force address (for power of arrest) line 5", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4a13b230-a819-4955-87d8-fe1f1318abc1", - "label" : "Anti-social behaviour injunction requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "18266b45-aae2-43b5-8a0b-e647df78e61a", - "label" : "Anti-social behaviour injunction prohibitions", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3516", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "32cc8e43-1d98-4fc9-a11a-265ea5af0715", - "label" : "Credit for time", - "shortCode" : "CREFT", - "level" : "D", - "rank" : 5900, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "3f4f9b75-418f-46ed-a311-230a6dbca6cb", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "0683d44b-c84f-49e7-b449-242bb6a9c60e", - "label" : "Forfeiture and deprivation", - "shortCode" : "FORAD", - "level" : "O", - "rank" : 7600, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "2852b770-a7ad-11e8-98d0-529269fb1459", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "32177be4-0a1f-4889-9ca2-c729f49d7d85", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "290435b9-cce7-43be-b340-1c7db48c5413", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "e7ef0248-fe71-4733-8749-ff0c23a04f95", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "19026543-7d59-467b-9649-35ddf89b30cc", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7610d8a1-07fe-4e69-812d-22f821d3f334", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "6532b8f4-7794-420a-9f30-8aced3e41517", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "661bdce3-ce01-4cb6-a152-6424540bbbce", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "label" : "Adjournment reasons", - "shortCode" : "ADJR", - "level" : "O", - "rank" : 33100, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio:", - "isAvailableForCourtExtract" : false, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : true, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "c93c5a18-838a-41d3-a017-c203b37f5655", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "4958de15-8a0a-4d2b-9f7e-56e037cf03da", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c2eca548-4511-4023-bbe6-50fe0b679b4a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9c1dcdfa-ec44-4167-bbd4-d29c3a63a7fc", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a1f2e6d7-7a21-41f8-9a9a-854b25a606d4", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9fd6a4ef-1055-4e54-b035-f1130a524388", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c514dcec-804c-11e8-adc0-fa7ae01bbebc", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "e15c9dc1-5d7a-4f7a-8d61-b443f99b2724", - "ruleType" : "atleastOneOf" - } ] - }, { - "id": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", - "version": "2022-01-10T09:35:48.476Z", - "startDate": "2022-01-11", - "label": "Payment terms", - "shortCode": "PAYT", - "level": "D", - "rank": 300, - "wordGroups": [ - { - "wordGroup": [ - "PAYT" - ] - }, - { - "wordGroup": [ - "terms", - "payment" - ] + "associatedWithReferenceData": false } ], - "userGroups": [ - - ], - "welshLabel": "Telerau talu", + "welshLabel": "Cyfanswm y cyfnod gohiriedig yn y ddalfa", "financial": "N", "unscheduled": false, "adjournment": "N", "category": "A", "urgent": false, - "convicted": "N", + "convicted": "Y", "d20": false, "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, + "rollUpPrompts": true, + "publishedForNows": true, "publishedAsAPrompt": false, - "excludedFromResults": true, + "excludedFromResults": false, "alwaysPublished": false, "jurisdiction": "B", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "6d76b10c-64c4-11e8-adc0-fa7ae01bbebc", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "bcb5a496-f7cf-11e8-8eb2-f2801f1b9fd1", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "a0b426c1-74b8-43cd-9885-f0f31625352e", - "ruleType": "oneOf" - }, - { - "childResultDefinitionId": "272d1ec2-634b-11e8-adc0-fa7ae01bbebc", - "ruleType": "oneOf" - } - ], "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, + "resultTextTemplate": "Total custodial period {totalCustodialPeriod} suspended for {suspendedPeriod} [Total sentence consecutive to {totalSentenceConsecutiveTo}][ which was imposed by {whichWasImpBy}]. [Supervision period {supervisionPeriod}.][ The custodial sentence has been suspended because {theCustodialSentenceHasBeenSuspendedBecause}.][ Reason for sentence without PSR {reasonForSentenceWithoutPSR}.]", "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, { - "id" : "874911d0-acf2-4b6f-bcca-cacbb6bb2862", - "label" : "Pre-release bail conditions", - "shortCode" : "PREBC", - "level" : "O", - "rank" : 26900, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : false, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : true, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "4ddda002-526e-4d70-9df7-eeaae75cfab7", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d85486c4-06f1-4813-859b-5495ca578bde", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bb0a2862-a565-46aa-96ed-1e6f972949d0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1ebd5ca1-866d-43a0-ad9a-464e8a228235", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "279fd36e-17c5-42b2-b56b-a6ab27b9b592", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "21a44cbb-fe6b-4246-bf10-85bc1eef9fff", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "e5864697-640a-47be-9289-9e6205bbe579", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ef8ca749-d5c7-4a33-8b72-1c643f38aaa8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "5a7fc626-56ec-4ccc-ae1b-fe508265c44b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b53d0e01-a6e9-4817-abba-1f4e07ef6ac9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "4558f9b2-47f8-4430-a0f8-684df5d55761", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b9581c12-81c9-434d-8851-03d9638547fa", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b922e6bd-70a4-4b28-b583-165179af6162", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f41509fd-3a6a-405e-9f82-85ae3cfc2d48", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c51e3522-5363-4af0-b5af-97a5f9eb5462", - "ruleType" : "atleastOneOf" - } ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "jurisdiction": "B", + "isBooleanResult": false, + "resultDefinitionGroup": "Community Requirements" + }, + { + "id": "b2dab2b7-3edd-4223-b1be-3819173ec54d", + "version": "2022-07-07T11:34:43.558Z", + "startDate": "2022-07-08", + "label": "Community requirements", + "shortCode": "CRS", + "level": "O", + "rank": 101200, "userGroups": [], - "resultTextTemplate": "%AllChildText%", - "terminatesOffenceProceedings": false - }, { - "id" : "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Bail conditions", - "shortCode" : "BAIC", - "level" : "O", - "rank" : 400, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : false, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : true, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "525c4660-9a0b-4a86-80fc-0efce539d6a5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "e073f3ba-2585-4c0d-8c31-e51a1662d143", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1aa6a828-fedb-43bd-89e8-bc74586d5e85", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "136725da-5b0a-43d3-adac-54f916bcf2bb", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "09be7e95-2ed6-448c-9550-fd2f84a0c9e3", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9c88a9f3-fc2f-4001-80f1-c6e88c12defd", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "12e15e99-e0f9-4e6c-bf1c-1de8bdda1f3b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bd82eb10-60c4-437d-80e1-f4aff5a7e3d8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "6889288e-5e4a-4523-be2c-cc993a00af29", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "0649851f-01f8-48fb-928d-6fe100042b2a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f5eb4016-d862-4b0a-b9bc-7b3e535476e5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "fa49f99a-a2f1-4d4a-bd14-d18ab1c9eca5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "03edddce-c188-4b38-9832-988d9d1ee802", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "5c02ff4c-6a33-4089-8c9e-f120a688b018", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d45c8150-3095-4cb3-a55e-b4fd094af560", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "922386e1-bdc2-403e-8902-af1da14e1fd8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d34b643e-74d5-4288-a4b9-bce14d0069d5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "fb9b273e-06c3-4a4a-940c-3c053c559abe", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "481547e6-9099-475e-8028-2bce2c52ff5f", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a8c4fc20-6eee-4ff1-8244-d2d167e88a13", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "dfa19118-e944-43f4-93b2-2ed49df5553f", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c1d490ed-1754-43b8-a485-fdab1a25f8cb", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "90146942-b1b9-4a2e-af2b-141f50d45e5c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9da5909e-d715-4f79-a1b8-34780c57acf1", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d709a455-02cc-40d9-b3d2-e4194dc46792", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9b18ec3a-5eb3-4bfc-a129-623ceb3de8cd", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "3c98b287-fd01-471a-ac34-e0a56d9e95c2", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ac44c4ed-c77c-4552-aed7-b4f05f1dc9db", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c9ae30f1-3c3b-4edf-a7d4-49bd027977c3", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "4c79ea50-6e14-4c47-8836-c0d0f647e45a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "834ed20a-d7d8-419b-b72d-61b30db36560", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "46051d94-0e60-4010-b86d-cf65e1a464d8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "3ac96bce-c14d-4f90-9ed3-29aa7bd92c24", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2eb11fe9-9b82-43a4-b195-ec1da6a43f8a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bf85c3eb-47a8-49c3-aa3e-ced9fcb81991", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f717c363-dc51-4c65-8d85-7c7c6f57f0b6", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a50ad03e-d299-4da7-874c-0f233d7d503d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c18dd89d-e057-42aa-b071-0a91226da3bf", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "795079ed-4b5a-4750-b077-d653180d43ae", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "71efa12c-a68e-4537-ac7d-27ebf91557a6", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "36951b36-de01-45bc-91a7-1c68f5989ed5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "91141263-7f27-494f-95e9-04a113952974", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "76cabfae-b8de-4988-ba5a-3b9ac9115ee8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1e30f5c0-b1bc-4fb4-9d35-813915cd228d", - "ruleType" : "atleastOneOf" - } ], + "welshLabel": "Gofynion cymunedol", + "financial": "N", + "unscheduled": false, "adjournment": "N", "category": "A", "urgent": false, "convicted": "N", "d20": false, - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "cacheable": 1, - "userGroups": [], - "resultTextTemplate": "%AllChildText%", - "welshLabel": "Amodau mechnïaeth", - "terminatesOffenceProceedings": false - }, { - "id" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Next hearing", - "shortCode" : "NEXH", - "level" : "O", - "rank" : 300, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Gwrandawiad nesaf", - "isAvailableForCourtExtract" : false, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : true, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "fbed768b-ee95-4434-87c8-e81cbc8d24c8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "70c98fa6-804d-11e8-adc0-fa7ae01bbebc", - "ruleType" : "optional" - } ] - }, { - "id" : "d076bd4a-17d5-4720-899a-1c6f96e3b35f", - "label" : "Remand unconditional bail", - "shortCode" : "REMUB", - "level" : "O", - "rank" : 32900, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "10ba4bc8-e5ff-432c-aa98-3e7352d6c879", - "ruleType" : "mandatory" - }, { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "mandatory" - }, { - "childResultDefinitionId" : "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "ruleType" : "optional" - } ] - }, { - "id" : "0056b9e1-7585-4bfa-82ec-f06202670bb1", - "label" : "Remand in custody", - "shortCode" : "REMIC", - "level" : "O", - "rank" : 33200, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "d0a369c9-5a28-40ec-99cb-da7943550b18", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "e3315a27-35fd-4c43-8ba6-8b5d69aa96fb", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "d30f1863-f319-49fd-855d-2cf3fa6b3cea", - "label" : "Remand appeal", - "shortCode" : "REMA", - "level" : "O", - "rank" : 33400, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6af22d8d-6157-460e-b641-e6db90d15289", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7a0932f5-8264-412e-a83c-2b6d1dce1506", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "074124d5-b07a-4b73-8b9a-792e8462138a", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "62cd1ba4-9aaf-413b-96b0-238cfc82ef18", - "label" : "Press", - "shortCode" : "PRESS", - "level" : "O", - "rank" : 34100, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "fcbf777d-1a73-47e7-ab9b-7c51091a022c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f5e309fc-0ec0-40ef-b12d-be27aa3d6f8c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "89e3c24b-acbf-42fb-9eee-169b83423035", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c265d589-fcc0-451b-be43-7856e32524ba", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "393c5be8-dadb-484b-ab39-0f1eb57aeae5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9647428f-0946-4a09-aec1-7bdfcd324ac6", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "21271525-76f4-4134-9c93-1be012a574c8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d023e3a7-33ef-45b4-a19b-5137afecbf1f", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2c18aff1-b535-47b6-8415-8841e85eac49", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "335204e2-6b6e-4ea8-ae72-f3341ea75777", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2e725ba6-0e29-4ffb-a5c7-31b67344c211", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "98366b12-b70a-4e66-b71d-a5bbd39bd595", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b27b42bf-e20e-46ec-a6e3-5c2e8a076c20", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ef32ed9b-228d-4f73-9106-e7e3ce81c6ed", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c68e0c5f-3f82-4989-b1d0-e09cf545d62f", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b3035ace-15d4-44ca-9d79-c83a57dc0e30", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "84222bcb-05ac-4c67-82df-cc8742a850d1", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "07d8fab1-366d-43c5-bdb4-223f8c1229f5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bb90e801-0066-4bdf-85e6-8d64bc683f0c", - "ruleType" : "atleastOneOf" - },{ - "childResultDefinitionId" : "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", - "ruleType" : "atleastOneOf" - }] - }, { - "id" : "3f4f9b75-418f-46ed-a311-230a6dbca6cb", - "label" : "Credit for time remanded on bail", - "shortCode" : "CREDIT", - "level" : "D", - "rank" : 6000, - "wordGroups" : [ { - "wordGroup" : [ "Credit", "remand", "bail" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Credit for time", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "46bf6aa2-23f3-4c78-8c52-49b567d1193b", - "label" : "Warrants of arrest", - "shortCode" : "WAROA", - "level" : "O", - "rank" : 36200, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "c98cb51f-8639-49c1-91f0-a7e820c34355", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b4f7c223-b9d1-4409-b6d3-039f66eb9645", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "671df737-9901-4fa5-b245-aeff0c4c7495", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c8c962df-e28c-4ea8-8496-721badb77b7b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "73242763-44db-4d57-a855-44a6cf4f6226", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9b35f4f5-531e-48b4-858d-d81e15e77c23", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "31b29c58-cfd2-41c6-addf-53f5a2c99fdc", - "label" : "Confiscation", - "shortCode" : "CON", - "level" : "O", - "rank" : 38300, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "76b02133-4927-4f21-9f79-1ce361a17b0f", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "733545c5-5612-40b8-bd81-df1a6a154182", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "159c3430-fda4-4aea-8adc-62e4b6f07797", - "label" : "Rehabilitation requirement", - "shortCode" : "REHR", - "level" : "O", - "rank" : 42500, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "574fb809-4473-4a90-ba0f-519a50cfc9ec", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "55a1cab9-8aa6-41f6-a116-0345198324e6", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "dc37e9dd-b8b2-4c99-8bc2-b756a8bdffc0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c5e204ce-9a2d-4911-96f7-e189565f429e", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "fa06d9ea-edc9-4e1e-9ff4-19587653ac12", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "191ec139-10b6-4b18-8a2c-1359425244c3", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "536adc8b-1f26-43f0-9659-4bf25e2b42db", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1819e6a0-b13d-47e0-9027-388819457256", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "27528205-a237-471b-a487-7943e9284c44", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d3313cb9-c75e-45e4-b833-8479ff80f9ac", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a50ab50d-a029-4476-8a8b-f4a7e577fdcc", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "fb9fedf8-2b60-496b-8147-168233e81be3", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "5ab456c8-d272-4082-87ed-cd1f44a0603a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "8f979084-dc3b-4e71-bceb-87e30a4fc381", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7a02b2e5-30a9-4c9d-b55f-0c47a1798f4a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "63f8c00a-2115-46a9-94ff-b30bbad0f287", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "30bd1b11-5336-486e-aae6-1285ab4c8d65", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d3a030ab-17f6-4f1f-911d-d5b9ef7acedb", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "edf5c7fd-ff29-49a7-a8b9-1d2e7cdb49b2", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "152d6ed2-1e9b-4208-a7e9-7258d397aaa7", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "3a8b97dd-7ac9-46e7-8b29-ea01168a3238", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "4e786114-e1c0-42bb-9c52-64edeffa3a3b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1e78e819-13fc-4e14-a263-c632e4e3c85e", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "03a1cbef-e54a-4a00-bcd5-44350f882ced", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a17f9787-ba56-43d4-be5f-6fc91d29646e", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b986b6ad-816c-44d6-bdf8-0df189732648", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a15102d7-a151-425a-a827-0e35bc159049", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "416684ab-755f-4958-ab83-2795a21d62a3", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d79c92bb-c301-491a-b4d2-cb86e473b5af", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "0f7eade6-3602-486c-8491-45e2bdee9960", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b8654020-f9ed-4707-8757-8db6efb323b9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "78d6e77c-fb17-46ae-a719-66eacd6281a9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "48646574-8bd7-49f7-9fa1-3aeb60f7c059", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "79deff01-d3b0-4453-b290-ea34c60ce3e9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2e9d9eae-53f3-45ab-9ab3-083bd9e566e8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ea2b5f73-b1fd-4a6a-9058-fd3102b3f8ec", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "0c5824cd-b6db-4c8f-a8c3-92e7e4cc0195", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Special measures", - "shortCode" : "DIRS", - "level" : "C", - "rank" : 50200, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "02c8aef6-601a-46e8-bbe5-d614e0da764a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "028f5bea-fe0c-4c1b-a650-e4e0a4259f01", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b172d954-5aca-447b-b19e-2c836053b0af", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "41a18cc7-3106-4e84-8f66-ad52fe6dee75", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ee74631f-c144-4a25-8a93-0253b98a7642", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "702b365f-dde6-4543-8fb5-1324c6a84ec4", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c20cca8f-6ef5-4dff-b8fa-d05a9b0a1a0d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "38fdaaae-2a4c-4e6b-abf4-a6cdd212c6a9", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "52218899-8f26-45cd-ae30-aeff5c189261", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "633d192a-cc90-484e-aa1d-318816b7d44a", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "67a91dc8-f4f9-4f80-b644-e219326045cc", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "92ccea16-370d-42cf-ae54-ed0951eaec95", - "label" : "Bad character", - "shortCode" : "BADC", - "level" : "C", - "rank" : 51400, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "d18e6f8d-e91d-4d2b-8585-5513cfd07d13", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "fe77f387-ee64-4cef-8e95-c0776b9799e7", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "e7e02d63-46c2-4603-8255-921427f410fe", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Send To Crown Court On Conditional Bail", - "shortCode" : "SendToCCOnCB", - "level" : "O", - "rank" : 53000, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2493a3a4-918a-4b83-b3c0-d221ff83d6fc", - "label" : "Is the defendant excused attendance?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "defendantExcusedAttendance", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "80be59c8-ffaa-4570-b40a-f3a085058208", - "label" : "Bail condition reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXLM", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "3740a41c-be28-40f3-8655-1b8cdf67a683", - "qual" : null, - "reference" : "bailConditionReason", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dec5104c-3342-4544-b287-31ea969e0f15", - "label" : "BASS provider", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bassProvider", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ff80fa80-5839-4995-8eac-130c518a9b6b", - "label" : "Additional reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalReasons", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4559", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "mandatory" - }, { - "childResultDefinitionId" : "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "ruleType" : "mandatory" - } ] - }, { - "id" : "0118c2ad-9f50-4b0c-8f56-dff14b46b669", - "label" : "Interim Anti-social behaviour injunction", - "shortCode" : "ABII", - "level" : "O", - "rank" : 49600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2f1308c6-4fbf-4158-809b-5f382a0dafae", - "label" : "Interim Anti-social behaviour injunction made on notice until further order of the court", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "904e7e42-5cf0-44e3-810f-1bc67d10027c", - "label" : "Power of arrest attached to the following provisions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "33408f3d-885c-43f4-a4a8-76e37906569f", - "label" : "Police force name (for power of arrest)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2da00d65-6cdc-4149-9d51-df6cb43d9729", - "label" : "Police force address (for power of arrest) line 1", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ceb435f2-3d72-4b5a-929a-ce976881ace7", - "label" : "Police force address (for power of arrest) line 2", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "aa72f5cb-221a-42ce-b1f3-81f110be0e12", - "label" : "Police force address (for power of arrest) line 3", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6516de6a-2998-4ae5-9833-ea37b408558f", - "label" : "Police force address (for power of arrest) line 4", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6dacab3d-a730-4020-aed3-15d442fbdff5", - "label" : "Police force address (for power of arrest) line 5", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4a13b230-a819-4955-87d8-fe1f1318abc1", - "label" : "Anti-social behaviour injunction requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "18266b45-aae2-43b5-8a0b-e647df78e61a", - "label" : "Anti-social behaviour injunction prohibitions", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3516", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1652f681-8b73-4b35-8982-d418e33e2dca", - "label" : "Anti-social behaviour injunction discharged", - "shortCode" : "ABID", - "level" : "O", - "rank" : 49700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "9e013766-dc6b-4b33-8691-871cd95bbbb2", - "label" : "Date anti-social behaviour injunction made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bacb7dc5-0a23-41c4-9e61-018aa99c7758", - "label" : "Name of court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1eefddf4-76eb-4fe8-89d7-2c517bd6da99", - "label" : "Name of youth on anti-social behaviour injunction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6b509d44-fb0e-463f-8b7f-675cb6903265", - "label" : "Parent's name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0be420e0-d53a-4f8e-9b6e-bf32399a8139", - "label" : "Parent's address line 1", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0059a0fb-4c1f-4404-a510-ee62103e0ac3", - "label" : "Parent's address line 2", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e58ccaaf-b086-454c-945c-0e49e1ff3ac2", - "label" : "Parent's address line 3", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "07ca67f2-f61d-43df-b5ba-195c7be45ed4", - "label" : "Parent's address line 4", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5a4bca21-33ab-4676-be4e-47a6345e66bb", - "label" : "Parent's address line 5", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0305f628-85c3-42d6-82b8-7145d7c6087b", - "label" : "Police force address (for removal of power of arrest) Line 1", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "dbae711b-d60f-404c-bdac-323bcc2715d8", - "label" : "Police force address (for removal of power of arrest) Line 2", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "88c1856d-a5d2-46d7-83db-3e6b9611e607", - "label" : "Police station name (for power of arrest removal)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "53060dea-a815-492b-b426-79269ebfaafd", - "label" : "Police force address (for removal of power of arrest) Line 3", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "699e217b-6eef-4536-8bbe-8865e7a6cb1f", - "label" : "Police force address (for removal of power of arrest) Line 4", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "360992fa-96f8-4087-9cfa-fc2d6e23c931", - "label" : "Police force address (for removal of power of arrest) Line 5", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3516", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5c27e390-2656-4117-8104-a41b15b2f01b", - "label" : "Anti-social behaviour injunction detention order", - "shortCode" : "ABIDO", - "level" : "O", - "rank" : 49800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "ec2d9337-782d-4c1a-be49-2c03b52c4788", - "label" : "Duration of detention in youth detention accomodation", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "701580e3-d5ea-4318-a8ad-0ecb00558215", - "label" : "Rreasons why no other power is available to the court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3516", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "311c8e5c-6f22-44a7-8c97-f72324cb05c4", - "label" : "Custody time limit", - "shortCode" : "CTL", - "level" : "O", - "rank" : 53100, - "userGroups" : [ ], - "prompts" : [ { - "id" : "5348fd0e-0670-4811-997f-1baa78b06d62", - "label" : "Custody time limit expires", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "CTLDATE", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4483c255-2761-4549-a70a-314aa311d052", - "label" : "Time spent in custody (in days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "CTLTIME", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "d35f14b6-1fef-42d3-b6d9-05e9e686af6d", - "label" : "Credit for time in custody in foreign jurisdiction", - "shortCode" : "CREDITF", - "level" : "D", - "rank" : 6100, - "wordGroups" : [ { - "wordGroup" : [ "Credit", "foreign", "custody" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Credit for time", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "66105417-41c8-420d-820f-40b61b507442", - "label" : "Risk or vulnerability factors", - "shortCode" : "vulnarability", - "level" : "D", - "rank" : 900, - "wordGroups" : [ { - "wordGroup" : [ "vulnarability", "risk,vulnerability,factors" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5b3a1f08-8008-4a1d-94b1-e0d4e1bd44df", - "label" : "Anti-social behaviour injunction detention order revoked ", - "shortCode" : "ABIDOR", - "level" : "O", - "rank" : 49900, - "userGroups" : [ ], - "prompts" : [ { - "id" : "31305c79-6634-4ed7-8ab1-40af1f34f74e", - "label" : "Date anti-social behaviour injunction detention order made", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "c108853c-bd16-4677-9352-af7a20395f72", - "label" : "Name of youth in detention", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bacb7dc5-0a23-41c4-9e61-018aa99c7758", - "label" : "Name of court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e76673b3-7ca8-4a32-898d-dfa2e6047f24", - "label" : "Date of birth of youth in detention", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6927b6ac-4c85-4532-838d-88ac00ea83f9", - "label" : "Conveyor / custodian name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3516", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4e170564-93b2-4d45-b653-90099acf8313", - "label" : "Engagement and support order", - "shortCode" : "ESO", - "level" : "O", - "rank" : 53200, - "userGroups" : [ ], - "prompts" : [ { - "id" : "7bc1e57b-4cae-4b3d-bd80-50a8d42b3b41", - "label" : "Date by which meetings must take place", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "00f2671f-f825-406c-ad80-75ff13e837f9", - "label" : "Name of supervisor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1e697e74-f38b-4388-a7b5-51d51180d2f2", - "label" : "The Local Justice Area the defendant lives in", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1144", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5e253119-9aab-4d0d-8288-bcdbf3695d86", - "label" : "Order", - "shortCode" : "ORD", - "level" : "O", - "rank" : 53300, - "userGroups" : [ ], - "prompts" : [ { - "id" : "3da00e9f-7638-4f7d-9c98-275e74ac1e0e", - "label" : "Order details", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", - "label" : "Defendant to notify names and home address", - "shortCode" : "DNNH", - "level" : "O", - "rank" : 800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "ab67bee4-c673-4575-8bf9-d61385a93991", - "label" : "Defendant to notify all names and home address within 3 days to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 10, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f3780cf0-2c88-4e91-b494-7b2e82196f30", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 110, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f9d5418b-eb45-4614-bfb6-0e64d6a8e032", - "label" : "Defendant to notify names and home address to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "65f58042-5608-4d48-9aa9-3ba5ea38775e", - "label" : "Method of notification", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ee8a9064-e558-47db-8b18-6818b1c120bf", - "label" : "Slavery and trafficking prevention order", - "shortCode" : "STPO", - "level" : "O", - "rank" : 19600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2941bb34-b678-47b3-b897-b5b8d09a2617", - "label" : "Duration of order", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "11f6a6ca-985b-4aa9-a6f2-de4214fcbe0f", - "label" : "This order lasts until further order", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "56190eb2-0035-44cc-b904-b131f299835c", - "label" : "Prohibitions contained in the order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3285", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "7b7a5060-e3e5-4cbb-b70b-20d341b91fc1", - "ruleType" : "optional" - }, { - "childResultDefinitionId" : "4b5a2d33-5121-4d09-a8f1-49c7beb2994c", - "ruleType" : "optional" - }, { - "childResultDefinitionId" : "e98f6f7d-5b4f-4572-a2ad-4a170c8c3e41", - "ruleType" : "optional" - } ] - }, { - "id" : "fcb26a5f-28cc-483e-b430-d823fac808df", - "label" : "Excise penalty", - "shortCode" : "excise, penalty", - "level" : "O", - "rank" : 53400, - "wordGroups" : [ { - "wordGroup" : [ "excise, penalty" ] - }, { - "wordGroup" : [ ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "b3dfed9a-efba-4126-a08d-cf37d18b4563", - "label" : "Amount of excise penalty", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOF", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1119", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "68720a39-3bf6-4678-9d6b-40386da7d53a", - "label" : "Warrant for arrest for breach of community penalty with bail (dated)", - "shortCode" : "WCPD", - "level" : "O", - "rank" : 53500, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fa31208-5fed-4f52-a63e-c3a83cc733fa", - "label" : "Reason for arrest is a failure to comply with the", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "24b40430-a75e-44ba-b367-bae3139b4d19", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9405e797-240e-4e71-ab35-43e90e3a8a5b", - "label" : "Reason for the decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", - "label" : "Warrant execution allocated to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "507c4249-d897-43bb-b64d-5c156ef6ba85", - "label" : "Bail to be allowed on these conditions", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4575", - "adjournment" : true, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType" : "mandatory" - } ] - }, { - "id" : "ed34136f-2a13-45a4-8d4f-27075ae3a8a9", - "label" : "Warrant for arrest for breach of community penalty without bail", - "shortCode" : "WCPN", - "level" : "O", - "rank" : 53600, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fa31208-5fed-4f52-a63e-c3a83cc733fa", - "label" : "Reason for arrest is a failure to comply with the", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "24b40430-a75e-44ba-b367-bae3139b4d19", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9405e797-240e-4e71-ab35-43e90e3a8a5b", - "label" : "Reason for the decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", - "label" : "Warrant execution allocated to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4576", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "664d0c0d-115b-4d54-b137-301c9ed74ef9", - "label" : "Recommended for deportation when released", - "shortCode" : "RDEPD", - "level" : "D", - "rank" : 6200, - "wordGroups" : [ { - "wordGroup" : [ "deportation", "release" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "16bb9f17-d3c3-42f1-a4dc-2d953114a214", - "label" : "Nationality", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2cbae4d2-e4d0-4451-be7c-713c2a1a8974", - "label" : "Residence and reporting restrictions etc", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3006", - "adjournment" : false, - "convicted" : false, - "qualifier" : "CN", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0d1b161b-d6b0-4b1b-ae08-535864e4f631", - "label" : "Warrant for arrest for community penalty breach with bail (undated)", - "shortCode" : "WCPU", - "level" : "O", - "rank" : 53700, - "userGroups" : [ ], - "prompts" : [ { - "id" : "2fa31208-5fed-4f52-a63e-c3a83cc733fa", - "label" : "Reason for arrest is a failure to comply with the", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "24b40430-a75e-44ba-b367-bae3139b4d19", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "9405e797-240e-4e71-ab35-43e90e3a8a5b", - "label" : "Reason for the decision", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a996e41c-3c5d-40cc-9bb0-8af2694dc06b", - "label" : "Warrant execution allocated to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "I", - "cjsCode" : "4577", - "adjournment" : true, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : true, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "491e30e9-2508-4e3a-9291-dfaf16d975ab", - "label" : "Sent to Crown Court for trial", - "shortCode" : "SCC", - "level" : "O", - "rank" : 53800, - "userGroups" : [ ], - "prompts" : [ { - "id" : "4362a1a4-aa80-4a68-ae61-f57962709f3d", - "label" : "Sent for trial under", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : "999ecc93-0fd8-47d8-8b2d-9286c0c5d491", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f83671fb-7f2f-4b38-b6f3-71db90768485", - "label" : "Indicated plea", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : "84d620c3-35ca-49ae-879d-95efaaf670af", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d7d2c7b1-f27a-44ed-a227-ea9b917f0229", - "label" : "No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "654fce8c-238a-468a-92db-f7509394cf08", - "label" : "A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "DATE", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5dfec956-547d-4e2b-b1f6-743376511589", - "label" : "Trial issues identified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "49365935-e535-42db-bc41-a18c8fee5258", - "label" : "Directions made", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8", - "label" : "No indication given re victim personal statement", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6", - "label" : "Victim wishes to read victim personal statement to court", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "583ea6cb-4251-406e-b07a-445fb0dde914", - "label" : "Victim personal statement to be presented to court by prosecutor or other person", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e2b9a67c-cbd8-4479-89ff-57b2b6632835", - "label" : "Additional details re victim personal statement", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7e657be6-9e6f-410d-ba6a-74cfedb1b3f9", - "label" : "Probation / Youth Offending Team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "05496e53-66f5-47a0-9fff-f31cbd5191a0", - "label" : "Was a PSR ordered?", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "BOOLEAN", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : null, - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ca16bc9f-9d62-4dd3-b8af-a77004ff8002", - "label" : "Recommended for deportation when detained", - "shortCode" : "RDEPN", - "level" : "D", - "rank" : 6300, - "wordGroups" : [ { - "wordGroup" : [ "deportation", "detained" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "16bb9f17-d3c3-42f1-a4dc-2d953114a214", - "label" : "Nationality", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "8c144a05-5804-4478-a419-12bab06748cc", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3006", - "adjournment" : false, - "convicted" : false, - "qualifier" : "CQ", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "e866cd11-6073-4fdf-a229-51c9d694e1d0", - "label" : "Surcharge", - "shortCode" : "FVS", - "level" : "D", - "rank" : 6400, - "wordGroups" : [ { - "wordGroup" : [ "FVS" ] - }, { - "wordGroup" : [ "victim", "surcharge" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "629a971e-9d7a-4526-838d-0a4cb922b5cb", - "label" : "Amount of surcharge", - "welshLabel" : "Swm y gordal", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOS", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Gordal", - "isAvailableForCourtExtract" : true, - "financial" : true, - "category" : "A", - "cjsCode" : "3117", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "5eb79085-3035-4a00-a549-6dd24abafe8c", - "label" : "No action taken on breach", - "shortCode" : "NOACT", - "level" : "O", - "rank" : 6500, - "wordGroups" : [ { - "wordGroup" : [ "action", "breach" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "d144ad72-f68a-4b16-a145-ab3c95599dcc", - "label" : "Imposing court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "13cd9c54-228b-4dd0-966b-93f4e9bf3a0b", - "label" : "Date of original imposition", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e93c375f-bf25-4b76-ad7e-673a219d4f88", - "label" : "Reason", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1087", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - },{ - "id": "969f150c-cd05-46b0-9dd9-30891efcc766", - "version": "2021-02-25T12:38:32.964Z", - "startDate": "2021-02-26", - "label": "Fine", - "shortCode": "FO", - "level": "O", - "rank": 22300, - "canExtendActiveOrder": true, - "wordGroups": [ - { - "wordGroup": [ - "FO", - "fine" - ] - } - ], - "prompts": [ - { - "id": "7cd1472f-2379-4f5b-9e67-98a43d86e122", - "label": "Amount of fine", - "welshLabel": "Swm y ddirwy", - "resultPromptRule": "mandatory", - "type": "CURR", - "sequence": 100, - "financial": "Y", - "reference": "AOF", - "wordGroup": [ - "Amount" - ], - "userGroups": [ - - ], - "min": "0", - "max": "999999999", - "wording": "", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false, - "activeOrderExtended": true, - "activeOrderNotExtended": false - } - ], - "welshLabel": "Dirwy", - "financial": "Y", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "Y", - "d20": false, - "resultDefinitionGroup": "Imposition", - "cjsCode": "1015", + "resultDefinitionGroup": "Community Requirements, ABC", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, @@ -42752,8217 +65319,442 @@ "excludedFromResults": false, "alwaysPublished": false, "jurisdiction": "B", - "libraCode": "FO", - "lCode": "FINE", "resultDefinitionRules": [ { - "childResultDefinitionId": "9ea0d845-5096-44f6-9ce0-8ae801141eac", - "ruleType": "optional" + "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", + "ruleType": "atleastOneOf" }, { - "childResultDefinitionId": "615313b5-0647-4d61-b7b8-6b36265d8929", - "ruleType": "optional" + "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", + "ruleType": "atleastOneOf" }, { - "childResultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", - "ruleType": "oneOf" + "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", + "ruleType": "atleastOneOf" }, { - "childResultDefinitionId": "bdb32555-8d55-4dc1-b4b6-580db5132496", - "ruleType": "oneOf" + "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", + "ruleType": "atleastOneOf" }, { - "childResultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", - "ruleType": "oneOf" + "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "ruleType": "atleastOneOf" }, { - "childResultDefinitionId": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", - "ruleType": "optional" - } - ], - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, { - "id" : "f5d492b8-a09b-4f70-9ceb-aa06c306a7dc", - "rollUpPrompts": false, - "publishedForNows": true, - "label" : "Costs to Crown Prosecution Service", - "shortCode" : "FCPC", - "level" : "C", - "rank" : 6700, - "wordGroups" : [ { - "wordGroup" : [ "Costs", "CPS" ] - }, { - "wordGroup" : [ "FCPC" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f63b0bb5-7d93-4dab-bc3d-b4bd27152871", - "label" : "Amount of costs", - "welshLabel" : "Swm y costau", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOC", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Costau i Wasanaeth Erlyn y Goron", - "isAvailableForCourtExtract" : true, - "financial" : true, - "category" : "F", - "cjsCode" : "3011", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ae89b99c-e0e3-47b5-b218-24d4fca3ca53", - "label" : "Compensation", - "shortCode" : "FCOMP", - "level" : "O", - "rank" : 6800, - "wordGroups" : [ { - "wordGroup" : [ "FCOMP" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "26985e5b-fe1f-4d7d-a21a-57207c5966e7", - "label" : "Amount of compensation", - "welshLabel" : "Swm yr iawndal", - "resultPromptRule" : "mandatory", - "type" : "CURR", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "AOCOM", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "af921cf4-06e7-4f6b-a4ea-dcb58aab0dbe", - "label" : "Major creditor name", - "welshLabel" : "Enw’r Prif Gredydwr", - "resultPromptRule" : "oneOf", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "6e5f1afe-e35f-11e8-9f32-f2801f1b9fd1", - "qual" : null, - "reference" : "CREDNAME", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "f6f953b6-e369-11e8-9f32-f2801f1b9fd1", - "label" : "Minor creditor company name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "043faecf-e97c-4daf-9763-4b755d941b45", - "label" : "Minor creditor title", - "welshLabel" : null, - "resultPromptRule" : "oneOf", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "202afd61-e9fb-4bc7-aad6-f0a5799406e2", - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "cc1c2471-c4fd-44a2-886a-ec4d41aa1bdd", - "label" : "Minor creditor surname", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "2d1dab36-82ae-4a4c-9566-cc61a14dc1f5", - "label" : "Minor creditor initials", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "41576571-5573-498b-a9e9-eee24f7a67fa", - "label" : "Minor creditor forename(s)", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "48edfdeb-6bd8-46be-bf9e-dda4c48051c4", - "label" : "Minor creditor address", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "0ba8d27d-ce53-4e6b-b28d-59bf0a667a46", - "label" : "Minor creditor postcode", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "N", - "durationSequence" : null - } ], - "welshLabel" : "Iawndal", - "isAvailableForCourtExtract" : true, - "financial" : true, - "category" : "F", - "cjsCode" : "3012", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "label" : "Community requirement: Electronic monitoring whereabouts", - "shortCode" : "EMW", - "level" : "O", - "rank" : 1400, - "wordGroups" : [ { - "wordGroup" : [ "Electronic", "Monitoring", "Whereabouts", "first", "GPS" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f18d4d90-954d-4b27-9e70-f4be9c487b0e", - "label" : "Start time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd6186a4-d928-47f1-abee-2466b9b80ebf", - "label" : "End time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3148", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ae617390-b41e-46ac-bd63-68a28512676a", - "label" : "Community order Scotland", - "shortCode" : "COS", - "level" : "O", - "rank" : 6900, - "wordGroups" : [ { - "wordGroup" : [ "Community", "Order", "scotland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad4f684d-0a83-4ee1-b04f-7864487eb41c", - "label" : "Appropriate Scottish Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5cf339ba-1dd4-4476-99a5-281c833dd134", - "label" : "Locality in Scotland", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "93861000-c4dd-449c-a876-83381beb9719", - "label" : "Corresponding Scottish Order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1280d70e-ea43-42d3-8e96-ce72b8933876", - "label" : "Persistent offender previously fined", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1116", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "9bec5977-1796-4645-9b9e-687d4f23d37d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "cc2cbb94-b75a-4a8c-9840-31c5f8007724", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "61ea03c9-c113-446b-a392-402144fcd9e8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bcf1b451-af1e-4603-9605-586310d0e61e", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a5aa694e-4729-40f5-814e-60a75d9429e0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "65a59f46-61ae-4dac-a040-a25fca647cb2", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1c40353b-a3b8-4437-8691-6b54d5842010", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c1b0dedf-1380-4889-9d31-1816b850e348", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a19714a0-5d58-4666-bc15-3d9dd2692f77", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "364d3065-0699-4df1-a68f-a69c429d0867", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "99586f43-5b18-45da-87f7-1764ad149985", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d683f73c-488e-4d8e-a685-d37049c2a3e5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "091cd45b-4312-476e-a122-18cc02fd1699", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "66aac609-8987-44cf-a0dc-fb49a7195090", - "label" : "Community order Northern Ireland", - "shortCode" : "CONI", - "level" : "O", - "rank" : 7000, - "wordGroups" : [ { - "wordGroup" : [ "Community", "Order", "ireland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 800, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1aa88c91-c4fa-404b-92d9-185157b8b0d4", - "label" : "End Date", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", - "label" : "Petty Sessions District", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b76491aa-02fe-4c14-80d7-4401cc1105e1", - "label" : "Corresponding Northern Ireland Order", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : "responsibleOfficer", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "1280d70e-ea43-42d3-8e96-ce72b8933876", - "label" : "Persistent offender previously fined", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1116", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "9bec5977-1796-4645-9b9e-687d4f23d37d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "cc2cbb94-b75a-4a8c-9840-31c5f8007724", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "61ea03c9-c113-446b-a392-402144fcd9e8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "bcf1b451-af1e-4603-9605-586310d0e61e", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a5aa694e-4729-40f5-814e-60a75d9429e0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "65a59f46-61ae-4dac-a040-a25fca647cb2", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "1c40353b-a3b8-4437-8691-6b54d5842010", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "c1b0dedf-1380-4889-9d31-1816b850e348", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "a19714a0-5d58-4666-bc15-3d9dd2692f77", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "364d3065-0699-4df1-a68f-a69c429d0867", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "99586f43-5b18-45da-87f7-1764ad149985", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "d683f73c-488e-4d8e-a685-d37049c2a3e5", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "091cd45b-4312-476e-a122-18cc02fd1699", - "ruleType" : "atleastOneOf" - }, { - "childResultDefinitionId" : "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "ruleType" : "atleastOneOf" - } ] - }, { - "id" : "23f2178b-0083-4bd1-a830-d9c7291f02bd", - "label" : "Suspended sentence order Scotland - imprisonment", - "shortCode" : "SUSPSS", - "level" : "O", - "rank" : 7100, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "imprisonment", "scotland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0f3114e6-b7b2-4281-8b96-168cbbcd064b", - "label" : "Imprisonment reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad4f684d-0a83-4ee1-b04f-7864487eb41c", - "label" : "Appropriate Scottish Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5cf339ba-1dd4-4476-99a5-281c833dd134", - "label" : "Locality in Scotland", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1115", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType" : "mandatory" - } ] - }, { - "id" : "8fac72a9-3193-47ec-9010-e73158813cfd", - "label" : "Suspended sentence order Northern Ireland - imprisonment", - "shortCode" : "SUSPSNI", - "level" : "O", - "rank" : 7200, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "imprisonment", "ireland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "0f3114e6-b7b2-4281-8b96-168cbbcd064b", - "label" : "Imprisonment reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", - "label" : "Petty Sessions District", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1115", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType" : "mandatory" - } ] - }, { - "id" : "9161f3cb-e821-44e5-a9ee-4680b358a037", - "label" : "Guilty plea taken into account", - "shortCode" : "GPTAC", - "level" : "O", - "rank" : 7300, - "wordGroups" : [ { - "wordGroup" : [ "Guility", "plea", "account" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1f413a5a-f385-4264-9e23-1fdc80455091", - "label" : "Comment on discount / reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "554c2622-c1cc-459e-a98d-b7f317ab065c", - "label" : "Conditional discharge", - "shortCode" : "CD", - "level" : "O", - "rank" : 7400, - "wordGroups" : [ { - "wordGroup" : [ "conditional", "discharge" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label" : "Period of conditional discharge", - "welshLabel" : "Cyfnod o ryddhad amodol", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label" : "Period of conditional discharge", - "welshLabel" : "Cyfnod o ryddhad amodol", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label" : "Period of conditional discharge", - "welshLabel" : "Cyfnod o ryddhad amodol", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "d3205319-84cf-4c5b-9d7a-7e4bb1865054", - "label" : "Period of conditional discharge", - "welshLabel" : "Cyfnod o ryddhad amodol", - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - } ], - "welshLabel" : "Ryddhad Amodol", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1018", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b9c6047b-fb84-4b12-97a1-2175e4b8bbac", - "label" : "Absolute discharge", - "shortCode" : "AD", - "level" : "O", - "rank" : 7500, - "wordGroups" : [ { - "wordGroup" : [ "absolute", "discharge" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rhyddhad diamod", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1017", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "32177be4-0a1f-4889-9ca2-c729f49d7d85", - "label" : "Forfeiture order (other than vehicle)", - "shortCode" : "forfov", - "level" : "O", - "rank" : 7800, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "destruction", "vehicle" ] - }, { - "wordGroup" : [ "forfov" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8c5aa7f9-326e-4525-803a-63eedc16e4e2", - "label" : "Property to be forfeited", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "98a562ee-7583-405a-ab05-3f922ada4872", - "label" : "Type of forfeiture", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "26d4c112-a7ae-11e8-98d0-529269fb1459", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d5cfcf4-abb5-4449-b9ba-844353fc6035", - "label" : "Destruction / dispose of / deal with / sell", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ba14f9b0-9912-4529-ae63-46eda7708500", - "label" : "Method of disposal etc", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "564e9cd7-5a71-4b8d-b404-211afe28f0ed", - "label" : "Specify who is to destroy etc", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3054", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "290435b9-cce7-43be-b340-1c7db48c5413", - "label" : "Forfeiture order (Vehicle - Section 33C of the Environmental Protection Act 1990)", - "shortCode" : "FORVEPO", - "level" : "O", - "rank" : 7900, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "vehicle" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e0aab342-1b85-4942-8efb-232ef97d81d1", - "label" : "Defendant to be deprived of vehicle described as", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b729ae65-ca66-466f-a858-bb33581cd580", - "label" : "Name of enforcement authority", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3138", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "0a68824c-e5bb-43d0-b3c1-ae8aee0bfec8", - "label" : "Order for deprivation of the defendant's rights (other than vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", - "shortCode" : "DEPO", - "level" : "O", - "rank" : 8000, - "wordGroups" : [ { - "wordGroup" : [ "deprivation", "not", "vehicle" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "3cfbca15-fd95-4a23-9f57-f60d62f22936", - "label" : "Defendant to be deprived of this property", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3055", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "rollUpPrompts": true, - "publishedForNows": false, - "label" : "Community requirement: Curfew with electronic monitoring", - "shortCode" : "CURE", - "level" : "O", - "rank" : 1600, - "wordGroups" : [ { - "wordGroup" : [ "Electronic", "Monitoring", "Curfew", "first" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "816fbec4-6091-4aba-84cd-e348cc2bf36f", - "label" : "Curfew and electronic monitoring period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAndElectricalMonitoringPeriod", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f18d4d90-954d-4b27-9e70-f4be9c487b0e", - "label" : "Start time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd6186a4-d928-47f1-abee-2466b9b80ebf", - "label" : "End time", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endTime", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label" : "Contractor", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "qual" : null, - "reference" : "contractor", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "qualifier" : "BA", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "b914e5b8-b84c-4ffd-8d20-634d8ad6ef00", - "label" : "Order for deprivation of rights (vehicle) - Section 143 of the Powers of Criminal Courts (Sentencing) Act 2000", - "shortCode" : "DEPV", - "level" : "O", - "rank" : 8100, - "wordGroups" : [ { - "wordGroup" : [ "deprivation", "vehicle" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e0aab342-1b85-4942-8efb-232ef97d81d1", - "label" : "Defendant to be deprived of vehicle described as", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "3055", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "285f5fb8-6c90-45ba-a7ce-4be76867f3e9", - "label" : "Forfeiture order (land vehicle - Modern Slavery Act 2015)", - "shortCode" : "FORFMS", - "level" : "O", - "rank" : 8200, - "wordGroups" : [ { - "wordGroup" : [ "forfeiture", "slavery" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "e0aab342-1b85-4942-8efb-232ef97d81d1", - "label" : "Defendant to be deprived of vehicle described as", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3138", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Forfeiture and deprivation", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "cfbe83c8-935b-4410-a68c-49452519f2d3", - "label" : "Mandatory life imprisonment", - "shortCode" : "MLI", - "level" : "O", - "rank" : 8300, - "wordGroups" : [ { - "wordGroup" : [ "mandatory", "Life", "imprisonment" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label" : "Early release provisions apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Early", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label" : "Early release provisions do not apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Early", "not", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "96349367-2d04-4265-978f-6c6b417497fd", - "label" : "Mandatory custody for life", - "shortCode" : "MCL", - "level" : "O", - "rank" : 8400, - "wordGroups" : [ { - "wordGroup" : [ "Mandotory", "custody", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label" : "Early release provisions apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Early", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label" : "Early release provisions do not apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Early", "not", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AB", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "3f608dba-20ad-4710-bebc-d78b4b3ff08d", - "label" : "Custody for life", - "shortCode" : "CFL", - "level" : "O", - "rank" : 8500, - "wordGroups" : [ { - "wordGroup" : [ "custody", "Life" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "10ec0c03-a0a9-41fc-9314-1cec010e12cf", - "label" : "Early release provisions apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Early", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ddaa31d2-352a-47ca-95c4-6588faabf099", - "label" : "Early release provisions do not apply", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Early", "not", "release" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "d65f3285-f5f0-4ab1-b703-0c95f0f6ed89", - "label" : "Life imprisonment for second listed offence", - "shortCode" : "LIMP2", - "level" : "O", - "rank" : 8600, - "wordGroups" : [ { - "wordGroup" : [ "Life", "imprisonment", "second" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AC", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "d844cdd8-c110-4bb8-b8f2-1a8bd5fdc0c7", - "label" : "Custody for life for second listed offence", - "shortCode" : "LIMPS2O", - "level" : "O", - "rank" : 8700, - "wordGroups" : [ { - "wordGroup" : [ "Life", "custody", "second" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AC", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : true, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "cf70d7ed-8049-4fe2-b02f-5a23b5e39184", - "label" : "Life imprisonment for serious offence (S.225)", - "shortCode" : "LIMPSO", - "level" : "O", - "rank" : 8800, - "wordGroups" : [ { - "wordGroup" : [ "Life", "imprisonment", "serious" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "6e42d694-a785-4cbf-a4a8-09f2d1802d4d", - "label" : "Custody for life for serious offence  (S.255)", - "shortCode" : "CFLS", - "level" : "O", - "rank" : 8900, - "wordGroups" : [ { - "wordGroup" : [ "Life", "custody", "serious" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "4f640ea6-88d4-4a3a-b816-ff5a79eaaa14", - "label" : "Special custodial sentence of imprisonment for offender of particular concern", - "shortCode" : "SPECC", - "level" : "O", - "rank" : 9000, - "wordGroups" : [ { - "wordGroup" : [ "special", "custody", "concern" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label" : "Term of sentence of imprisonment (aggregate)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label" : "Term of sentence of imprisonment (aggregate)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label" : "Term of sentence of imprisonment (aggregate)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cffd5c52-b7d2-445b-b413-d63495c62c19", - "label" : "Term of sentence of imprisonment (aggregate)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "label" : "Community requirement: Curfew", - "shortCode" : "CUR", - "level" : "O", - "rank" : 1500, - "wordGroups" : [ { - "wordGroup" : [ "Curfew", "Requirement" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "82ee7d2f-99b1-476d-8938-2c824549c365", - "label" : "Curfew period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "a920be42-b376-420b-ace9-d2d0634559b0", - "label" : "Extended sentence of imprisonment for violent or sexual offence (21 and over)(S.226A)", - "shortCode" : "EXTIVS", - "level" : "O", - "rank" : 9100, - "wordGroups" : [ { - "wordGroup" : [ "extended", "imprisonment", "violent", "sexual", "over", "21" ] - }, { - "wordGroup" : [ "extended", "imprisonment" ] - }, { - "wordGroup" : [ "EXTIVS" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label" : "Extended sentence of imprisonment term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label" : "Extended sentence of imprisonment term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label" : "Extended sentence of imprisonment term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "513ce853-be02-4f57-92d2-a4ad37c9a0ee", - "label" : "Extended sentence of imprisonment term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", - "label" : "Reason for significant risk to public of serious harm", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AF", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "optional" - } ] - }, { - "id" : "752aab8f-ba5f-45a8-80c8-4df7770e70e4", - "label" : "Extended sentence of detention for violent or sexual offence (18-20)(S.226A)", - "shortCode" : "EXTDVS", - "level" : "O", - "rank" : 9200, - "wordGroups" : [ { - "wordGroup" : [ "extended", "detention", "violent", "sexual", "over", "18" ] - }, { - "wordGroup" : [ "detained", "extended", "over" ] - }, { - "wordGroup" : [ "EXTDVS" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", - "label" : "Reason for significant risk to public of serious harm", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AF", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "1dd2e245-a9af-4d04-84b6-92f64dc312fe", - "label" : "Extended sentence of detention for violent or sexual offence (under 18)(S.226B)", - "shortCode" : "EXTDVSU", - "level" : "O", - "rank" : 9300, - "wordGroups" : [ { - "wordGroup" : [ "detained", "extended", "under" ] - }, { - "wordGroup" : [ "extended", "detention", "violent", "sexual", "under", "18" ] - }, { - "wordGroup" : [ "EXTDVSU" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4ef3a22-f42c-4ecf-a06a-dfddb5a38e0c", - "label" : "Extended sentence of detention term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b3fda42d-f0d0-4c0e-811e-cfe283a400f1", - "label" : "Appropriate custodial term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "fd0188b2-abb7-4559-8193-28fd3ad488dc", - "label" : "Extension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 400, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 500, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3f20a4dd-b2a7-4f2c-8709-f5439a80093c", - "label" : "Reason for significant risk to public of serious harm", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1007", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AF", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "892de3ce-1e80-454e-8c72-44e694b06e93", - "label" : "Detained at Her Majesty's pleasure (under 18)(S.90)", - "shortCode" : "DETMP", - "level" : "O", - "rank" : 9400, - "wordGroups" : [ { - "wordGroup" : [ "detained", "pleasure", "under", "18" ] - }, { - "wordGroup" : [ "detained", "majesty" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8f2984fe-9270-4175-9f2e-79d1ec7d3a38", - "label" : "Minimum term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1003", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "optional" - } ] - }, { - "id" : "70fe7114-b511-4d9b-a550-2c040b9a8d34", - "label" : "Detained for specified period for serious offence (under 18)(S.91)", - "shortCode" : "DETSO", - "level" : "O", - "rank" : 9500, - "wordGroups" : [ { - "wordGroup" : [ "detained", "Period", "serious", "under", "18" ] - }, { - "wordGroup" : [ "detained", "Period" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ab6cc1f6-011b-4744-accc-bba181614188", - "label" : "Detention Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "746c833a-7d33-4800-a40c-425dbacf7492", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : "concurrent", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "7784b81d-44d2-43c0-a903-a53b0e73683b", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : "consecutiveToOffenceNumber", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "da9c91a6-7090-44f3-8644-b4b184533fc4", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "8115982c-af5c-4439-b6ff-c9c6303a6292", - "label" : "Detention reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1007", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "7f410e16-bda3-4bca-944e-ef88832e41b5", - "label" : "Minimum sentence of detention in young offender institution for drug trafficking", - "shortCode" : "MINDDT", - "level" : "O", - "rank" : 9600, - "wordGroups" : [ { - "wordGroup" : [ "minimum", "detention", "yoi", "Drug" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label" : "Custody period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label" : "Custody period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label" : "Custody period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "172e3ce2-1d22-499c-bb0a-bda480bca008", - "label" : "Custody period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AD", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "1bcdae76-37f8-4331-9076-fd46dbd4b1fc", - "label" : "Minimum sentence of detention in young offender institution for domestic burglary", - "shortCode" : "MINDDB", - "level" : "O", - "rank" : 9700, - "wordGroups" : [ { - "wordGroup" : [ "minimum", "detention", "yoi", "domestic" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label" : "Custody Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label" : "Custody Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label" : "Custody Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "52d72ef6-ed79-40db-a1a8-833258e34b13", - "label" : "Custody Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1024", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AE", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "47f143eb-7961-4e85-834b-1aa5e47cb3ef", - "label" : "Minimum sentence of Imprisonment for drug trafficking", - "shortCode" : "MINIDT", - "level" : "O", - "rank" : 9800, - "wordGroups" : [ { - "wordGroup" : [ "Miniumum", "imprisonment", "Drug" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AD", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "97fdae65-37a0-4156-912f-a35363e26f31", - "label" : "Minimum sentence of Imprisonment for domestic burglary", - "shortCode" : "MINIDB", - "level" : "O", - "rank" : 9900, - "wordGroups" : [ { - "wordGroup" : [ "minimum", "imprisonment", "domestic" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad0b3c56-2fcb-497e-88e9-949c8c1931f2", - "label" : "Imprisonment Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label" : "Bail remand days to count (tagged days)", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "bailRemandDaysToCount", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "cc398d5e-6a52-416d-8081-af8a5adf24f9", - "label" : "Number of days in custody in foreign jurisdiction to count", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "numberOfDaysInCustodyInForeignJurisdiction", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1002", - "adjournment" : false, - "convicted" : true, - "qualifier" : "AE", - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "6cb15971-c945-4398-b7c9-3f8b743a4de3", - "ruleType" : "mandatory" - } ] - }, { - "id" : "5679e5b7-0ca8-4d2a-ba80-7a50025fb589", - "label" : "Suspended sentence order - detention in a young offender institution", - "shortCode" : "SUSPSD", - "level" : "O", - "rank" : 10000, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "detention", "yoi" ] - }, { - "wordGroup" : [ "suspended", "detention" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label" : "Custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label" : "Custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label" : "Custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "1debb9fe-f695-4fed-b60b-834ea3171c99", - "label" : "Custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "31e2a7a7-03fc-472b-97ad-67d5aae41a70", - "label" : "Custody reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label" : "Responsible officer", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "FIXL", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "da9ab30d-d263-4123-9bde-e3078d547a8e", - "qual" : null, - "reference" : "responsibleOfficer", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label" : "Supervising Court name", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "supervisingCourtName", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1134", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType" : "mandatory" - } ] - }, { - "id" : "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "label" : "Community requirement: Curfew with second address", - "shortCode" : "CURA", - "level" : "O", - "rank" : 1700, - "wordGroups" : [ { - "wordGroup" : [ "Curfew", "Additional" ] - }, { - "wordGroup" : [ "Curfew", "second" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "206a8658-96da-42cb-80a7-ae1c0e440e11", - "label" : "Start date", - "welshLabel" : "Dyddiad cychwyn", - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "startDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3b0c95d5-9595-4ddd-88b8-1a2e3e70d01f", - "label" : "This order lasts until", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "endDate", - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "51f96065-e622-4f72-b7dc-0c11c17d1983", - "label" : "Curfew address, details and timings", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "curfewAddressDetailAndTiming", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "06f0ddcd-30d5-49ac-9500-3d66daeeda9b", - "label" : "Suspended sentence order Scotland - detention in a young offender institution", - "shortCode" : "SUSPSDS", - "level" : "O", - "rank" : 10100, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "detention", "yoi", "scotland" ] - }, { - "wordGroup" : [ "suspended", "detention", "scotland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "31e2a7a7-03fc-472b-97ad-67d5aae41a70", - "label" : "Custody reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ad4f684d-0a83-4ee1-b04f-7864487eb41c", - "label" : "Appropriate Scottish Court", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5cf339ba-1dd4-4476-99a5-281c833dd134", - "label" : "Locality in Scotland", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1134", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType" : "optional" - } ] - }, { - "id" : "a78b50cc-0777-403d-8e51-5458e1ee3513", - "label" : "Suspended sentence order Northern Ireland - detention in a young offender institution", - "shortCode" : "SUSPSDNI", - "level" : "O", - "rank" : 10200, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "detention", "yoi", "ireland" ] - }, { - "wordGroup" : [ "suspended", "detention", "ireland" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "95b20a96-8863-46e4-8779-b870ab74a385", - "label" : "Custodial Period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : 1 - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 200, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "05a40d21-7ef7-4008-92f7-90f5abe6806b", - "label" : "Judge reserves breach proceedings", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1000, - "duration" : null, - "wordGroup" : [ "Breach" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "31e2a7a7-03fc-472b-97ad-67d5aae41a70", - "label" : "Custody reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXL", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "77177e00-4168-11e8-842f-0ed5f89f718b", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "f8ab34ee-cefe-4b3b-b286-0bb9fefc0a95", - "label" : "The reasons for this", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "FIXLM", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : "f30f0828-8387-11e8-adc0-fa7ae01bbebc", - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3d3c2211-2b03-46de-89c7-8c3b9271b3f9", - "label" : "Petty Sessions District", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1134", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ { - "childResultDefinitionId" : "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType" : "optional" - } ] - }, { - "id" : "d4490cde-3f85-4f51-9545-e2648e458a13", - "label" : "Suspended sentence of imprisonment activated unaltered", - "shortCode" : "SSI", - "level" : "O", - "rank" : 10300, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "imprisonment", "activate" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label" : "Name of court that imposed suspended sentence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label" : "Date suspended sentence imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1507", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "8847f470-7bf6-4d7f-aad3-efb31104f337", - "label" : "Suspended sentence of imprisonment activated with lesser term", - "shortCode" : "SSIV", - "level" : "O", - "rank" : 10400, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "imprisonment", "activate", "lesser" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label" : "Name of court that imposed suspended sentence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label" : "Date suspended sentence imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1507", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1f9c69f6-8fb6-478e-95ba-4501974c3c00", - "label" : "Suspended sentence of detention in a young offender institution activated unaltered", - "shortCode" : "SSID", - "level" : "O", - "rank" : 10500, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "detention", "activate" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1100, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label" : "Name of court that imposed suspended sentence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label" : "Date suspended sentence imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 800, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1507", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "01c907a7-6035-40d0-9b90-e25799797dda", - "label" : "Suspended sentence of detention in a young offender institution activated with lesser term", - "shortCode" : "SSIVD", - "level" : "O", - "rank" : 10600, - "wordGroups" : [ { - "wordGroup" : [ "suspended", "detention", "activate", "lesser" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf19c3f5-68e5-4dfb-a9e2-fede08c3e81a", - "label" : "Original custody term", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 100, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2c397327-1db7-4a5c-957d-85793f59deaa", - "label" : "Original suspension period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 200, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "5f6b92e4-3297-4786-84f9-c3f1d9568012", - "label" : "Concurrent", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 300, - "duration" : null, - "wordGroup" : [ "Concurrent" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "C", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "008282a9-aa16-4097-91a9-6a11e4b7b351", - "label" : "Lesser term imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 800, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Years", - "wordGroup" : [ "Years" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Months", - "wordGroup" : [ "Months" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Weeks", - "wordGroup" : [ "Weeks" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ca85396d-f597-47d7-9c4c-efe80754959e", - "label" : "Total custodial period", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "INT", - "sequence" : 900, - "duration" : "Days", - "wordGroup" : [ "Days" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2395831b-5044-451f-acaf-259d00e01bea", - "label" : "Sentenced in absence", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "BOOLEAN", - "sequence" : 1200, - "duration" : null, - "wordGroup" : [ "Absence" ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "FH", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "6c2f5e36-9657-40a4-abf8-86dd1e262c12", - "label" : "Consecutive to offence number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "INT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "777e60fc-6bab-467c-9ab5-1fc2a068337d", - "label" : "Where consecutive to an offence on another case - specify that case number", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : "F", - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "780d25cc-00b7-40c7-8546-7e0ef6f4df9a", - "label" : "Name of court that imposed suspended sentence", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 600, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "38dd4cca-885d-45f4-b5a2-5823fc9ada95", - "label" : "Date suspended sentence imposed", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 700, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "2d6330a2-1f12-45fb-bb72-65f4c1215e9c", - "label" : "Prison", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 900, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "prison", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "6b8c8f13-b8d1-4f72-85e8-cc9128e5ec71", - "label" : "Risk or vulnerability factors", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "riskFactors", - "courtExtract" : "N", - "durationSequence" : null - }, { - "id" : "db6f4f71-4088-42f6-919c-74e82fea6f78", - "label" : "Total sentence consecutive to what", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1000, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "d483e89c-4919-4248-a046-372a6a4532a6", - "label" : "Reason for sentence without PSR", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label" : "Probation team to be notified", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "bf3d1854-77ce-44ea-8bf7-e2afe595e45d", - "label" : "Reasons", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 1400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "F", - "cjsCode" : "1507", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c93c5a18-838a-41d3-a017-c203b37f5655", - "label" : "Adjournment reason: At request of the defence", - "shortCode" : "DEF", - "level" : "O", - "rank" : 10700, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "request", "defence" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros ohirio: Ar gais yr amddiffyniad", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "DB", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "4958de15-8a0a-4d2b-9f7e-56e037cf03da", - "label" : "Adjournment reason: For the trial to take place", - "shortCode" : "TRIAL", - "level" : "O", - "rank" : 10800, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "trial" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio: Er mwyn cynnal y treial", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "GC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "1d55fdeb-7dbc-46ec-b3ff-7b15fe08a476", - "label" : "Adjournment reason: At request of the prosecution", - "shortCode" : "PROS", - "level" : "O", - "rank" : 10900, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "request", "prosecution" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "cecebc7e-d1e8-45f3-b042-1aae41b8cfbf", - "label" : "Additional information", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : "additionalInformation", - "courtExtract" : "Y", - "durationSequence" : null - } ], - "welshLabel" : "Rheswm dros ohirio: Ar gais yr erlyniad", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "DC", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "c2eca548-4511-4023-bbe6-50fe0b679b4a", - "label" : "Adjournment reason: To plead guilty or not guilty to the offence(s)", - "shortCode" : "PLEA", - "level" : "O", - "rank" : 11000, - "wordGroups" : [ { - "wordGroup" : [ "adjournment", "plea" ] - } ], - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "prompts" : [ ], - "welshLabel" : "Rheswm dros ohirio: I bledio’n euog neu’n ddieuog i'r trosedd(au)", - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "adjournment" : false, - "convicted" : false, - "qualifier" : "DM", - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Adjournment reasons", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : true, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - }, { - "id" : "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "label" : "Community requirement: Curfew waived", - "shortCode" : "CURW", - "level" : "O", - "rank" : 1800, - "wordGroups" : [ { - "wordGroup" : [ "Curfew", "waived" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "040c7d54-3e56-4ed1-8004-d63ab3cd5128", - "label" : "Date excused", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "DATE", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", - "label" : "Excused time from", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 200, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "ba3cd0c4-2bd0-4b02-9636-2064e293466b", - "label" : "Excused time to", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TIME", - "sequence" : 300, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "3a71ea3c-2083-4584-8c73-e7bb0608c468", - "label" : "Excused reason", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 400, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - }, { - "id" : "e4fb2729-c6e4-4d32-b3f0-24285f625a87", - "label" : "Other curfew requirements", - "welshLabel" : null, - "resultPromptRule" : "optional", - "type" : "TXT", - "sequence" : 500, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "3105", - "adjournment" : false, - "convicted" : true, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "Community Requirement", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : true, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - },{ - "id" : "a9b6e6af-cd04-4003-8f3d-18ad58f7f5a1", - "label" : "Order made under Section 49 of the Children and Young Persons Act 1933 dispensing with the restrictions on publicity", - "shortCode" : "D49", - "level" : "O", - "rank" : 60000, - "wordGroups" : [ { - "wordGroup" : [ "Order", "49", "publicity" ] - } ], - "userGroups" : [ ], - "prompts" : [ { - "id" : "8b419e6d-c248-4f9e-8638-470d237022b1", - "label" : "Details of reporting restriction", - "welshLabel" : null, - "resultPromptRule" : "mandatory", - "type" : "TXT", - "sequence" : 100, - "duration" : null, - "wordGroup" : null, - "userGroups" : [ "Court Clerks", "Legal Advisers" ], - "fixedListId" : null, - "qual" : null, - "reference" : null, - "courtExtract" : "Y", - "durationSequence" : null - } ], - "isAvailableForCourtExtract" : true, - "financial" : false, - "category" : "A", - "cjsCode" : "4509", - "adjournment" : false, - "convicted" : false, - "postHearingCustodyStatus" : "A", - "resultDefinitionGroup" : "PressOn", - "terminatesOffenceProceedings" : false, - "lifeDuration" : false, - "publishedAsAPrompt" : false, - "excludedFromResults" : false, - "alwaysPublished" : false, - "urgent" : false, - "d20" : false, - "resultDefinitionRules" : [ ] - },{ - "id": "923f8b82-d4b5-4c9b-8b54-6d1ec8e16dd6", - "version": "2021-02-25T12:42:54.190Z", - "startDate": "2021-02-26", - "label": "Account Consolidated", - "shortCode": "ACON", - "level": "D", - "rank": 8800, - "wordGroups": [ + "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", + "ruleType": "atleastOneOf" + }, { - "wordGroup": [ - "ACON" - ] + "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", + "ruleType": "atleastOneOf" }, { - "wordGroup": [ - "consolidated", - "account" - ] - } - ], - "prompts": [ + "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", + "ruleType": "atleastOneOf" + }, { - "id": "e6861c6e-0de2-4029-ab8c-c89769daea29", - "label": "Account to be consolidated with existing accounts", - "welshLabel": "Cyfrif i’w gyfuno â chyfrifon presennol", - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 200, - "financial": "N", - "reference": "accountToBeConsolidatedWithExistingAccounts", - "wordGroup": [ - "Consolidated" - ], - "userGroups": [ - - ], - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", + "ruleType": "atleastOneOf" }, { - "id": "d05f476d-a0b9-47c7-bf95-d9cfd591b747", - "label": "Account to be consolidated with existing account number", - "welshLabel": "Cyfrif i’w gyfuno â rhif cyfrif presennol", - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 100, - "financial": "N", - "reference": "accountToBeConsolidatedWithExistingAccountNumber", - "wordGroup": [ - "Consolidated" - ], - "userGroups": [ - - ], - "min": "1", - "max": "20", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", + "ruleType": "atleastOneOf" }, { - "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label": "Additional information", - "welshLabel": "Gwybodaeth ychwanegol", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 300, - "financial": "N", - "reference": "additionalInformation", - "userGroups": [ - - ], - "min": "1", - "max": "1000", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "761fa811-cf01-41b5-8630-55485205f8d9", + "ruleType": "atleastOneOf" } ], - "welshLabel": "Cyfrif wedi’i gyfuno", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "d38d9766-c141-4d6b-bb4a-249a9bb88636", + "version": "2022-07-07T11:37:58.943Z", + "startDate": "2022-07-08", + "label": "Is electronic monitoring required", + "shortCode": "EMREQ", + "level": "O", + "rank": 32900, + "userGroups": [], "financial": "N", "unscheduled": false, "adjournment": "N", - "category": "F", + "category": "I", "urgent": false, "convicted": "N", "d20": false, + "resultDefinitionGroup": "", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, "rollUpPrompts": false, "publishedForNows": false, "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, + "excludedFromResults": true, + "alwaysPublished": false, "jurisdiction": "B", - "libraCode": "ACON", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "8b1cff00-a456-40da-9ce4-f11c20959084", - "version": "2022-12-08T20:00:45.162Z", - "startDate": "2022-12-09", - "label": "Suspended sentence order - imprisonment", - "shortCode": "SUSPS", - "level": "O", - "rank": 30500, - "wordGroups": [ - { - "wordGroup": [ - "SUSPS" - ] - }, + "resultDefinitionRules": [ { - "wordGroup": [ - "suspended", - "imprisonment" - ] + "childResultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", + "ruleType": "mandatory" } ], + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": false, + "isBooleanResult": true + }, + { + "id": "859c7729-93bf-4fda-8345-3e56695dddb5", + "version": "2022-12-08T20:05:27.835Z", + "startDate": "2022-12-09", + "label": "First Review Hearing - Suspended", + "shortCode": "FRHS", + "level": "D", + "rank": 2800, "prompts": [ { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", - "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Years" - ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Flynedd", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", - "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Months" - ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Mis", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", - "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Weeks" - ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Wythnos", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "76f15753-1706-42fb-b922-0d56d01e5706", - "label": "Imprisonment Period", - "welshLabel": "Cyfnod Carcharu", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", - "financial": "N", - "reference": "imprisonmentPeriod", - "wordGroup": [ - "Days" - ], - "userGroups": [], - "durationSequence": 1, - "welshDuration": "Niwrnod", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", - "label": "Bail remand days to count (tagged days)", - "welshLabel": "Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 700, - "financial": "N", - "reference": "bailRemandDaysToCountTaggedDays", - "wordGroup": [ - "Tagged days" - ], - "userGroups": [], - "min": "0", - "max": "999", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "746c833a-7d33-4800-a40c-425dbacf7492", - "label": "Concurrent", - "welshLabel": "Cydamserol", + "id": "34f900f3-132c-4baa-a9d3-b7fd5c7b24d0", + "label": "Judge reserves review hearing", + "welshLabel": "Barnwr yn neilltuo gwrandawiad adolygu", "resultPromptRule": "optional", "type": "BOOLEAN", - "sequence": 120, - "financial": "N", - "reference": "concurrent", - "wordGroup": [ - "Concurrent" - ], - "userGroups": [], - "qual": "C", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - },{ - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Years", + "sequence": 700, "financial": "N", - "reference": "suspendedPeriod", + "reference": "judgeReservesReviewHearing", "wordGroup": [ - "Years" + "Review" ], "userGroups": [], - "durationSequence": 2, - "welshDuration": "Flynedd", "courtExtract": "Y", - "jurisdiction": "B", + "jurisdiction": "C", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 200, - "duration": "Months", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "suspendedPeriod", - "wordGroup": [ - "Months" - ], + "reference": "hCHOUSEOrganisationName", "userGroups": [], - "durationSequence": 2, - "welshDuration": "Mis", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "OrganisationName", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "7784b81d-44d2-43c0-a903-a53b0e73683b", - "label": "Consecutive to offence", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 140, + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "consecutiveToOffenceNumber", - "wordGroup": [ - "Consecutive to" - ], + "reference": "hCHOUSEAddress1", "userGroups": [], - "min": "1", - "max": "99", - "qual": "F", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine1", "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "29f5b3c7-8d15-4606-9dcf-23f32a21b5ef", - "label": "Responsible officer", - "welshLabel": "Swyddog cyfrifol", - "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 340, - "financial": "N", - "reference": "responsibleOfficer", - "fixedListId": "da9ab30d-d263-4123-9bde-e3078d547a8e", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "90d17fe3-8f87-43f2-bd96-a4108e4603ae", - "label": "The reasons for this", - "welshLabel": "Y rhesymau dros hyn", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", "resultPromptRule": "optional", - "type": "FIXLOM", + "type": "NAMEADDRESS", "sequence": 300, "financial": "N", - "reference": "theReasonsForThis", - "fixedListId": "f30f0828-8387-11e8-adc0-fa7ae01bbebc", + "reference": "hCHOUSEAddress2", "userGroups": [], "min": "", "max": "", "courtExtract": "Y", - "jurisdiction": "M", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "da9c91a6-7090-44f3-8644-b4b184533fc4", - "label": "which is on case number", - "welshLabel": "sydd dan y rhif achos", - "resultPromptRule": "optional", - "type": "TXT", - "sequence": 160, - "financial": "N", - "reference": "whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber", - "userGroups": [], - "min": "1", - "max": "20", - "qual": "", - "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine2", "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "ea957761-0813-4a92-9e7c-b536654325f0", - "label": "Imprisonment reasons", - "welshLabel": "Rhesymau dros garcharu", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 200, - "financial": "N", - "reference": "imprisonmentReasons", - "fixedListId": "77177e00-4168-11e8-842f-0ed5f89f718b", - "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "M", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "f4a4f159-779e-4f35-822a-b559a2415ecb", - "label": "Supervising Court", - "welshLabel": "Llys sy’n Goruchwylio", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 3", "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 360, + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "supervisingCourt", + "reference": "hCHOUSEAddress3", "userGroups": [], - "min": "1", - "max": "120", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "supervisingCourt", + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine3", "nameEmail": false, - "cacheable": 2, "associatedWithReferenceData": true - } - ], - "welshLabel": "Gorchymyn dedfryd ohiriedig - carcharu", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "F", - "urgent": false, - "convicted": "Y", - "d20": false, - "dvlaCode": "C", - "cjsCode": "1115", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "libraCode": "SUSPS", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "ruleType": "mandatory" - }, - { - "childResultDefinitionId": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "859c7729-93bf-4fda-8345-3e56695dddb5", - "ruleType": "optional" - } - ], - "canBeSubjectOfBreach": true, - "canBeSubjectOfVariation": true, - "resultTextTemplate": "Committed to prison for {imprisonmentPeriod}[ {concurrent}][ consecutive to offence {consecutiveToOffenceNumber}][ which is on case number {whereConsecutiveToAnOffenceOnAnotherCaseSpecifyThatCaseNumber}] suspended. Reason: {imprisonmentReasons}.[ Reason for custody: {theReasonsForThis}.] [The defendant must comply with the requirements (shown below) within the supervision period.%CRS%] %FRHS% In the event of activation of sentence: {bailRemandDaysToCountTaggedDays} bail remand days to count. %STIMP%", - "dependantResultDefinitionGroup": "Community Requirements", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "b65fb5f1-b11d-4a95-a198-3b81333c7cf9", - "version": "2022-12-08T20:00:45.902Z", - "startDate": "2022-12-09", - "label": "Total suspended custodial period", - "shortCode": "STIMP", - "level": "D", - "rank": 29200, - "wordGroups": [ - { - "wordGroup": [ - "STIMP" - ] }, { - "wordGroup": [ - "SSO", - "suspended", - "custodial", - "imprisonment", - "period", - "Total" - ] - } - ], - "prompts": [ - { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Years", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 4", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "totalCustodialPeriod", - "wordGroup": [ - "Years" - ], + "reference": "hCHOUSEAddress4", "userGroups": [], - "welshDuration": "Flynedd", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine4", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Months", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "totalCustodialPeriod", - "wordGroup": [ - "Months" - ], + "reference": "hCHOUSEAddress5", "userGroups": [], - "welshDuration": "Mis", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine5", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Weeks", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "totalCustodialPeriod", - "wordGroup": [ - "Weeks" - ], + "reference": "hCHOUSEPostCode", "userGroups": [], - "welshDuration": "Wythnos", + "min": "", + "max": "", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "PostCode", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "b2cf5a1e-8539-45a1-a287-4be5094a0e73", - "label": "Total custodial period", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 100, - "duration": "Days", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse email address 1", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "totalCustodialPeriod", - "wordGroup": [ - "Days" - ], + "reference": "hCHOUSEEmailAddress1", "userGroups": [], - "welshDuration": "Niwrnod", - "courtExtract": "Y", + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", - "hidden": false, + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "EmailAddress1", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "5dbfe1ce-0da9-47ab-9677-66c82ff079a7", - "label": "Judge reserves breach proceedings", - "welshLabel": "Barnwr yn neilltuo achos torri amodau", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse email address 2", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 1600, + "type": "NAMEADDRESS", + "sequence": 300, "financial": "N", - "reference": "judgeReservesBreachProceedings", - "wordGroup": [ - "reserved" - ], + "reference": "hCHOUSEEmailAddress2", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "EmailAddress2", + "nameEmail": false, + "associatedWithReferenceData": true + }, + { + "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", + "label": "First review date", + "welshLabel": "Dyddiad yr adolygiad cyntaf", + "resultPromptRule": "mandatory", + "type": "DATE", + "sequence": 100, + "financial": "N", + "reference": "firstReviewDate", "userGroups": [], "courtExtract": "Y", - "jurisdiction": "C", + "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", - "resultPromptRule": "optional", - "type": "INT", - "sequence": 500, - "duration": "Years", + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "welshLabel": "Amser y gwrandawiad", + "resultPromptRule": "mandatory", + "type": "TIME", + "sequence": 200, "financial": "N", - "reference": "supervisionPeriod", - "wordGroup": [ - "Years" - ], + "reference": "timeOfHearing", "userGroups": [], - "welshDuration": "Flynedd", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -50970,41 +65762,36 @@ "associatedWithReferenceData": false }, { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", - "resultPromptRule": "optional", + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "welshLabel": "Ystafell Llys", + "resultPromptRule": "mandatory", "type": "INT", - "sequence": 500, - "duration": "Months", + "sequence": 400, "financial": "N", - "reference": "supervisionPeriod", - "wordGroup": [ - "Months" - ], + "reference": "HCROOM", "userGroups": [], - "welshDuration": "Mis", + "min": "1", + "max": "99", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, + "referenceDataKey": "HCROOM", "nameEmail": false, - "associatedWithReferenceData": false + "associatedWithReferenceData": true }, { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", - "resultPromptRule": "optional", - "type": "INT", + "id": "978001b1-47d5-4cda-a1b6-b6c3a2e4975d", + "label": "Review frequency", + "welshLabel": "Amlder yr adolygiadau", + "resultPromptRule": "mandatory", + "type": "TXT", "sequence": 500, - "duration": "Weeks", "financial": "N", - "reference": "supervisionPeriod", - "wordGroup": [ - "Weeks" - ], + "reference": "reviewFrequency", "userGroups": [], - "welshDuration": "Wythnos", + "min": "1", + "max": "50", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -51012,41 +65799,77 @@ "associatedWithReferenceData": false }, { - "id": "fcff158b-aa4b-4111-afd8-6d536895fc20", - "label": "Supervision period", - "welshLabel": "Cyfnod Goruchwylio", + "id": "fe774a35-5353-4e4f-adef-44b7a8717dc6", + "label": "Defendant to attend review", + "welshLabel": "Diffynnydd i fynychu adolygiad", "resultPromptRule": "optional", - "type": "INT", - "sequence": 500, - "duration": "Days", + "type": "BOOLEAN", + "sequence": 600, "financial": "N", - "reference": "supervisionPeriod", - "wordGroup": [ - "Days" - ], + "reference": "defendantToAttendReview", "userGroups": [], - "welshDuration": "Niwrnod", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false - }, + } + ], + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "First Review Hearing", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "jurisdiction": "B", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "This order is to be reviewed {reviewFrequency} starting on {firstReviewDate} [at {timeOfHearing}] at {HCHOUSE~Name}. [{defendantToAttendReview}.]", + "triggeredApplicationCode": "CJ03518", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "65a59f46-61ae-4dac-a040-a25fca647cb2", + "version": "2022-12-08T20:00:36.385Z", + "startDate": "2022-12-09", + "label": "Residence", + "shortCode": "RR", + "level": "O", + "rank": 31800, + "wordGroups": [ + { + "wordGroup": [ + "RR", + "residence" + ] + } + ], + "prompts": [ { - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 200, + "sequence": 300, "duration": "Years", "financial": "N", - "reference": "suspendedPeriod", + "reference": "periodOfResidence", "wordGroup": [ "Years" ], "userGroups": [], - "durationSequence": 2, "welshDuration": "Flynedd", "courtExtract": "Y", "jurisdiction": "B", @@ -51055,20 +65878,19 @@ "associatedWithReferenceData": false }, { - "id": "95618691-0742-417e-82b9-c4d4bff94585", - "label": "Suspended period", - "welshLabel": "Cyfnod Gohiriedig", + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 200, + "sequence": 300, "duration": "Months", "financial": "N", - "reference": "suspendedPeriod", + "reference": "periodOfResidence", "wordGroup": [ "Months" ], "userGroups": [], - "durationSequence": 2, "welshDuration": "Mis", "courtExtract": "Y", "jurisdiction": "B", @@ -51077,224 +65899,60 @@ "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified organisation name", + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, + "type": "INT", + "sequence": 300, + "duration": "Weeks", "financial": "N", - "reference": "probationteamtobenotifiedOrganisationName", + "reference": "periodOfResidence", + "wordGroup": [ + "Weeks" + ], "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", + "welshDuration": "Wythnos", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "OrganisationName", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 1", + "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", + "label": "Period of residence", + "welshLabel": "Cyfnod preswylio", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress1", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress2", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 3", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress3", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine3", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 4", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress4", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine4", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified address line 5", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedAddress5", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "AddressLine5", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified post code", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, + "type": "INT", + "sequence": 300, + "duration": "Days", "financial": "N", - "reference": "probationteamtobenotifiedPostCode", + "reference": "periodOfResidence", + "wordGroup": [ + "Days" + ], "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", + "welshDuration": "Niwrnod", + "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "PostCode", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 1", + "id": "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", + "label": "Address", + "welshLabel": "Cyfeiriad", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress1", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "68c92035-27fd-4ee6-b03c-fe18ea6dbcb0", - "label": "Probation team to be notified email address 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 700, - "financial": "N", - "reference": "probationteamtobenotifiedEmailAddress2", - "userGroups": [], - "min": "", - "max": "", - "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Probation team to be notified", - "fixListLabel": "Select Probation team to be notified", - "referenceDataKey": "probationteamtobenotified", - "partName": "EmailAddress2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true - }, - { - "id": "0ccd9da5-d611-4f9e-92ff-02375be8bb11", - "label": "Total sentence consecutive to", - "welshLabel": "Y ddedfryd gyfan yn dilyn y", - "resultPromptRule": "optional", "type": "TXT", - "sequence": 300, + "sequence": 200, "financial": "N", - "reference": "totalSentenceConsecutiveTo", + "reference": "address", + "wordGroup": [ + "Address" + ], "userGroups": [], - "min": "1", - "max": "150", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -51302,34 +65960,34 @@ "associatedWithReferenceData": false }, { - "id": "3e7dab34-bb9d-46df-9a45-139113ee0b09", - "label": "which was imposed by", - "welshLabel": "a orfodwyd gan", + "id": "b7591fa7-9605-431f-b94e-19cd0fe3e04e", + "label": "Name of place", + "welshLabel": "Enw’r lleoliad", "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 400, + "type": "TXT", + "sequence": 100, "financial": "N", - "reference": "whichWasImpBy", + "reference": "nameOfPlace", "userGroups": [], + "min": "1", + "max": "50", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "whichWasImpBy", "nameEmail": false, - "associatedWithReferenceData": true + "associatedWithReferenceData": false }, { - "id": "21549bc3-5be9-4a91-abc7-57d8ed1b1676", - "label": "Reason for sentence without PSR", - "welshLabel": "Rheswm dros ddedfryd heb PSR", + "id": "fd192d80-cf96-403e-9c3b-c0738d5a4a13", + "label": "Responsible officer may approve different address", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 800, + "type": "BOOLEAN", + "sequence": 400, "financial": "N", - "reference": "reasonForSentenceWithoutPSR", + "reference": "responsibleOfficeMayApproveDifferentAddress", "userGroups": [], "min": "1", - "max": "1000", + "max": "1", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -51337,17 +65995,17 @@ "associatedWithReferenceData": false }, { - "id": "850439de-16ca-4282-b0f1-0ce6bf418f4e", - "label": "The custodial sentence has been suspended because", - "welshLabel": "Mae'r ddedfryd o garchar wedi'i gohirio oherwydd", + "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", + "label": "Additional information", + "welshLabel": "Gwybodaeth ychwanegol", "resultPromptRule": "optional", "type": "TXT", - "sequence": 600, + "sequence": 500, "financial": "N", - "reference": "theCustodialSentenceHasBeenSuspendedBecause", + "reference": "additionalInformation", "userGroups": [], "min": "1", - "max": "500", + "max": "250", "courtExtract": "Y", "jurisdiction": "B", "hidden": false, @@ -51355,553 +66013,516 @@ "associatedWithReferenceData": false } ], - "welshLabel": "Cyfanswm y cyfnod gohiriedig yn y ddalfa", + "welshLabel": "Preswylio", "financial": "N", "unscheduled": false, "adjournment": "N", "category": "A", "urgent": false, - "convicted": "Y", + "convicted": "N", "d20": false, + "resultDefinitionGroup": "Community Requirement", + "cjsCode": "3107", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": true, + "rollUpPrompts": false, + "publishedForNows": false, "publishedAsAPrompt": false, "excludedFromResults": false, - "alwaysPublished": false, + "alwaysPublished": true, "jurisdiction": "B", "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "resultTextTemplate": "Total custodial period {totalCustodialPeriod} suspended for {suspendedPeriod} [Total sentence consecutive to {totalSentenceConsecutiveTo}][ which was imposed by {whichWasImpBy}]. [Supervision period {supervisionPeriod}.][ The custodial sentence has been suspended because {theCustodialSentenceHasBeenSuspendedBecause}.][ Reason for sentence without PSR {reasonForSentenceWithoutPSR}.]", + "resultTextTemplate": "Residence Requirement: Live at[ {nameOfPlace},] {address} for {periodOfResidence}.[ {responsibleOfficerMayApproveDifferentAddress}.] {additionalInformation}", "isAvailableForCourtExtract": true, - "isBooleanResult": false, - "resultDefinitionGroup":"Community Requirements" + "isBooleanResult": false }, { - "id": "b2dab2b7-3edd-4223-b1be-3819173ec54d", - "version": "2022-07-07T11:34:43.558Z", - "startDate": "2022-07-08", - "label": "Community requirements", - "shortCode": "CRS", + "id": "9bec5977-1796-4645-9b9e-687d4f23d37d", + "version": "2022-12-08T20:00:31.000Z", + "startDate": "2022-12-09", + "label": "Unpaid work", + "shortCode": "UPWR", "level": "O", - "rank": 101200, - "userGroups": [], - "welshLabel": "Gofynion cymunedol", - "financial": "N", - "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Community Requirements, ABC", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "jurisdiction": "B", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "65a59f46-61ae-4dac-a040-a25fca647cb2", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "5473390c-dbe2-4026-a95f-8bb99d2e011d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f9eac601-a1e7-4d45-99ee-c49e2c4ca85b", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9941e3d0-0e80-46c6-95c6-5b4f1a88c83d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9bec5977-1796-4645-9b9e-687d4f23d37d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "54f41331-f5cb-44b3-ab88-ae063fb39e26", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "091cd45b-4312-476e-a122-18cc02fd1699", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "2a9f9e63-c76a-4728-bc7f-025fed59b741", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7f80f0f4-ae8a-4965-9cc6-ef5c2c5caef7", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "a5aa694e-4729-40f5-814e-60a75d9429e0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ce5f92f8-2b32-4364-964b-2ea4b6ec0cae", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6577e3ca-3e80-4412-8cba-bc608e012cf0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "959dfbc9-5fc5-4aa1-ac26-135f28b09e23", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "364d3065-0699-4df1-a68f-a69c429d0867", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "45a926ed-0b7f-4ba2-afeb-969697ca8415", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "06b4c31d-1b3d-4850-b64c-4cad870b3a25", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d1205bd2-b883-4f42-8be1-2aa797af3b47", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "99586f43-5b18-45da-87f7-1764ad149985", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "b7bb83be-aa21-4c62-9e08-012c5fbdf07c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "9b216a08-4df8-41c2-a947-66506cd1e1b5", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "1c40353b-a3b8-4437-8691-6b54d5842010", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "45ea2d9f-ddd8-4c39-9585-780746ee6a8d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "dc86a3bd-2fa0-4f90-b046-4ecc8d6c6265", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "61ea03c9-c113-446b-a392-402144fcd9e8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7eb72e0e-3a24-4f27-8593-84f7bdd432e1", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "40e88b4e-4f34-463d-92d3-1c5b03d05490", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ca79e8fc-6b65-400e-97b6-214c79388a6c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "ea74de19-9918-434d-92ea-1e4e332c0d3d", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d54c3093-6b9b-4b61-80cf-a0bf4ed5d2e8", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "bcf1b451-af1e-4603-9605-586310d0e61e", - "ruleType": "atleastOneOf" - }, + "rank": 32000, + "wordGroups": [ { - "childResultDefinitionId": "b0cb8194-0ccb-401d-b548-88a019aa6de0", - "ruleType": "atleastOneOf" + "wordGroup": [ + "UPWR" + ] }, { - "childResultDefinitionId": "c1b0dedf-1380-4889-9d31-1816b850e348", - "ruleType": "atleastOneOf" - }, + "wordGroup": [ + "Unpaid", + "work" + ] + } + ], + "prompts": [ { - "childResultDefinitionId": "cc2cbb94-b75a-4a8c-9840-31c5f8007724", - "ruleType": "atleastOneOf" + "id": "72413aef-ecb9-4e9b-a143-31d1e9c11584", + "label": "Number of hours", + "welshLabel": "Nifer yr oriau", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 100, + "duration": "Hours", + "financial": "N", + "reference": "numberOfHours", + "wordGroup": [ + "Hours" + ], + "userGroups": [], + "min": "1", + "max": "999", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "7a31e2e7-3a90-4210-aa6e-b7c226af4b97", - "ruleType": "atleastOneOf" + "id": "17fd32a7-344f-4a0e-a3ae-5b7868f11bcd", + "label": "Additional / concurrent to what", + "welshLabel": "Yn ogystal â / yn gydamserol â beth", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "financial": "N", + "reference": "additionalConcurrentToWhat", + "userGroups": [], + "min": "1", + "max": "200", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "761fa811-cf01-41b5-8630-55485205f8d9", - "ruleType": "atleastOneOf" + "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", + "label": "Additional information", + "welshLabel": "Gwybodaeth ychwanegol", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 300, + "financial": "N", + "reference": "additionalInformation", + "userGroups": [], + "min": "1", + "max": "250", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false } ], - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "d38d9766-c141-4d6b-bb4a-249a9bb88636", - "version": "2022-07-07T11:37:58.943Z", - "startDate": "2022-07-08", - "label": "Is electronic monitoring required", - "shortCode": "EMREQ", - "level": "O", - "rank": 32900, - "userGroups": [], + "welshLabel": "Gwaith di-dâl", "financial": "N", "unscheduled": false, "adjournment": "N", - "category": "I", + "category": "A", "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "", + "resultDefinitionGroup": "Community Requirement", + "cjsCode": "3101", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, "rollUpPrompts": false, "publishedForNows": false, "publishedAsAPrompt": false, - "excludedFromResults": true, - "alwaysPublished": false, + "excludedFromResults": false, + "alwaysPublished": true, "jurisdiction": "B", - "resultDefinitionRules": [ - { - "childResultDefinitionId": "dada120c-160a-49a9-b040-e8b6b7128d67", - "ruleType": "mandatory" - } - ], "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": false, - "isBooleanResult": true + "resultTextTemplate": "Unpaid Work Requirement: Carry out unpaid work for {numberOfHours}[ Additional / concurrent to {additionalConcurrentToWhat}] within the next twelve months. This work will be supervised by the responsible officer. {additionalInformation}", + "isAvailableForCourtExtract": true, + "isBooleanResult": false }, { - "id": "859c7729-93bf-4fda-8345-3e56695dddb5", - "version": "2022-12-08T20:05:27.835Z", + "id": "dada120c-160a-49a9-b040-e8b6b7128d67", + "version": "2022-12-08T20:04:19.900Z", "startDate": "2022-12-09", - "label": "First Review Hearing - Suspended", - "shortCode": "FRHS", - "level": "D", - "rank": 2800, + "label": "Notification of electronic monitoring order (requirement)", + "shortCode": "NORDRC", + "level": "O", + "rank": 5900, + "wordGroups": [ + { + "wordGroup": [ + "NORDRC" + ] + } + ], "prompts": [ { - "id": "34f900f3-132c-4baa-a9d3-b7fd5c7b24d0", - "label": "Judge reserves review hearing", - "welshLabel": "Barnwr yn neilltuo gwrandawiad adolygu", - "resultPromptRule": "optional", + "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", + "label": "Continuation of electronic monitoring", + "welshLabel": "Parhau gyda monitro electronig", + "resultPromptRule": "oneOf", "type": "BOOLEAN", - "sequence": 700, + "sequence": 500, "financial": "N", - "reference": "judgeReservesReviewHearing", + "reference": "continuationOfElectronicMonitoring", "wordGroup": [ - "Review" + "continuation" ], "userGroups": [], - "courtExtract": "Y", - "jurisdiction": "C", + "courtExtract": "N", + "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse organisation name", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor organisation name", "resultPromptRule": "mandatory", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEOrganisationName", + "reference": "electronicmonitoringcontractorOrganisationName", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "OrganisationName", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 1", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 1", "resultPromptRule": "mandatory", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEAddress1", + "reference": "electronicmonitoringcontractorAddress1", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "AddressLine1", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 2", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 2", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEAddress2", + "reference": "electronicmonitoringcontractorAddress2", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "AddressLine2", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 3", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 3", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEAddress3", + "reference": "electronicmonitoringcontractorAddress3", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "AddressLine3", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 4", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 4", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEAddress4", + "reference": "electronicmonitoringcontractorAddress4", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "AddressLine4", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse address line 5", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor address line 5", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEAddress5", + "reference": "electronicmonitoringcontractorAddress5", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "AddressLine5", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse post code", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor post code", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEPostCode", + "reference": "electronicmonitoringcontractorPostCode", "userGroups": [], - "min": "", - "max": "", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "PostCode", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse email address 1", - "resultPromptRule": "optional", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 1", + "resultPromptRule": "mandatory", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEEmailAddress1", + "reference": "electronicmonitoringcontractorEmailAddress1", "userGroups": [], - "min": "", - "max": "", "courtExtract": "N", "jurisdiction": "B", "hidden": true, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "EmailAddress1", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "66868c04-72c4-46d9-a4fc-860a82107475", - "label": "Courthouse email address 2", + "id": "92566757-ef79-4804-bced-c63ebb0937e7", + "label": "Electronic monitoring contractor email address 2", "resultPromptRule": "optional", "type": "NAMEADDRESS", - "sequence": 300, + "sequence": 100, "financial": "N", - "reference": "hCHOUSEEmailAddress2", + "reference": "electronicmonitoringcontractorEmailAddress2", "userGroups": [], - "min": "", - "max": "", "courtExtract": "N", "jurisdiction": "B", "hidden": true, "nameAddressType": "Organisation", - "componentLabel": "Courthouse", - "fixListLabel": "Select Courthouse", - "referenceDataKey": "hCHOUSE", + "componentLabel": "Electronic monitoring contractor", + "fixListLabel": "Select Electronic monitoring contractor", + "referenceDataKey": "electronicmonitoringcontractor", "partName": "EmailAddress2", - "nameEmail": false, + "nameEmail": true, + "cacheable": 2, "associatedWithReferenceData": true }, { - "id": "bc256fd1-dedd-43ab-8882-f9fbb448a62d", - "label": "First review date", - "welshLabel": "Dyddiad yr adolygiad cyntaf", + "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", + "label": "Special needs", + "welshLabel": "Anghenion arbennig", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, + "financial": "N", + "reference": "specialNeeds", + "userGroups": [], + "min": "1", + "max": "120", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "f6ca6307-bdab-42d3-968b-44485824b535", + "label": "Are there any additional requirements as well?", + "welshLabel": "A oes unrhyw ofynion ychwanegol hefyd?", "resultPromptRule": "mandatory", - "type": "DATE", - "sequence": 100, + "type": "BOOLEAN", + "sequence": 600, "financial": "N", - "reference": "firstReviewDate", + "reference": "areThereAnyAdditionalRequirementsAsWell", "userGroups": [], - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", - "label": "Time of hearing", - "welshLabel": "Amser y gwrandawiad", + "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "label": "Does the offender have any special needs?", + "welshLabel": "A oes gan y troseddwr unrhyw anghenion arbennig?", "resultPromptRule": "mandatory", - "type": "TIME", + "type": "BOOLEAN", + "sequence": 1000, + "financial": "N", + "reference": "doesTheOffenderHaveAnySpecialNeeds", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "5ce30920-b300-471c-8fd7-67f3a193476a", + "label": "First notification of electronic monitoring", + "welshLabel": "Hysbysiad cyntaf o fonitro electronig", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", "sequence": 200, "financial": "N", - "reference": "timeOfHearing", + "reference": "firstNotificationOfElectronicMonitoring", "userGroups": [], - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", - "label": "Courtroom", - "welshLabel": "Ystafell Llys", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 400, + "id": "c7d508e9-1ea0-4a41-9961-703a5d164b6f", + "label": "Language", + "welshLabel": "Iaith", + "resultPromptRule": "optional", + "type": "FIXL", + "sequence": 900, "financial": "N", - "reference": "HCROOM", + "reference": "language", "userGroups": [], "min": "1", - "max": "99", - "courtExtract": "Y", + "max": "60", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, - "referenceDataKey": "HCROOM", + "referenceDataKey": "language", "nameEmail": false, "associatedWithReferenceData": true }, { - "id": "978001b1-47d5-4cda-a1b6-b6c3a2e4975d", - "label": "Review frequency", - "welshLabel": "Amlder yr adolygiadau", - "resultPromptRule": "mandatory", + "id": "9cae4974-5cf4-4701-ae3a-74f8d586b16d", + "label": "Additional notification of electronic monitoring. Date and case reference of original order", + "welshLabel": "Hysbysiad ychwanegol o fonitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", + "resultPromptRule": "oneOf", "type": "TXT", - "sequence": 500, + "sequence": 400, "financial": "N", - "reference": "reviewFrequency", + "reference": "additionalNotificationOfElectronicMonitoringDateOfOriginalOrder", "userGroups": [], - "min": "1", - "max": "50", - "courtExtract": "Y", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, "associatedWithReferenceData": false }, { - "id": "fe774a35-5353-4e4f-adef-44b7a8717dc6", - "label": "Defendant to attend review", - "welshLabel": "Diffynnydd i fynychu adolygiad", - "resultPromptRule": "optional", + "id": "efffc361-7cca-40a5-a436-a1fdb590e8be", + "label": "Variation of electronic monitoring. Date and case reference of original order", + "welshLabel": "Amrywio monitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", + "resultPromptRule": "oneOf", + "type": "TXT", + "sequence": 300, + "financial": "N", + "reference": "variationOfElectronicMonitoringDateOfOriginalOrder", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", + "label": "Was an interpreter used?", + "welshLabel": "A oedd cyfieithydd yn bresennol?", + "resultPromptRule": "mandatory", "type": "BOOLEAN", - "sequence": 600, + "sequence": 800, "financial": "N", - "reference": "defendantToAttendReview", + "reference": "wasAnInterpreterUsed", "userGroups": [], - "courtExtract": "Y", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", + "label": "Defendant's mobile number", + "welshLabel": "Rhif ffôn symudol y diffynnydd", + "resultPromptRule": "optional", + "type": "INT", + "sequence": 700, + "financial": "N", + "reference": "defendantsMobileNumber", + "userGroups": [], + "min": "1", + "max": "20", + "courtExtract": "N", "jurisdiction": "B", "hidden": false, "nameEmail": false, + "cacheable": 2, + "cacheDataPath": "personDefendant.personDetails.contact.mobile", "associatedWithReferenceData": false } ], + "welshLabel": "Hysbysiad o orchymyn monitro electronig (gofyniad)", "financial": "N", "unscheduled": false, "adjournment": "N", @@ -51909,1636 +66530,2063 @@ "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "First Review Hearing", + "resultDefinitionGroup": "Community requirements,ELMON", "postHearingCustodyStatus": "A", "terminatesOffenceProceedings": false, "lifeDuration": false, - "rollUpPrompts": true, - "publishedForNows": false, - "publishedAsAPrompt": false, + "rollUpPrompts": false, + "publishedForNows": true, + "publishedAsAPrompt": true, "excludedFromResults": false, "alwaysPublished": false, "jurisdiction": "B", "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "resultTextTemplate": "This order is to be reviewed {reviewFrequency} starting on {firstReviewDate} [at {timeOfHearing}] at {HCHOUSE~Name}. [{defendantToAttendReview}.]", - "triggeredApplicationCode": "CJ03518", - "isAvailableForCourtExtract": true, + "isAvailableForCourtExtract": false, "isBooleanResult": false }, { - "id": "65a59f46-61ae-4dac-a040-a25fca647cb2", - "version": "2022-12-08T20:00:36.385Z", - "startDate": "2022-12-09", - "label": "Residence", - "shortCode": "RR", + "id": "b2d06bbc-e90e-4df8-8851-6e4a70894828", + "label": "Obligatory disqualification", + "shortCode": "DDO", "level": "O", - "rank": 31800, + "rank": 67200, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, + "financial": "N", + "unscheduled": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": true, + "publishedForNows": false, + "lifeDuration": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "429fb553-4fb3-45eb-a700-7e5e69d1ca29", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "ea1ee5a4-be13-48dc-8411-78f22e01c236", + "ruleType": "optional" + } + ], "wordGroups": [ { "wordGroup": [ - "RR", - "residence" + "DDO", + "obligatory", + "disqualification" + ] + }, + { + "wordGroup": [ + "DDO" ] } ], + "adjournment": "N", + "category": "A", + "urgent": true, + "convicted": "Y", + "d20": true, + "cjsCode": "3070", + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "libraCode": "DDO", + "lCode": "DDO", + "resultTextTemplate": "Disqualified for holding or obtaining a driving licence for {disqualificationPeriod}.[ %DOID%.] Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988.[ This includes an extension period of {extensionPeriodSection35AImmediateCustodialSentence} in accordance with section 35A (immediate custodial sentence).][ This includes an extension period of {extensionPeriodSection35BEffectOfCustodialSentenceNoted} in accordance with section 35B (effect of custodial sentence noted).]", + "resultWording": "Disqualified for holding or obtaining a driving licence. Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988", + "welshResultWording": "Gwahardd rhag dal neu gael trwydded yrru. Gwaharddiad yn orfodol ar gyfer y trosedd. Cofnod gyrru wedi’i ardystio. Adran 34(1) Deddf Troseddwyr Traffig Ffyrdd 1988", + "terminatesOffenceProceedings": false, "prompts": [ { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 300, + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, "duration": "Years", - "financial": "N", - "reference": "periodOfResidence", + "welshDuration": "Flynedd", + "userGroups": [], "wordGroup": [ "Years" ], - "userGroups": [], - "welshDuration": "Flynedd", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "disqualificationPeriod", + "welshLabel": "Cyfnod gwahardd", + "durationSequence": 1 }, { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 300, + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, "duration": "Months", - "financial": "N", - "reference": "periodOfResidence", - "wordGroup": [ - "Months" - ], - "userGroups": [], "welshDuration": "Mis", - "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", - "resultPromptRule": "mandatory", - "type": "INT", - "sequence": 300, - "duration": "Weeks", - "financial": "N", - "reference": "periodOfResidence", + "userGroups": [], "wordGroup": [ - "Weeks" + "months" ], - "userGroups": [], - "welshDuration": "Wythnos", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "disqualificationPeriod", + "welshLabel": "Cyfnod gwahardd", + "durationSequence": 1 }, { - "id": "b17b7df3-064f-492a-b19d-8e0bde43f7c6", - "label": "Period of residence", - "welshLabel": "Cyfnod preswylio", + "id": "2bf54447-328c-4c1b-a123-341adbd52172", + "label": "Disqualification period", "resultPromptRule": "mandatory", "type": "INT", - "sequence": 300, + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, "duration": "Days", - "financial": "N", - "reference": "periodOfResidence", + "welshDuration": "Niwrnod", + "userGroups": [], "wordGroup": [ "Days" ], - "userGroups": [], - "welshDuration": "Niwrnod", "courtExtract": "Y", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false - }, - { - "id": "7025bdf4-f438-4b6e-8acf-b7ef38fcbd23", - "label": "Address", - "welshLabel": "Cyfeiriad", - "resultPromptRule": "mandatory", - "type": "TXT", - "sequence": 200, "financial": "N", - "reference": "address", - "wordGroup": [ - "Address" - ], - "userGroups": [], - "courtExtract": "Y", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "disqualificationPeriod", + "welshLabel": "Cyfnod gwahardd", + "durationSequence": 1 }, { - "id": "b7591fa7-9605-431f-b94e-19cd0fe3e04e", - "label": "Name of place", - "welshLabel": "Enw’r lleoliad", + "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", + "label": "Extension period section 35B (effect of custodial sentence noted)", "resultPromptRule": "optional", "type": "TXT", - "sequence": 100, - "financial": "N", - "reference": "nameOfPlace", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 400, "userGroups": [], - "min": "1", - "max": "50", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "50", + "reference": "extensionPeriodSection35BEffectOfCustodialSentenceNoted", + "welshLabel": "Cyfnod estyniad adran 35B (effaith dedfryd o garchar wedi’i nodi)" }, { - "id": "fd192d80-cf96-403e-9c3b-c0738d5a4a13", - "label": "Responsible officer may approve different address", + "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", + "label": "Defendant driving licence number", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 400, + "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 500, + "userGroups": [ + "CPS", + "Defence", + "NCES", + "Probation", + "Judiciary", + "Prosecuting Authorities", + "YOTs" + ], + "courtExtract": "N", "financial": "N", - "reference": "responsibleOfficeMayApproveDifferentAddress", - "userGroups": [], - "min": "1", - "max": "1", - "courtExtract": "Y", + "cacheable": 2, + "cacheDataPath": "personDefendant.driverNumber", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "0", + "max": "16", + "reference": "defendantDrivingLicenceNumber", + "welshLabel": "Rhif trwydded yrru'r Diffynnydd" }, { - "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", - "label": "Additional information", - "welshLabel": "Gwybodaeth ychwanegol", + "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", + "label": "Extension period section 35A (immediate custodial sentence)", "resultPromptRule": "optional", "type": "TXT", - "sequence": 500, - "financial": "N", - "reference": "additionalInformation", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 300, "userGroups": [], - "min": "1", - "max": "250", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "50", + "reference": "extensionPeriodSection35AImmediateCustodialSentence", + "welshLabel": "Cyfnod estyniad adran 35A (dedfryd o garchar ar unwaith)" } - ], - "welshLabel": "Preswylio", + ] + }, + { + "id": "f666fd58-36c5-493f-aa11-89714faee6e6", + "label": "Remand in care of Local Authority with bail direction", + "shortCode": "RILAB", + "level": "O", + "rank": 116200, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Community Requirement", - "cjsCode": "3107", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "B", "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "resultTextTemplate": "Residence Requirement: Live at[ {nameOfPlace},] {address} for {periodOfResidence}.[ {responsibleOfficerMayApproveDifferentAddress}.] {additionalInformation}", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "9bec5977-1796-4645-9b9e-687d4f23d37d", - "version": "2022-12-08T20:00:31.000Z", - "startDate": "2022-12-09", - "label": "Unpaid work", - "shortCode": "UPWR", - "level": "O", - "rank": 32000, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": true, + "publishedForNows": true, + "lifeDuration": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "5dc70e17-6095-4bd8-8597-36186e7eaba1", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", + "ruleType": "optional" + }, + { + "childResultDefinitionId": "874911d0-acf2-4b6f-bcca-cacbb6bb2862", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", + "ruleType": "mandatory" + }, + { + "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", + "ruleType": "optional" + } + ], "wordGroups": [ { "wordGroup": [ - "UPWR" + "RILAB" ] }, { "wordGroup": [ - "Unpaid", - "work" + "authority", + "bail", + "care", + "direction", + "LA", + "local", + "remand" ] } ], + "adjournment": "Y", + "category": "I", + "urgent": true, + "convicted": "N", + "d20": false, + "cjsCode": "4029", + "postHearingCustodyStatus": "L", + "jurisdiction": "B", + "libraCode": "RILAB", + "resultTextTemplate": "Remanded until %NEXH% in accommodation provided by the local authority for {nameOfLocalAuthority}[ subject to the following requirements: {requirementsImposedOnLocalAuthority}].[ Further requirements: {furtherReq}.] Basis: {remandBasis}.[ Adjournment reason: %ADJR%.] Directed to be bailed to {bailDate} at {bailTime} upon satisfying the following conditions: %PREBC%[ and subject to the following conditions: %BAIC%].[ Conditions imposed on the defendant: %LACOND%]", + "terminatesOffenceProceedings": false, "prompts": [ { - "id": "72413aef-ecb9-4e9b-a143-31d1e9c11584", - "label": "Number of hours", - "welshLabel": "Nifer yr oriau", + "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", + "label": "Remand basis", "resultPromptRule": "mandatory", - "type": "INT", + "type": "FIXL", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, "sequence": 100, - "duration": "Hours", - "financial": "N", - "reference": "numberOfHours", - "wordGroup": [ - "Hours" - ], + "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", "userGroups": [], - "min": "1", - "max": "999", "courtExtract": "Y", + "financial": "N", + "cacheable": 1, "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "remandBasis", + "welshLabel": "Sail remand" }, { - "id": "17fd32a7-344f-4a0e-a3ae-5b7868f11bcd", - "label": "Additional / concurrent to what", - "welshLabel": "Yn ogystal â / yn gydamserol â beth", + "id": "15f8330b-9554-4ea6-b75b-7e192724ca06", + "label": "Further requirements", "resultPromptRule": "optional", "type": "TXT", - "sequence": 200, - "financial": "N", - "reference": "additionalConcurrentToWhat", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 700, "userGroups": [], - "min": "1", - "max": "200", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, + "min": "1", + "max": "1000", + "reference": "furtherReq", + "welshLabel": "Gofynion pellach" + }, + { + "id": "f63f692f-3bfc-4d0f-8e45-acd99b06431c", + "label": "Local Authority", + "resultPromptRule": "mandatory", + "type": "FIXL", "nameEmail": false, - "associatedWithReferenceData": false + "referenceDataKey": "nameOfLocalAuthority", + "hidden": false, + "associateToReferenceData": true, + "sequence": 200, + "userGroups": [], + "courtExtract": "Y", + "financial": "N", + "cacheable": 2, + "jurisdiction": "B", + "min": "", + "max": "", + "reference": "nameOfLocalAuthority", + "welshLabel": "Awdurdod Lleol" }, { - "id": "c40f4a15-6edd-416d-bee2-df838e5f6e0a", - "label": "Additional information", - "welshLabel": "Gwybodaeth ychwanegol", + "id": "b275cca5-58a6-415c-9b67-b4277c7f7e6e", + "label": "Requirements imposed on Local Authority", "resultPromptRule": "optional", "type": "TXT", - "sequence": 300, - "financial": "N", - "reference": "additionalInformation", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 600, "userGroups": [], - "min": "1", - "max": "250", "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", + "min": "1", + "max": "1000", + "reference": "requirementsImposedOnLocalAuthority", + "welshLabel": "Gofynion a osodir ar Awdurdod Lleol" + }, + { + "id": "9ecac6aa-a205-481f-b67d-e2425ad074cf", + "label": "Bail date", + "resultPromptRule": "mandatory", + "type": "DATE", + "nameEmail": false, "hidden": false, + "associateToReferenceData": false, + "sequence": 400, + "userGroups": [], + "courtExtract": "Y", + "financial": "N", + "jurisdiction": "B", + "reference": "bailDate" + }, + { + "id": "e200e964-628a-4284-bd4e-fab9c819f7f1", + "label": "Bail time", + "resultPromptRule": "mandatory", + "type": "TIME", "nameEmail": false, - "associatedWithReferenceData": false + "hidden": false, + "associateToReferenceData": false, + "sequence": 500, + "userGroups": [], + "courtExtract": "Y", + "financial": "N", + "jurisdiction": "B", + "reference": "bailTime" } - ], - "welshLabel": "Gwaith di-dâl", + ] + }, + { + "id": "5dc70e17-6095-4bd8-8597-36186e7eaba1", + "label": "Remand to care conditions imposed on the defendant", + "shortCode": "LACOND", + "level": "O", + "rank": 700, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "Community Requirement", - "cjsCode": "3101", - "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": true, - "jurisdiction": "B", "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "resultTextTemplate": "Unpaid Work Requirement: Carry out unpaid work for {numberOfHours}[ Additional / concurrent to {additionalConcurrentToWhat}] within the next twelve months. This work will be supervised by the responsible officer. {additionalInformation}", - "isAvailableForCourtExtract": true, - "isBooleanResult": false - }, - { - "id": "dada120c-160a-49a9-b040-e8b6b7128d67", - "version": "2022-12-08T20:04:19.900Z", - "startDate": "2022-12-09", - "label": "Notification of electronic monitoring order (requirement)", - "shortCode": "NORDRC", - "level": "O", - "rank": 5900, - "wordGroups": [ + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, + "resultDefinitionRules": [ + { + "childResultDefinitionId": "671c65dc-8406-4923-bff2-e193a7fbd489", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "7c54ceff-9b16-448e-995a-053c6d47854c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6f2e2861-0ad4-4721-b0d2-65b1d5f16895", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "3b06d7a2-03e7-460d-8ce9-c8a48bc96040", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "d4bc7ce5-ad94-43dc-a3d6-558049380a6c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "e101f583-9ead-4c87-a1a4-d631d43517d3", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "c34f6cd8-60b2-4ca8-a150-c1aa88fb0bfa", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "db5e2bc8-13b4-4dd2-b1a0-aa130e62b4f0", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "6a84ebbd-d1e9-43cc-a3c3-a3b459d8cb5a", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "8bc69b99-359e-48a2-a353-66fe009b5507", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "bd77f0bc-11a5-4e08-abe5-697e27c9201e", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "4dcb9901-6539-4a4f-b894-f62b3ff51862", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "f68c277a-4f7d-4da5-bd8a-396e6671e05c", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "dffdac97-7b67-4ca7-b72b-7ea417e931c8", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "a65e4db1-e02a-489f-9f4e-2e38f77807c6", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "eb0260f2-c923-48c9-91e9-f4c97c9d37fe", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "5c7db83b-bfb4-4d0d-8c63-aa2513e756bb", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "30ff00bf-583d-48e4-ab13-34e4445443fb", + "ruleType": "atleastOneOf" + }, { - "wordGroup": [ - "NORDRC" - ] - } - ], - "prompts": [ + "childResultDefinitionId": "35f46562-ebb6-423a-99e2-1dd65c2e5f97", + "ruleType": "atleastOneOf" + }, { - "id": "a7cc84b3-0c62-440d-b2d3-f4b40ef13c99", - "label": "Continuation of electronic monitoring", - "welshLabel": "Parhau gyda monitro electronig", - "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 500, - "financial": "N", - "reference": "continuationOfElectronicMonitoring", - "wordGroup": [ - "continuation" - ], - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "childResultDefinitionId": "f2cab905-935b-49e5-9f82-badcfb6c6c60", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor organisation name", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorOrganisationName", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "OrganisationName", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "b1c731d5-a54c-4b9a-9c76-ad3dec4240ac", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 1", - "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress1", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "e363cb46-0e5c-479a-956f-c29acbb5b6ca", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress2", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "66017606-d552-4e06-a835-c0a1af03467a", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 3", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress3", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine3", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "6f8051e0-02fd-4c12-a229-a74e8a15076c", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 4", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress4", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine4", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "2751bd8f-897a-4aa0-b26d-b7bf7b18acff", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor address line 5", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorAddress5", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "AddressLine5", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "241746c2-1565-4de9-9915-bd65deda1453", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor post code", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", - "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorPostCode", - "userGroups": [], - "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "PostCode", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "childResultDefinitionId": "6656b25a-de49-4722-b21f-acebe07d4d1c", + "ruleType": "atleastOneOf" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor email address 1", + "childResultDefinitionId": "b258561d-ec34-42a6-9c8d-93ab64b59589", + "ruleType": "atleastOneOf" + }, + { + "childResultDefinitionId": "47fe1304-9772-43c2-bc3c-90a73b55a2d0", + "ruleType": "atleastOneOf" + } + ], + "wordGroups": [ + { + "wordGroup": [ + "LACOND" + ] + }, + { + "wordGroup": [ + "conditions", + "imposed" + ] + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "resultTextTemplate": "%AllChildText%.[ Reasons for Conditions: {reasonsForTheConditionsImposedOnTheDefendant}.]", + "welshLabel": "Remand i amodau gofal a osodir ar y diffynnydd", + "terminatesOffenceProceedings": false, + "prompts": [ + { + "id": "46026657-e495-4b4c-a47e-466fe49dfe2e", + "label": "Reasons for the conditions imposed on the defendant", "resultPromptRule": "mandatory", - "type": "NAMEADDRESS", + "type": "FIXLM", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorEmailAddress1", + "fixedListId": "8faf795a-5f70-418f-8104-f62e7b7f8e52", "userGroups": [], + "courtExtract": "Y", + "financial": "N", + "jurisdiction": "B", + "reference": "reasonsForTheConditionsImposedOnTheDefendant", + "welshLabel": "Rhesymau dros yr amodau a osodwyd ar y diffynnydd" + } + ] + }, + { + "id": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", + "label": "Electronic monitoring details", + "shortCode": "ELMONDET", + "level": "O", + "rank": 48800, + "isAvailableForCourtExtract": false, + "financial": "N", + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "lifeDuration": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "terminatesOffenceProceedings": false, + "prompts": [ + { + "id": "2d56a2cf-6159-40e6-b6c2-13b8192bcf62", + "label": "Defendant's mobile number", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 200, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", + "financial": "N", "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "EmailAddress1", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "min": "6", + "max": "15" }, { - "id": "92566757-ef79-4804-bced-c63ebb0937e7", - "label": "Electronic monitoring contractor email address 2", - "resultPromptRule": "optional", - "type": "NAMEADDRESS", + "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", + "label": "Electronic Monitoring Contractor responsible officer", + "resultPromptRule": "mandatory", + "type": "FIXL", "sequence": 100, - "financial": "N", - "reference": "electronicmonitoringcontractorEmailAddress2", - "userGroups": [], + "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", - "jurisdiction": "B", - "hidden": true, - "nameAddressType": "Organisation", - "componentLabel": "Electronic monitoring contractor", - "fixListLabel": "Select Electronic monitoring contractor", - "referenceDataKey": "electronicmonitoringcontractor", - "partName": "EmailAddress2", - "nameEmail": true, - "cacheable": 2, - "associatedWithReferenceData": true + "financial": "N", + "jurisdiction": "B" }, { - "id": "c1503a10-f976-4d79-8073-3bc63b9d0641", - "label": "Special needs", - "welshLabel": "Anghenion arbennig", - "resultPromptRule": "optional", + "id": "52056247-a158-4b8b-b2d7-0f92bab219e0", + "label": "Interpreter used - language", + "resultPromptRule": "oneOf", "type": "TXT", - "sequence": 1100, - "financial": "N", - "reference": "specialNeeds", - "userGroups": [], - "min": "1", - "max": "120", + "sequence": 300, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "60" }, { - "id": "f6ca6307-bdab-42d3-968b-44485824b535", - "label": "Are there any additional requirements as well?", - "welshLabel": "A oes unrhyw ofynion ychwanegol hefyd?", - "resultPromptRule": "mandatory", + "id": "6bc228a4-7e28-4b93-a1e9-96432137c696", + "label": "Interpreter not used", + "resultPromptRule": "oneOf", "type": "BOOLEAN", - "sequence": 600, - "financial": "N", - "reference": "areThereAnyAdditionalRequirementsAsWell", - "userGroups": [], + "sequence": 400, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "financial": "N", + "jurisdiction": "B" }, { - "id": "5a386999-b2d9-45f4-9b68-57000ba2d6ef", + "id": "4415f5e3-35bc-49ee-8ce4-acb36b91667c", "label": "Does the offender have any special needs?", - "welshLabel": "A oes gan y troseddwr unrhyw anghenion arbennig?", "resultPromptRule": "mandatory", "type": "BOOLEAN", - "sequence": 1000, + "sequence": 500, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], + "courtExtract": "N", "financial": "N", - "reference": "doesTheOffenderHaveAnySpecialNeeds", - "userGroups": [], + "jurisdiction": "B" + }, + { + "id": "8e29f329-28d3-442c-8470-2a215521b60a", + "label": "Description of special needs", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 600, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "1000" }, { - "id": "5ce30920-b300-471c-8fd7-67f3a193476a", - "label": "First notification of electronic monitoring", - "welshLabel": "Hysbysiad cyntaf o fonitro electronig", - "resultPromptRule": "oneOf", + "id": "13058f22-0324-415a-8cdf-f11b64488167", + "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are addtional requirements as well", + "resultPromptRule": "optional", "type": "BOOLEAN", - "sequence": 200, - "financial": "N", - "reference": "firstNotificationOfElectronicMonitoring", - "userGroups": [], + "sequence": 700, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "financial": "N", + "jurisdiction": "B" }, { - "id": "c7d508e9-1ea0-4a41-9961-703a5d164b6f", - "label": "Language", - "welshLabel": "Iaith", + "id": "c024016d-b79e-4bbe-8c15-b7a2acadca9e", + "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are NO addtional requirements", "resultPromptRule": "optional", - "type": "FIXL", - "sequence": 900, - "financial": "N", - "reference": "language", - "userGroups": [], - "min": "1", - "max": "60", + "type": "BOOLEAN", + "sequence": 800, + "userGroups": [ + "Court Clerks", + "Legal Advisers" + ], "courtExtract": "N", - "jurisdiction": "B", - "hidden": false, - "referenceDataKey": "language", - "nameEmail": false, - "associatedWithReferenceData": true + "financial": "N", + "jurisdiction": "B" + } + ] + }, + { + "id": "7c54ceff-9b16-448e-995a-053c6d47854c", + "label": "Must stay indoors at home address (or at any other address allowed by the court) between the times specified and present him/herself to a police officer between these times", + "shortCode": "STAYDS", + "level": "O", + "rank": 118200, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, + "financial": "N", + "unscheduled": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, + "wordGroups": [ + { + "wordGroup": [ + "STAYDS" + ] }, { - "id": "9cae4974-5cf4-4701-ae3a-74f8d586b16d", - "label": "Additional notification of electronic monitoring. Date and case reference of original order", - "welshLabel": "Hysbysiad ychwanegol o fonitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 400, - "financial": "N", - "reference": "additionalNotificationOfElectronicMonitoringDateOfOriginalOrder", + "wordGroup": [ + "address", + "home", + "indoors", + "police", + "present", + "stay" + ] + } + ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "ConditionsImposedOnDefendant", + "qualifier": "JE", + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "resultTextTemplate": "Must stay indoors at home address (or at any other address allowed by the court) between {excusedTimeFrom} and {and} {frequencyOfCurfew}[. Additional Information: {additionalInformation}]", + "welshLabel": "Rhaid aros y tu fewn yn y cyfeiriad cartref (neu mewn unrhyw gyfeiriad arall a ganiateir gan y llys) rhwng yr amseroedd a nodwyd a'i gyflwyno ei hun i swyddog heddlu rhwng yr amseroedd hyn", + "terminatesOffenceProceedings": false, + "prompts": [ + { + "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", + "label": "And", + "resultPromptRule": "mandatory", + "type": "TIME", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 200, "userGroups": [], - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "and", + "welshLabel": "Ac" }, { - "id": "efffc361-7cca-40a5-a436-a1fdb590e8be", - "label": "Variation of electronic monitoring. Date and case reference of original order", - "welshLabel": "Amrywio monitro electronig. Dyddiad a chyfeirnod achos y gorchymyn gwreiddiol", - "resultPromptRule": "oneOf", + "id": "6e27fcf9-1bf0-4e27-9ed5-6cdd1bf1ca68", + "label": "Frequency of curfew", + "resultPromptRule": "mandatory", "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, "sequence": 300, - "financial": "N", - "reference": "variationOfElectronicMonitoringDateOfOriginalOrder", "userGroups": [], - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "min": "1", + "max": "30", + "reference": "frequencyOfCurfew", + "welshLabel": "Amledd cyrffyw" }, { - "id": "cdc4f47c-612d-4f81-b321-a2b5861d6e19", - "label": "Was an interpreter used?", - "welshLabel": "A oedd cyfieithydd yn bresennol?", + "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", + "label": "Between", "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 800, - "financial": "N", - "reference": "wasAnInterpreterUsed", + "type": "TIME", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 100, "userGroups": [], - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "associatedWithReferenceData": false + "reference": "excusedTimeFrom", + "welshLabel": "Rhwng" }, { - "id": "380d5917-d860-4c6a-9fde-d5e7e1923331", - "label": "Defendant's mobile number", - "welshLabel": "Rhif ffôn symudol y diffynnydd", + "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", + "label": "Additional information", "resultPromptRule": "optional", - "type": "INT", - "sequence": 700, - "financial": "N", - "reference": "defendantsMobileNumber", + "type": "TXT", + "nameEmail": false, + "hidden": false, + "associateToReferenceData": false, + "sequence": 400, "userGroups": [], - "min": "1", - "max": "20", - "courtExtract": "N", + "courtExtract": "Y", + "financial": "N", "jurisdiction": "B", - "hidden": false, - "nameEmail": false, - "cacheable": 2, - "cacheDataPath": "personDefendant.personDetails.contact.mobile", - "associatedWithReferenceData": false + "min": "1", + "max": "1000", + "reference": "additionalInformation", + "welshLabel": "Gwybodaeth ychwanegol" } - ], - "welshLabel": "Hysbysiad o orchymyn monitro electronig (gofyniad)", + ] + }, + { + "id": "69ff04d5-84e8-4a61-8478-82c2999c1969", + "label": "To attend or a warrant to issue", + "shortCode": "AWI", + "level": "O", + "rank": 22600, + "isBooleanResult": false, + "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "publishedAsAPrompt": true, + "excludedFromResults": false, + "alwaysPublished": false, + "rollUpPrompts": false, + "publishedForNows": true, + "lifeDuration": false, + "wordGroups": [ + { + "wordGroup": [ + "AWI" + ] + }, + { + "wordGroup": [ + "warrant", + "attend" + ] + } + ], "adjournment": "N", "category": "A", "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "Community requirements,ELMON", + "resultDefinitionGroup": "Adjournment reasons", + "qualifier": "GE", "postHearingCustodyStatus": "A", - "terminatesOffenceProceedings": false, - "lifeDuration": false, - "rollUpPrompts": false, - "publishedForNows": true, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, "jurisdiction": "B", - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "isAvailableForCourtExtract": false, - "isBooleanResult": false + "userGroups": [], + "resultTextTemplate": "%ResultLabel%", + "resultWording": "", + "welshLabel": "Codi neu gyhoeddi gwarant", + "terminatesOffenceProceedings": false }, { - "id": "b2d06bbc-e90e-4df8-8851-6e4a70894828", - "label": "Obligatory disqualification", - "shortCode": "DDO", + "id": "3c98b287-fd01-471a-ac34-e0a56d9e95c2", + "label": "Exclusion - not to sit in the front seat of any motor vehicle", + "shortCode": "PORE10", "level": "O", - "rank": 67200, + "rank": 88300, "isBooleanResult": false, "isAvailableForCourtExtract": true, "financial": "N", "unscheduled": false, "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "publishedAsAPrompt": false, + "publishedAsAPrompt": true, "excludedFromResults": false, "alwaysPublished": false, - "rollUpPrompts": true, - "publishedForNows": false, + "rollUpPrompts": false, + "publishedForNows": true, "lifeDuration": false, - "resultDefinitionRules": [ + "wordGroups": [ { - "childResultDefinitionId": "429fb553-4fb3-45eb-a700-7e5e69d1ca29", - "ruleType": "mandatory" + "wordGroup": [ + "PORE10" + ] }, { - "childResultDefinitionId": "ea1ee5a4-be13-48dc-8411-78f22e01c236", - "ruleType": "optional" + "wordGroup": [ + "front", + "seat", + "Exclusion" + ] } ], + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Bail conditions", + "qualifier": "RD", + "postHearingCustodyStatus": "A", + "jurisdiction": "B", + "userGroups": [], + "resultTextTemplate": "%ResultLabel%", + "welshLabel": "Gwahardd - i beidio ag eistedd yn sedd flaen unrhyw gerbyd modur", + "terminatesOffenceProceedings": false + }, + { + "id": "3c03001c-56b3-4c64-bc0f-a3c57c3f424f", + "version": "2023-04-15T22:07:30.368Z", + "startDate": "2023-04-16", + "label": "Committed to Crown Court for sentence on unconditional bail", + "shortCode": "CCSU", + "level": "O", + "rank": 104500, "wordGroups": [ { "wordGroup": [ - "DDO", - "obligatory", - "disqualification" + "CCSU" ] }, { "wordGroup": [ - "DDO" + "Committed", + "sentence", + "unconditional" ] } ], - "adjournment": "N", - "category": "A", - "urgent": true, - "convicted": "Y", - "d20": true, - "cjsCode": "3070", - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "libraCode": "DDO", - "lCode": "DDO", - "resultTextTemplate": "Disqualified for holding or obtaining a driving licence for {disqualificationPeriod}.[ %DOID%.] Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988.[ This includes an extension period of {extensionPeriodSection35AImmediateCustodialSentence} in accordance with section 35A (immediate custodial sentence).][ This includes an extension period of {extensionPeriodSection35BEffectOfCustodialSentenceNoted} in accordance with section 35B (effect of custodial sentence noted).]", - "resultWording": "Disqualified for holding or obtaining a driving licence. Disqualification obligatory for the offence. Driving record endorsed. Section 34(1) Road Traffic Offenders Act 1988", - "welshResultWording": "Gwahardd rhag dal neu gael trwydded yrru. Gwaharddiad yn orfodol ar gyfer y trosedd. Cofnod gyrru wedi’i ardystio. Adran 34(1) Deddf Troseddwyr Traffig Ffyrdd 1988", - "terminatesOffenceProceedings": false, "prompts": [ { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", + "id": "4d10cd4b-fb39-40dd-88e1-2397832bc914", + "label": "Bail remand days to count (tagged days)", + "welshLabel": "Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)", "resultPromptRule": "mandatory", "type": "INT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "duration": "Years", - "welshDuration": "Flynedd", - "userGroups": [], + "sequence": 200, + "financial": "N", + "reference": "bailRemandDaysToCountTaggedDays", "wordGroup": [ - "Years" + "Tagged days" ], - "courtExtract": "Y", - "financial": "N", + "userGroups": [], + "min": "0", + "max": "999", + "courtExtract": "N", "jurisdiction": "B", - "reference": "disqualificationPeriod", - "welshLabel": "Cyfnod gwahardd", - "durationSequence": 1 + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", - "resultPromptRule": "mandatory", - "type": "INT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "duration": "Months", - "welshDuration": "Mis", - "userGroups": [], + "id": "654fce8c-238a-468a-92db-f7509394cf08", + "label": "A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on", + "welshLabel": "Gwnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999 ar", + "resultPromptRule": "optional", + "type": "DATE", + "sequence": 400, + "financial": "N", + "reference": "aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn", "wordGroup": [ - "months" + "Reporting", + "Restriction" ], + "userGroups": [], "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "reference": "disqualificationPeriod", - "welshLabel": "Cyfnod gwahardd", - "durationSequence": 1 + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "2bf54447-328c-4c1b-a123-341adbd52172", - "label": "Disqualification period", + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified organisation name", "resultPromptRule": "mandatory", - "type": "INT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "duration": "Days", - "welshDuration": "Niwrnod", + "type": "NAMEADDRESS", + "sequence": 900, + "financial": "N", + "reference": "probationyottobenotifiedOrganisationName", "userGroups": [], - "wordGroup": [ - "Days" - ], - "courtExtract": "Y", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "OrganisationName", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true + }, + { + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified address line 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 900, "financial": "N", + "reference": "probationyottobenotifiedAddress1", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "reference": "disqualificationPeriod", - "welshLabel": "Cyfnod gwahardd", - "durationSequence": 1 + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "AddressLine1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "0143f821-7cab-4e53-a00b-2fd1c3dc8204", - "label": "Extension period section 35B (effect of custodial sentence noted)", + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified address line 2", "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 400, - "userGroups": [], - "courtExtract": "Y", + "type": "NAMEADDRESS", + "sequence": 900, "financial": "N", + "reference": "probationyottobenotifiedAddress2", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "min": "1", - "max": "50", - "reference": "extensionPeriodSection35BEffectOfCustodialSentenceNoted", - "welshLabel": "Cyfnod estyniad adran 35B (effaith dedfryd o garchar wedi’i nodi)" + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "AddressLine2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "a593ae4a-9d69-45b9-9585-c11aeed28404", - "label": "Defendant driving licence number", + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified address line 3", "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 500, - "userGroups": [ - "CPS", - "Defence", - "NCES", - "Probation", - "Judiciary", - "Prosecuting Authorities", - "YOTs" - ], - "courtExtract": "N", + "type": "NAMEADDRESS", + "sequence": 900, "financial": "N", - "cacheable": 2, - "cacheDataPath": "personDefendant.driverNumber", + "reference": "probationyottobenotifiedAddress3", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "min": "0", - "max": "16", - "reference": "defendantDrivingLicenceNumber", - "welshLabel": "Rhif trwydded yrru'r Diffynnydd" + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "AddressLine3", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "81638260-3cd1-41e7-9725-c8e91e23bda1", - "label": "Extension period section 35A (immediate custodial sentence)", + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified address line 4", "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 300, - "userGroups": [], - "courtExtract": "Y", + "type": "NAMEADDRESS", + "sequence": 900, "financial": "N", + "reference": "probationyottobenotifiedAddress4", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "min": "1", - "max": "50", - "reference": "extensionPeriodSection35AImmediateCustodialSentence", - "welshLabel": "Cyfnod estyniad adran 35A (dedfryd o garchar ar unwaith)" - } - ] - }, - { - "id": "f666fd58-36c5-493f-aa11-89714faee6e6", - "label": "Remand in care of Local Authority with bail direction", - "shortCode": "RILAB", - "level": "O", - "rank": 116200, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, - "financial": "N", - "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": true, - "publishedForNows": true, - "lifeDuration": false, - "resultDefinitionRules": [ - { - "childResultDefinitionId": "5dc70e17-6095-4bd8-8597-36186e7eaba1", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "7fc17a01-2f5a-4433-aae9-28e0c959f73b", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "8cf3b54b-bec8-4bcf-aac4-62561dcc8080", - "ruleType": "optional" - }, - { - "childResultDefinitionId": "874911d0-acf2-4b6f-bcca-cacbb6bb2862", - "ruleType": "mandatory" + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "AddressLine4", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", - "ruleType": "mandatory" + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 900, + "financial": "N", + "reference": "probationyottobenotifiedAddress5", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "AddressLine5", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", - "ruleType": "mandatory" + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified post code", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 900, + "financial": "N", + "reference": "probationyottobenotifiedPostCode", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "PostCode", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "66105417-41c8-420d-820f-40b61b507442", - "ruleType": "optional" - } - ], - "wordGroups": [ - { - "wordGroup": [ - "RILAB" - ] + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified email address 1", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 900, + "financial": "N", + "reference": "probationyottobenotifiedEmailAddress1", + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "EmailAddress1", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "wordGroup": [ - "authority", - "bail", - "care", - "direction", - "LA", - "local", - "remand" - ] - } - ], - "adjournment": "Y", - "category": "I", - "urgent": true, - "convicted": "N", - "d20": false, - "cjsCode": "4029", - "postHearingCustodyStatus": "L", - "jurisdiction": "B", - "libraCode": "RILAB", - "resultTextTemplate": "Remanded until %NEXH% in accommodation provided by the local authority for {nameOfLocalAuthority}[ subject to the following requirements: {requirementsImposedOnLocalAuthority}].[ Further requirements: {furtherReq}.] Basis: {remandBasis}.[ Adjournment reason: %ADJR%.] Directed to be bailed to {bailDate} at {bailTime} upon satisfying the following conditions: %PREBC%[ and subject to the following conditions: %BAIC%].[ Conditions imposed on the defendant: %LACOND%]", - "terminatesOffenceProceedings": false, - "prompts": [ - { - "id": "49f9ee68-3dee-4ed1-8020-377818c3697f", - "label": "Remand basis", - "resultPromptRule": "mandatory", - "type": "FIXL", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "fixedListId": "4954dd1c-f218-11e8-8eb2-f2801f1b9fd1", - "userGroups": [], - "courtExtract": "Y", + "id": "714cfc3a-c860-49e0-a775-32fa7a1540db", + "label": "Probation / YOT to be notified email address 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 900, "financial": "N", - "cacheable": 1, + "reference": "probationyottobenotifiedEmailAddress2", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "reference": "remandBasis", - "welshLabel": "Sail remand" + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Probation / YOT to be notified", + "fixListLabel": "Select Probation / YOT to be notified", + "referenceDataKey": "probationyottobenotified", + "partName": "EmailAddress2", + "nameEmail": true, + "cacheable": 2, + "associatedWithReferenceData": true }, { - "id": "15f8330b-9554-4ea6-b75b-7e192724ca06", - "label": "Further requirements", - "resultPromptRule": "optional", - "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 700, + "id": "f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6", + "label": "Victim wishes to read victim personal statement to court", + "welshLabel": "Dioddefwr yn dymuno darllen datganiad personol dioddefwyr i'r llys", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 600, + "financial": "N", + "reference": "victimWishesToReadVictimPersonalStatementToCourt", "userGroups": [], "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "min": "1", - "max": "1000", - "reference": "furtherReq", - "welshLabel": "Gofynion pellach" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "f63f692f-3bfc-4d0f-8e45-acd99b06431c", - "label": "Local Authority", + "id": "ed26a92b-0850-435b-a4c7-2c77baaea4b3", + "label": "PSR ordered", "resultPromptRule": "mandatory", - "type": "FIXL", - "nameEmail": false, - "referenceDataKey": "nameOfLocalAuthority", - "hidden": false, - "associateToReferenceData": true, - "sequence": 200, + "type": "BOOLEAN", + "sequence": 800, + "financial": "N", + "reference": "pSROrdered", "userGroups": [], "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "583ea6cb-4251-406e-b07a-445fb0dde914", + "label": "Victim personal statement to be presented to court by prosecutor or other person", + "welshLabel": "Datganiad personol i ddioddefwyr i'w gyflwyno i'r llys gan erlynydd neu unigolyn arall", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 500, "financial": "N", - "cacheable": 2, + "reference": "victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson", + "userGroups": [], + "courtExtract": "Y", "jurisdiction": "B", - "min": "", - "max": "", - "reference": "nameOfLocalAuthority", - "welshLabel": "Awdurdod Lleol" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "b275cca5-58a6-415c-9b67-b4277c7f7e6e", - "label": "Requirements imposed on Local Authority", + "id": "e2b9a67c-cbd8-4479-89ff-57b2b6632835", + "label": "Additional considerations re victim personal statement", + "welshLabel": "Ystyriaethau ychwanegol mewn perthynas â datganiad personol dioddefwyr", "resultPromptRule": "optional", "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 600, + "sequence": 750, + "financial": "N", + "reference": "additionalDetailsReVictimPersonalStatement", "userGroups": [], + "min": "1", + "max": "250", "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "min": "1", - "max": "1000", - "reference": "requirementsImposedOnLocalAuthority", - "welshLabel": "Gofynion a osodir ar Awdurdod Lleol" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "9ecac6aa-a205-481f-b67d-e2425ad074cf", - "label": "Bail date", - "resultPromptRule": "mandatory", - "type": "DATE", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 400, + "id": "07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8", + "label": "No indication given re victim personal statement", + "welshLabel": "Ni roddwyd unrhyw arwydd o ddatganiad personol dioddefwyr", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 700, + "financial": "N", + "reference": "noIndicationGivenReVictimPersonalStatement", "userGroups": [], "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "d7d2c7b1-f27a-44ed-a227-ea9b917f0229", + "label": "No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made", + "welshLabel": "Ni wnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999", + "resultPromptRule": "optional", + "type": "BOOLEAN", + "sequence": 300, "financial": "N", + "reference": "noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade", + "userGroups": [], + "courtExtract": "Y", "jurisdiction": "B", - "reference": "bailDate" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "e200e964-628a-4284-bd4e-fab9c819f7f1", - "label": "Bail time", + "id": "5e9f69e4-299d-41e0-93ef-b7523df86954", + "label": "Committed", + "welshLabel": "Traddodwyd", "resultPromptRule": "mandatory", - "type": "TIME", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 500, + "type": "FIXL", + "sequence": 50, + "financial": "N", + "reference": "committed", + "fixedListId": "bf4e33b1-8b6b-4de8-9b1b-e83cb4f3d6d7", "userGroups": [], "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "reference": "bailTime" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false } - ] - }, - { - "id": "5dc70e17-6095-4bd8-8597-36186e7eaba1", - "label": "Remand to care conditions imposed on the defendant", - "shortCode": "LACOND", - "level": "O", - "rank": 700, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, + ], + "welshLabel": "Traddodi i Lys y Goron ar gyfer dedfryd ar fechnïaeth ddiamod", "financial": "N", "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "publishedAsAPrompt": true, + "adjournment": "Y", + "category": "I", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "CommittedToCC", + "cjsCode": "4014", + "postHearingCustodyStatus": "U", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": true, + "publishedAsAPrompt": false, "excludedFromResults": false, "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, + "jurisdiction": "M", + "libraCode": "CCSU", "resultDefinitionRules": [ { - "childResultDefinitionId": "671c65dc-8406-4923-bff2-e193a7fbd489", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "7c54ceff-9b16-448e-995a-053c6d47854c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6f2e2861-0ad4-4721-b0d2-65b1d5f16895", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "3b06d7a2-03e7-460d-8ce9-c8a48bc96040", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "d4bc7ce5-ad94-43dc-a3d6-558049380a6c", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "e101f583-9ead-4c87-a1a4-d631d43517d3", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "c34f6cd8-60b2-4ca8-a150-c1aa88fb0bfa", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "db5e2bc8-13b4-4dd2-b1a0-aa130e62b4f0", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "6a84ebbd-d1e9-43cc-a3c3-a3b459d8cb5a", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "8bc69b99-359e-48a2-a353-66fe009b5507", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "bd77f0bc-11a5-4e08-abe5-697e27c9201e", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "4dcb9901-6539-4a4f-b894-f62b3ff51862", - "ruleType": "atleastOneOf" - }, - { - "childResultDefinitionId": "f68c277a-4f7d-4da5-bd8a-396e6671e05c", - "ruleType": "atleastOneOf" - }, + "childResultDefinitionId": "f00359b5-7303-403b-b59e-0b1a1daa89bc", + "ruleType": "mandatory" + } + ], + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "Committed {committed} for %NEXH%. Bail remand days to count (tagged days): {bailRemandDaysToCountTaggedDays}.[ {noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade}.][ A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on {aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn}.][ {victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson}.][ {victimWishesToReadVictimPersonalStatementToCourt}.][ {noIndicationGivenReVictimPersonalStatement}.][ Additional considerations re victim personal statement: {additionalDetailsReVictimPersonalStatement}.] {pSROrdered}", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "c36fed37-b635-4303-b514-2273e9e2594d", + "version": "2023-04-15T22:05:45.733Z", + "startDate": "2023-04-16", + "label": "Entered in error", + "shortCode": "ERR", + "level": "O", + "rank": 97500, + "wordGroups": [ { - "childResultDefinitionId": "dffdac97-7b67-4ca7-b72b-7ea417e931c8", - "ruleType": "atleastOneOf" + "wordGroup": [ + "ERR" + ] }, { - "childResultDefinitionId": "a65e4db1-e02a-489f-9f4e-2e38f77807c6", - "ruleType": "atleastOneOf" - }, + "wordGroup": [ + "error", + "entered" + ] + } + ], + "prompts": [ { - "childResultDefinitionId": "eb0260f2-c923-48c9-91e9-f4c97c9d37fe", - "ruleType": "atleastOneOf" - }, + "id": "af38d17b-46de-4dbb-a5c7-14ac36905c89", + "label": "Reason", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 100, + "financial": "N", + "reference": "reason", + "userGroups": [], + "min": "1", + "max": "250", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "financial": "N", + "unscheduled": false, + "adjournment": "N", + "category": "F", + "urgent": false, + "convicted": "N", + "d20": false, + "cjsCode": "4583", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": true, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": false, + "jurisdiction": "B", + "lCode": "ERR\nERRF", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "[Reason: {reason}]", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "fbed768b-ee95-4434-87c8-e81cbc8d24c9", + "version": "2023-04-15T22:05:25.054Z", + "startDate": "2023-04-16", + "label": "Next hearing in Crown Court", + "shortCode": "NHCCS", + "level": "O", + "rank": 18500, + "wordGroups": [ { - "childResultDefinitionId": "5c7db83b-bfb4-4d0d-8c63-aa2513e756bb", - "ruleType": "atleastOneOf" - }, + "wordGroup": [ + "NHCCS" + ] + } + ], + "prompts": [ { - "childResultDefinitionId": "30ff00bf-583d-48e4-ab13-34e4445443fb", - "ruleType": "atleastOneOf" + "id": "46257d78-1cbf-42b0-a24b-206826fecfb9", + "label": "Date and time to be fixed", + "welshLabel": "Dyddiad ac amser i’w bennu", + "resultPromptRule": "oneOf", + "type": "BOOLEAN", + "sequence": 100, + "financial": "N", + "reference": "dateToBeFixed", + "wordGroup": [ + "Date to be fixed" + ], + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "35f46562-ebb6-423a-99e2-1dd65c2e5f97", - "ruleType": "atleastOneOf" + "id": "bbc84e23-2543-4211-858f-59ae97800f5a", + "label": "Reserved Judiciary", + "welshLabel": "Y Farnwriaeth wrth gefn", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1000, + "financial": "N", + "reference": "reservedJudiciary", + "wordGroup": [ + "Reserved" + ], + "userGroups": [], + "courtExtract": "N", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "f2cab905-935b-49e5-9f82-badcfb6c6c60", - "ruleType": "atleastOneOf" + "id": "3e7ae7bd-f736-4729-ab06-82bf966bc72f", + "label": "Week Commencing", + "welshLabel": "Wythnos yn dechrau", + "resultPromptRule": "oneOf", + "type": "DATE", + "sequence": 300, + "financial": "N", + "reference": "weekCommencing", + "wordGroup": [ + "week commencing" + ], + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "b1c731d5-a54c-4b9a-9c76-ad3dec4240ac", - "ruleType": "atleastOneOf" + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": "Amcangyfrif amser", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Weeks", + "financial": "N", + "reference": "HEST", + "userGroups": [], + "welshDuration": "Wythnos", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "e363cb46-0e5c-479a-956f-c29acbb5b6ca", - "ruleType": "atleastOneOf" + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": "Amcangyfrif amser", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Days", + "financial": "N", + "reference": "HEST", + "userGroups": [], + "welshDuration": "Niwrnod", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "66017606-d552-4e06-a835-c0a1af03467a", - "ruleType": "atleastOneOf" + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": "Amcangyfrif amser", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Hours", + "financial": "N", + "reference": "HEST", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "6f8051e0-02fd-4c12-a229-a74e8a15076c", - "ruleType": "atleastOneOf" + "id": "d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac", + "label": "Estimated duration", + "welshLabel": "Amcangyfrif amser", + "resultPromptRule": "mandatory", + "type": "INT", + "sequence": 800, + "duration": "Minutes", + "financial": "N", + "reference": "HEST", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "childResultDefinitionId": "2751bd8f-897a-4aa0-b26d-b7bf7b18acff", - "ruleType": "atleastOneOf" + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse organisation name", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEOrganisationName", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "OrganisationName", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "241746c2-1565-4de9-9915-bd65deda1453", - "ruleType": "atleastOneOf" + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 1", + "resultPromptRule": "mandatory", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEAddress1", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine1", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "6656b25a-de49-4722-b21f-acebe07d4d1c", - "ruleType": "atleastOneOf" + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEAddress2", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine2", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "b258561d-ec34-42a6-9c8d-93ab64b59589", - "ruleType": "atleastOneOf" + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 3", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEAddress3", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine3", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "childResultDefinitionId": "47fe1304-9772-43c2-bc3c-90a73b55a2d0", - "ruleType": "atleastOneOf" - } - ], - "wordGroups": [ - { - "wordGroup": [ - "LACOND" - ] + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 4", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEAddress4", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine4", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "wordGroup": [ - "conditions", - "imposed" - ] - } - ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "resultTextTemplate": "%AllChildText%.[ Reasons for Conditions: {reasonsForTheConditionsImposedOnTheDefendant}.]", - "welshLabel": "Remand i amodau gofal a osodir ar y diffynnydd", - "terminatesOffenceProceedings": false, - "prompts": [ - { - "id": "46026657-e495-4b4c-a47e-466fe49dfe2e", - "label": "Reasons for the conditions imposed on the defendant", - "resultPromptRule": "mandatory", - "type": "FIXLM", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "fixedListId": "8faf795a-5f70-418f-8104-f62e7b7f8e52", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse address line 5", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, + "financial": "N", + "reference": "hCHOUSEAddress5", "userGroups": [], + "min": "", + "max": "", "courtExtract": "Y", - "financial": "N", "jurisdiction": "B", - "reference": "reasonsForTheConditionsImposedOnTheDefendant", - "welshLabel": "Rhesymau dros yr amodau a osodwyd ar y diffynnydd" - } - ] - }, - { - "id": "3ec4f7a9-50e8-4e9f-90ad-fd8c411b7ed2", - "label": "Electronic monitoring details", - "shortCode": "ELMONDET", - "level": "O", - "rank": 48800, - "isAvailableForCourtExtract": false, - "financial": "N", - "publishedAsAPrompt": false, - "excludedFromResults": false, - "alwaysPublished": false, - "lifeDuration": false, - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "terminatesOffenceProceedings": false, - "prompts": [ + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "AddressLine5", + "nameEmail": false, + "associatedWithReferenceData": true + }, { - "id": "2d56a2cf-6159-40e6-b6c2-13b8192bcf62", - "label": "Defendant's mobile number", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse post code", "resultPromptRule": "optional", - "type": "TXT", - "sequence": 200, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "type": "NAMEADDRESS", + "sequence": 500, "financial": "N", + "reference": "hCHOUSEPostCode", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "Y", "jurisdiction": "B", - "min": "6", - "max": "15" + "hidden": false, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "PostCode", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "id": "a5711a6c-18d0-4339-a37e-4796ab9f304d", - "label": "Electronic Monitoring Contractor responsible officer", - "resultPromptRule": "mandatory", - "type": "FIXL", - "sequence": 100, - "fixedListId": "b1d843c0-3737-11e8-b467-0ed5f89f718b", - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse email address 1", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, "financial": "N", - "jurisdiction": "B" + "reference": "hCHOUSEEmailAddress1", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "N", + "jurisdiction": "B", + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "EmailAddress1", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "id": "52056247-a158-4b8b-b2d7-0f92bab219e0", - "label": "Interpreter used - language", - "resultPromptRule": "oneOf", - "type": "TXT", - "sequence": 300, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "id": "66868c04-72c4-46d9-a4fc-860a82107475", + "label": "Courthouse email address 2", + "resultPromptRule": "optional", + "type": "NAMEADDRESS", + "sequence": 500, "financial": "N", + "reference": "hCHOUSEEmailAddress2", + "userGroups": [], + "min": "", + "max": "", + "courtExtract": "N", "jurisdiction": "B", - "min": "1", - "max": "60" + "hidden": true, + "nameAddressType": "Organisation", + "componentLabel": "Courthouse", + "fixListLabel": "Select Courthouse", + "referenceDataKey": "hCHOUSE", + "partName": "EmailAddress2", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "id": "6bc228a4-7e28-4b93-a1e9-96432137c696", - "label": "Interpreter not used", + "id": "aea2ee79-47b4-4023-9a95-1b327e6e03d5", + "label": "Fixed Date", + "welshLabel": "Dyddiad Penodol", "resultPromptRule": "oneOf", - "type": "BOOLEAN", - "sequence": 400, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "type": "DATE", + "sequence": 200, "financial": "N", - "jurisdiction": "B" + "reference": "fixedDate", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "C", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "4415f5e3-35bc-49ee-8ce4-acb36b91667c", - "label": "Does the offender have any special needs?", + "id": "c1116d12-dd35-4171-807a-2cb845357d22", + "label": "Hearing type", + "welshLabel": "Math o wrandawiad", "resultPromptRule": "mandatory", - "type": "BOOLEAN", - "sequence": 500, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "type": "TXT", + "sequence": 700, "financial": "N", - "jurisdiction": "B" + "reference": "HTYPE", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "8e29f329-28d3-442c-8470-2a215521b60a", - "label": "Description of special needs", + "id": "49ec9b26-dd63-4637-b2e9-55ba9948a90f", + "label": "Courtroom", + "welshLabel": "Ystafell Llys", "resultPromptRule": "optional", - "type": "TXT", + "type": "INT", "sequence": 600, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", "financial": "N", - "jurisdiction": "B", + "reference": "HCROOM", + "userGroups": [], "min": "1", - "max": "1000" + "max": "99", + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "referenceDataKey": "HCROOM", + "nameEmail": false, + "associatedWithReferenceData": true }, { - "id": "13058f22-0324-415a-8cdf-f11b64488167", - "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are addtional requirements as well", + "id": "a0ec3e68-5210-422f-9959-73c1c7ce495a", + "label": "Existing Hearing Id", + "welshLabel": "ID Gwrandawiad Presennol", "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 700, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], - "courtExtract": "N", + "type": "TXT", + "sequence": 900, "financial": "N", - "jurisdiction": "B" - }, - { - "id": "c024016d-b79e-4bbe-8c15-b7a2acadca9e", - "label": "Where electronic monitoring in this matter relates to youth or community requirements - There are NO addtional requirements", - "resultPromptRule": "optional", - "type": "BOOLEAN", - "sequence": 800, - "userGroups": [ - "Court Clerks", - "Legal Advisers" - ], + "reference": "existingHearingId", + "userGroups": [], "courtExtract": "N", - "financial": "N", - "jurisdiction": "B" - } - ] - }, - { - "id": "7c54ceff-9b16-448e-995a-053c6d47854c", - "label": "Must stay indoors at home address (or at any other address allowed by the court) between the times specified and present him/herself to a police officer between these times", - "shortCode": "STAYDS", - "level": "O", - "rank": 118200, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, - "financial": "N", - "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, - "wordGroups": [ - { - "wordGroup": [ - "STAYDS" - ] + "jurisdiction": "B", + "hidden": true, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "wordGroup": [ - "address", - "home", - "indoors", - "police", - "present", - "stay" - ] - } - ], - "adjournment": "N", - "category": "A", - "urgent": false, - "convicted": "N", - "d20": false, - "resultDefinitionGroup": "ConditionsImposedOnDefendant", - "qualifier": "JE", - "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "resultTextTemplate": "Must stay indoors at home address (or at any other address allowed by the court) between {excusedTimeFrom} and {and} {frequencyOfCurfew}[. Additional Information: {additionalInformation}]", - "welshLabel": "Rhaid aros y tu fewn yn y cyfeiriad cartref (neu mewn unrhyw gyfeiriad arall a ganiateir gan y llys) rhwng yr amseroedd a nodwyd a'i gyflwyno ei hun i swyddog heddlu rhwng yr amseroedd hyn", - "terminatesOffenceProceedings": false, - "prompts": [ - { - "id": "fa04992d-70df-4368-aee7-4ba865a22cd0", - "label": "And", - "resultPromptRule": "mandatory", + "id": "4d125a5a-acbc-461d-a657-ba5643af85a6", + "label": "Time of hearing", + "welshLabel": "Amser y gwrandawiad", + "resultPromptRule": "optional", "type": "TIME", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 200, + "sequence": 400, + "financial": "N", + "reference": "timeOfHearing", "userGroups": [], "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + }, + { + "id": "6fac63f7-60f0-4453-910e-e27700722d31", + "label": "Booking Type", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1300, "financial": "N", + "reference": "bookingtype", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "reference": "and", - "welshLabel": "Ac" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "6e27fcf9-1bf0-4e27-9ed5-6cdd1bf1ca68", - "label": "Frequency of curfew", - "resultPromptRule": "mandatory", + "id": "b861ca8e-04fa-41f2-8f05-1b5b0c1df286", + "label": "Booking Priority", + "resultPromptRule": "optional", "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 300, - "userGroups": [], - "courtExtract": "Y", + "sequence": 1200, "financial": "N", + "reference": "bookingpriority", + "userGroups": [], + "courtExtract": "N", "jurisdiction": "B", - "min": "1", - "max": "30", - "reference": "frequencyOfCurfew", - "welshLabel": "Amledd cyrffyw" + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "b5bc67e2-6bdc-4ea0-9426-d0d6d23e58f6", - "label": "Between", - "resultPromptRule": "mandatory", - "type": "TIME", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 100, - "userGroups": [], - "courtExtract": "Y", + "id": "c81aba5d-282a-4ef6-93d0-3c5e7dd810fd", + "label": "Slot booking reference", + "welshLabel": "", + "resultPromptRule": "optional", + "type": "TXT", + "sequence": 1100, "financial": "N", + "reference": "hmiSlots", + "userGroups": [], + "min": "1", + "max": "6000", + "courtExtract": "N", "jurisdiction": "B", - "reference": "excusedTimeFrom", - "welshLabel": "Rhwng" + "hidden": true, + "nameEmail": false, + "associatedWithReferenceData": false }, { - "id": "4a976a0b-1c2a-4e79-adc2-0314d2b476d7", - "label": "Additional information", + "id": "aecf6dd0-82fa-4520-bbb3-af0f8ea91ca7", + "label": "Special Requirements", "resultPromptRule": "optional", "type": "TXT", - "nameEmail": false, - "hidden": false, - "associateToReferenceData": false, - "sequence": 400, - "userGroups": [], - "courtExtract": "Y", + "sequence": 1400, "financial": "N", - "jurisdiction": "B", + "reference": "SpecialRequirements", + "userGroups": [], "min": "1", - "max": "1000", - "reference": "additionalInformation", - "welshLabel": "Gwybodaeth ychwanegol" + "max": "100", + "courtExtract": "N", + "jurisdiction": "C", + "hidden": true, + "nameEmail": false, + "associatedWithReferenceData": false } - ] - }, - { - "id": "69ff04d5-84e8-4a61-8478-82c2999c1969", - "label": "To attend or a warrant to issue", - "shortCode": "AWI", - "level": "O", - "rank": 22600, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, + ], + "welshLabel": "Bydd y gwrandawiad nesaf yn Llys y Goron", "financial": "N", "unscheduled": false, - "canBeSubjectOfBreach": false, - "canBeSubjectOfVariation": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "resultDefinitionGroup": "Next hearing", + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": true, "publishedAsAPrompt": true, "excludedFromResults": false, "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, - "wordGroups": [ - { - "wordGroup": [ - "AWI" - ] - }, - { - "wordGroup": [ - "warrant", - "attend" - ] - } + "jurisdiction": "B", + "resultWording": "", + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "resultTextTemplate": "hearing[ on a {dateToBeFixed}][ on {fixedDate}][ week commencing {weekCommencing}][ at {timeOfHearing}][ in {HCROOM}], {HCHOUSE~Name}", + "isAvailableForCourtExtract": true, + "isBooleanResult": false + }, + { + "id": "cfa66730-f81c-4768-a36e-581791cb0270", + "version": "2023-02-01T12:15:50.792Z", + "startDate": "2023-02-02", + "label": "Has a collection order been made?", + "shortCode": "COLLOM", + "level": "D", + "rank": 14100, + "userGroups": [ ], + "financial": "N", + "unscheduled": false, "adjournment": "N", "category": "A", "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "Adjournment reasons", - "qualifier": "GE", "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, "jurisdiction": "B", - "userGroups": [], - "resultTextTemplate": "%ResultLabel%", - "resultWording": "", - "welshLabel": "Codi neu gyhoeddi gwarant", - "terminatesOffenceProceedings": false + "resultDefinitionRules": [ + { + "childResultDefinitionId": "9ea0d845-5096-44f6-9ce0-8ae801141eac", + "ruleType": "mandatory" + } + ], + "canBeSubjectOfBreach": false, + "canBeSubjectOfVariation": false, + "isAvailableForCourtExtract": false, + "isBooleanResult": true }, { - "id": "3c98b287-fd01-471a-ac34-e0a56d9e95c2", - "label": "Exclusion - not to sit in the front seat of any motor vehicle", - "shortCode": "PORE10", - "level": "O", - "rank": 88300, - "isBooleanResult": false, - "isAvailableForCourtExtract": true, + "id": "3d742a7e-37a6-453c-bb6f-5e023bb19453", + "version": "2024-08-12T13:32:30.525Z", + "startDate": "2024-08-13", + "label": "Payment Method", + "shortCode": "PM", + "level": "D", + "rank": 30600, + "userGroups": [], "financial": "N", "unscheduled": false, + "adjournment": "N", + "category": "A", + "urgent": false, + "convicted": "N", + "d20": false, + "postHearingCustodyStatus": "A", + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": true, + "alwaysPublished": false, + "jurisdiction": "B", + "resultDefinitionRules": [ + { + "childResultDefinitionId": "4fdd9548-c521-48c9-baa3-1bd2f13a4fcc", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "bdb32555-8d55-4dc1-b4b6-580db5132496", + "ruleType": "oneOf" + }, + { + "childResultDefinitionId": "f7dfefd2-64c6-11e8-adc0-fa7ae01bbebc", + "ruleType": "oneOf" + } + ], "canBeSubjectOfBreach": false, "canBeSubjectOfVariation": false, - "publishedAsAPrompt": true, - "excludedFromResults": false, - "alwaysPublished": false, - "rollUpPrompts": false, - "publishedForNows": true, - "lifeDuration": false, + "isAvailableForCourtExtract": false, + "isBooleanResult": false + }, + { + "id": "a09bbfa0-5dd5-11e8-9c2d-fa7ae01bbebc", + "version": "2020-09-25T13:28:35.893Z", + "startDate": "2020-09-26", + "label": "Reserve Terms Lump sum", + "shortCode": "RLSUM", + "level": "D", + "rank": 6300, "wordGroups": [ { "wordGroup": [ - "PORE10" + "RLSUM" ] }, { "wordGroup": [ - "front", - "seat", - "Exclusion" + "rt", + "ls" + ] + }, + { + "wordGroup": [ + "pay", + "reserve", + "terms", + "lump" + ] + }, + { + "wordGroup": [ + "terms", + "lump", + "sum", + "reserve" ] } ], + "prompts": [ + { + "id": "c131cab0-5dd6-11e8-9c2d-fa7ae01bbebc", + "label": "Pay lump sum in full within", + "welshLabel": "Talu cyfandaliad yn llawn o fewn", + "resultPromptRule": "mandatory", + "type": "FIXL", + "sequence": 100, + "financial": "N", + "reference": "LSPW", + "fixedListId": "cd4cc782-5dd6-11e8-9c2d-fa7ae01bbebc", + "userGroups": [], + "courtExtract": "Y", + "jurisdiction": "B", + "hidden": false, + "nameEmail": false, + "associatedWithReferenceData": false + } + ], + "welshLabel": "Cyfandaliad y Telerau Wrth Gefn", + "financial": "N", + "unscheduled": false, "adjournment": "N", - "category": "A", + "category": "F", "urgent": false, "convicted": "N", "d20": false, - "resultDefinitionGroup": "Bail conditions", - "qualifier": "RD", + "resultDefinitionGroup": "Payment terms", "postHearingCustodyStatus": "A", - "jurisdiction": "B", - "userGroups": [], - "resultTextTemplate": "%ResultLabel%", - "welshLabel": "Gwahardd - i beidio ag eistedd yn sedd flaen unrhyw gerbyd modur", - "terminatesOffenceProceedings": false + "terminatesOffenceProceedings": false, + "lifeDuration": false, + "rollUpPrompts": false, + "publishedForNows": false, + "publishedAsAPrompt": false, + "excludedFromResults": false, + "alwaysPublished": true, + "jurisdiction": "M", + "isAvailableForCourtExtract": true, + "endDate": "2020-10-30" }, - {"id":"3c03001c-56b3-4c64-bc0f-a3c57c3f424f","version":"2023-04-15T22:07:30.368Z","startDate":"2023-04-16","label":"Committed to Crown Court for sentence on unconditional bail","shortCode":"CCSU","level":"O","rank":104500,"wordGroups":[{"wordGroup":["CCSU"]},{"wordGroup":["Committed","sentence","unconditional"]}],"prompts":[{"id":"4d10cd4b-fb39-40dd-88e1-2397832bc914","label":"Bail remand days to count (tagged days)","welshLabel":"Dyddiau mechnïaeth ar remand i’w cyfrif (dyddiad gyda tag)","resultPromptRule":"mandatory","type":"INT","sequence":200,"financial":"N","reference":"bailRemandDaysToCountTaggedDays","wordGroup":["Tagged days"],"userGroups":[],"min":"0","max":"999","courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"654fce8c-238a-468a-92db-f7509394cf08","label":"A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on","welshLabel":"Gwnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999 ar","resultPromptRule":"optional","type":"DATE","sequence":400,"financial":"N","reference":"aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn","wordGroup":["Reporting","Restriction"],"userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified organisation name","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedOrganisationName","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"OrganisationName","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 1","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress1","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine1","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress2","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine2","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 3","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress3","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine3","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 4","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress4","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine4","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified address line 5","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedAddress5","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"AddressLine5","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified post code","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedPostCode","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"PostCode","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified email address 1","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedEmailAddress1","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"EmailAddress1","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"714cfc3a-c860-49e0-a775-32fa7a1540db","label":"Probation / YOT to be notified email address 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":900,"financial":"N","reference":"probationyottobenotifiedEmailAddress2","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Probation / YOT to be notified","fixListLabel":"Select Probation / YOT to be notified","referenceDataKey":"probationyottobenotified","partName":"EmailAddress2","nameEmail":true,"cacheable":2,"associatedWithReferenceData":true},{"id":"f0b78cd9-d643-42fd-a0d7-2c1d8270f5a6","label":"Victim wishes to read victim personal statement to court","welshLabel":"Dioddefwr yn dymuno darllen datganiad personol dioddefwyr i'r llys","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":600,"financial":"N","reference":"victimWishesToReadVictimPersonalStatementToCourt","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"ed26a92b-0850-435b-a4c7-2c77baaea4b3","label":"PSR ordered","resultPromptRule":"mandatory","type":"BOOLEAN","sequence":800,"financial":"N","reference":"pSROrdered","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"583ea6cb-4251-406e-b07a-445fb0dde914","label":"Victim personal statement to be presented to court by prosecutor or other person","welshLabel":"Datganiad personol i ddioddefwyr i'w gyflwyno i'r llys gan erlynydd neu unigolyn arall","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":500,"financial":"N","reference":"victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"e2b9a67c-cbd8-4479-89ff-57b2b6632835","label":"Additional considerations re victim personal statement","welshLabel":"Ystyriaethau ychwanegol mewn perthynas â datganiad personol dioddefwyr","resultPromptRule":"optional","type":"TXT","sequence":750,"financial":"N","reference":"additionalDetailsReVictimPersonalStatement","userGroups":[],"min":"1","max":"250","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"07fe6e7e-dde2-45d6-b0c0-aa8e1b2883b8","label":"No indication given re victim personal statement","welshLabel":"Ni roddwyd unrhyw arwydd o ddatganiad personol dioddefwyr","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":700,"financial":"N","reference":"noIndicationGivenReVictimPersonalStatement","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d7d2c7b1-f27a-44ed-a227-ea9b917f0229","label":"No direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made","welshLabel":"Ni wnaed cyfarwyddyd o dan adran 45 Deddf Cyfiawnder Ieuenctid a Thystiolaeth Droseddol 1999","resultPromptRule":"optional","type":"BOOLEAN","sequence":300,"financial":"N","reference":"noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"5e9f69e4-299d-41e0-93ef-b7523df86954","label":"Committed","welshLabel":"Traddodwyd","resultPromptRule":"mandatory","type":"FIXL","sequence":50,"financial":"N","reference":"committed","fixedListId":"bf4e33b1-8b6b-4de8-9b1b-e83cb4f3d6d7","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false}],"welshLabel":"Traddodi i Lys y Goron ar gyfer dedfryd ar fechnïaeth ddiamod","financial":"N","unscheduled":false,"adjournment":"Y","category":"I","urgent":false,"convicted":"N","d20":false,"resultDefinitionGroup":"CommittedToCC","cjsCode":"4014","postHearingCustodyStatus":"U","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":true,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"M","libraCode":"CCSU","resultDefinitionRules":[{"childResultDefinitionId":"f00359b5-7303-403b-b59e-0b1a1daa89bc","ruleType":"mandatory"}],"canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"Committed {committed} for %NEXH%. Bail remand days to count (tagged days): {bailRemandDaysToCountTaggedDays}.[ {noDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMade}.][ A direction under section 45 of the Youth Justice and Criminal Evidence Act 1999 was made on {aDirectionUnderSection45OfTheYouthJusticeAndCriminalEvidenceAct1999WasMadeOn}.][ {victimPersonalStatementToBePresentedToCourtByProsecutorOrOtherPerson}.][ {victimWishesToReadVictimPersonalStatementToCourt}.][ {noIndicationGivenReVictimPersonalStatement}.][ Additional considerations re victim personal statement: {additionalDetailsReVictimPersonalStatement}.] {pSROrdered}","isAvailableForCourtExtract":true,"isBooleanResult":false}, - {"id":"c36fed37-b635-4303-b514-2273e9e2594d","version":"2023-04-15T22:05:45.733Z","startDate":"2023-04-16","label":"Entered in error","shortCode":"ERR","level":"O","rank":97500,"wordGroups":[{"wordGroup":["ERR"]},{"wordGroup":["error","entered"]}],"prompts":[{"id":"af38d17b-46de-4dbb-a5c7-14ac36905c89","label":"Reason","resultPromptRule":"optional","type":"TXT","sequence":100,"financial":"N","reference":"reason","userGroups":[],"min":"1","max":"250","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false}],"financial":"N","unscheduled":false,"adjournment":"N","category":"F","urgent":false,"convicted":"N","d20":false,"cjsCode":"4583","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":false,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","lCode":"ERR\nERRF","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"[Reason: {reason}]","isAvailableForCourtExtract":true,"isBooleanResult":false}, - {"id":"fbed768b-ee95-4434-87c8-e81cbc8d24c9","version":"2023-04-15T22:05:25.054Z","startDate":"2023-04-16","label":"Next hearing in Crown Court","shortCode":"NHCCS","level":"O","rank":18500,"wordGroups":[{"wordGroup":["NHCCS"]}],"prompts":[{"id":"46257d78-1cbf-42b0-a24b-206826fecfb9","label":"Date and time to be fixed","welshLabel":"Dyddiad ac amser i’w bennu","resultPromptRule":"oneOf","type":"BOOLEAN","sequence":100,"financial":"N","reference":"dateToBeFixed","wordGroup":["Date to be fixed"],"userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"bbc84e23-2543-4211-858f-59ae97800f5a","label":"Reserved Judiciary","welshLabel":"Y Farnwriaeth wrth gefn","resultPromptRule":"optional","type":"TXT","sequence":1000,"financial":"N","reference":"reservedJudiciary","wordGroup":["Reserved"],"userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"3e7ae7bd-f736-4729-ab06-82bf966bc72f","label":"Week Commencing","welshLabel":"Wythnos yn dechrau","resultPromptRule":"oneOf","type":"DATE","sequence":300,"financial":"N","reference":"weekCommencing","wordGroup":["week commencing"],"userGroups":[],"courtExtract":"Y","jurisdiction":"C","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Weeks","financial":"N","reference":"HEST","userGroups":[],"welshDuration":"Wythnos","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Days","financial":"N","reference":"HEST","userGroups":[],"welshDuration":"Niwrnod","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Hours","financial":"N","reference":"HEST","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"d85cc2d7-66c8-471e-b6ff-c1bc60c6cdac","label":"Estimated duration","welshLabel":"Amcangyfrif amser","resultPromptRule":"mandatory","type":"INT","sequence":800,"duration":"Minutes","financial":"N","reference":"HEST","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse organisation name","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEOrganisationName","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"OrganisationName","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 1","resultPromptRule":"mandatory","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress1","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine1","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress2","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine2","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 3","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress3","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine3","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 4","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress4","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine4","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse address line 5","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEAddress5","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"AddressLine5","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse post code","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEPostCode","userGroups":[],"min":"","max":"","courtExtract":"Y","jurisdiction":"B","hidden":false,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"PostCode","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse email address 1","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEEmailAddress1","userGroups":[],"min":"","max":"","courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"EmailAddress1","nameEmail":false,"associatedWithReferenceData":true},{"id":"66868c04-72c4-46d9-a4fc-860a82107475","label":"Courthouse email address 2","resultPromptRule":"optional","type":"NAMEADDRESS","sequence":500,"financial":"N","reference":"hCHOUSEEmailAddress2","userGroups":[],"min":"","max":"","courtExtract":"N","jurisdiction":"B","hidden":true,"nameAddressType":"Organisation","componentLabel":"Courthouse","fixListLabel":"Select Courthouse","referenceDataKey":"hCHOUSE","partName":"EmailAddress2","nameEmail":false,"associatedWithReferenceData":true},{"id":"aea2ee79-47b4-4023-9a95-1b327e6e03d5","label":"Fixed Date","welshLabel":"Dyddiad Penodol","resultPromptRule":"oneOf","type":"DATE","sequence":200,"financial":"N","reference":"fixedDate","userGroups":[],"courtExtract":"Y","jurisdiction":"C","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"c1116d12-dd35-4171-807a-2cb845357d22","label":"Hearing type","welshLabel":"Math o wrandawiad","resultPromptRule":"mandatory","type":"TXT","sequence":700,"financial":"N","reference":"HTYPE","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"49ec9b26-dd63-4637-b2e9-55ba9948a90f","label":"Courtroom","welshLabel":"Ystafell Llys","resultPromptRule":"optional","type":"INT","sequence":600,"financial":"N","reference":"HCROOM","userGroups":[],"min":"1","max":"99","courtExtract":"Y","jurisdiction":"B","hidden":false,"referenceDataKey":"HCROOM","nameEmail":false,"associatedWithReferenceData":true},{"id":"a0ec3e68-5210-422f-9959-73c1c7ce495a","label":"Existing Hearing Id","welshLabel":"ID Gwrandawiad Presennol","resultPromptRule":"optional","type":"TXT","sequence":900,"financial":"N","reference":"existingHearingId","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":true,"nameEmail":false,"associatedWithReferenceData":false},{"id":"4d125a5a-acbc-461d-a657-ba5643af85a6","label":"Time of hearing","welshLabel":"Amser y gwrandawiad","resultPromptRule":"optional","type":"TIME","sequence":400,"financial":"N","reference":"timeOfHearing","userGroups":[],"courtExtract":"Y","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"6fac63f7-60f0-4453-910e-e27700722d31","label":"Booking Type","resultPromptRule":"optional","type":"TXT","sequence":1300,"financial":"N","reference":"bookingtype","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"b861ca8e-04fa-41f2-8f05-1b5b0c1df286","label":"Booking Priority","resultPromptRule":"optional","type":"TXT","sequence":1200,"financial":"N","reference":"bookingpriority","userGroups":[],"courtExtract":"N","jurisdiction":"B","hidden":false,"nameEmail":false,"associatedWithReferenceData":false},{"id":"c81aba5d-282a-4ef6-93d0-3c5e7dd810fd","label":"Slot booking reference","welshLabel":"","resultPromptRule":"optional","type":"TXT","sequence":1100,"financial":"N","reference":"hmiSlots","userGroups":[],"min":"1","max":"6000","courtExtract":"N","jurisdiction":"B","hidden":true,"nameEmail":false,"associatedWithReferenceData":false},{"id":"aecf6dd0-82fa-4520-bbb3-af0f8ea91ca7","label":"Special Requirements","resultPromptRule":"optional","type":"TXT","sequence":1400,"financial":"N","reference":"SpecialRequirements","userGroups":[],"min":"1","max":"100","courtExtract":"N","jurisdiction":"C","hidden":true,"nameEmail":false,"associatedWithReferenceData":false}],"welshLabel":"Bydd y gwrandawiad nesaf yn Llys y Goron","financial":"N","unscheduled":false,"adjournment":"N","category":"A","urgent":false,"convicted":"N","d20":false,"resultDefinitionGroup":"Next hearing","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":false,"publishedForNows":true,"publishedAsAPrompt":true,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","resultWording":"","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"hearing[ on a {dateToBeFixed}][ on {fixedDate}][ week commencing {weekCommencing}][ at {timeOfHearing}][ in {HCROOM}], {HCHOUSE~Name}","isAvailableForCourtExtract":true,"isBooleanResult":false} - + {"id":"dbf9f59c-eee5-4285-8a1c-4fefe4508581","version":"2024-04-09T14:35:37.347Z","startDate":"2024-04-10","label":"To produce motor insurance documents or test certificates (not driving licence)","shortCode":"DOC","level":"O","rank":32100,"userGroups":[],"financial":"N","unscheduled":false,"adjournment":"N","category":"A","urgent":false,"convicted":"N","d20":false,"resultDefinitionGroup":"Adjournment reasons","qualifier":"DO","postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":false,"publishedForNows":true,"publishedAsAPrompt":true,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","resultWording":"","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"resultTextTemplate":"%ResultLabel%","isAvailableForCourtExtract":true,"isBooleanResult":false}, + {"id":"2b3f7c20-8fc1-4fad-9076-df196c24b27e","version":"2023-02-01T12:13:19.901Z","startDate":"2023-02-02","label":"Granted","shortCode":"G","level":"O","rank":98500,"wordGroups":[{"wordGroup":["G","granted"]}],"userGroups":[],"financial":"N","unscheduled":false,"adjournment":"N","category":"F","urgent":false,"convicted":"N","d20":false,"postHearingCustodyStatus":"A","terminatesOffenceProceedings":false,"lifeDuration":false,"rollUpPrompts":true,"publishedForNows":false,"publishedAsAPrompt":false,"excludedFromResults":false,"alwaysPublished":false,"jurisdiction":"B","canBeSubjectOfBreach":false,"canBeSubjectOfVariation":false,"isAvailableForCourtExtract":true,"isBooleanResult":false} ] } \ No newline at end of file diff --git a/pom.xml b/pom.xml index a4c798338b..832fe94cbc 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ 1.3.3 0.1.96 17.103.11 - 17.103.125 + 17.103.128 17.0.57 17.0.58 17.0.1 @@ -37,7 +37,7 @@ 5.7 2.0.0 0.2.0 - 17.0.40 + 17.104.46 17.0.116 5.2.1.RELEASE 17.0.96 From b2cf2544e17b4442d2b7479da4a4e05c931f8977 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 18 Mar 2026 16:26:15 +0000 Subject: [PATCH 22/50] updating poms for 17.0.147 branch with snapshot versions From 6a1cda6db4a939485b5f37cc5a8b29a472d46bdf Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 18 Mar 2026 16:26:19 +0000 Subject: [PATCH 23/50] updating poms for 17.0.148-SNAPSHOT development --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index fd2706f67b..fc00b6b080 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index c6e40a9faa..9f7a79c460 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index b6ff7310f3..69eb539f0e 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index d8a75c5d64..5dd3ca2cba 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index e0d6c835d3..640d93ed41 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 99a429e7fe..61714db1f5 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 5884811f5c..29045ea9b2 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 7a8f4dbead..0caeefee9c 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index f9cc263a02..c9807b4024 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index f100cf9780..b5bae28b7f 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index d7da26025b..eba0bfd562 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 335f700000..c7262b69b8 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 728191672c..a33832e5a9 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 4169afde74..83c1d2c161 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 933065316e..446e583201 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 47046582c2..7767200f59 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index eff2468af9..505b6a6e45 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index f2ea0c41e8..829b529844 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 0991ea63bb..5697274f65 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 485ef45bfa..b64c184c81 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index e9a4444501..94ee938fad 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 17d9eb7020..4f23d7578f 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index bf751187d3..aab6b03832 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 1c947056ed..78d548cd1d 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 832fe94cbc..b95cb65789 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 0253956b85..cfab094710 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.148-SNAPSHOT From e052ada10537bcbfdba20168ffb53e5536fd4f81 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 18 Mar 2026 17:05:19 +0000 Subject: [PATCH 24/50] updating poms for branch'dev/release-17.0.147' with non-snapshot versions --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index fd2706f67b..adf9e63eea 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.147-SNAPSHOT + 17.0.147 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index c6e40a9faa..c3eed435c2 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.147-SNAPSHOT + 17.0.147 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index b6ff7310f3..d7db71b7be 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.147 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index d8a75c5d64..0cc6138318 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.147 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index e0d6c835d3..d3ffa18ac2 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.147 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 99a429e7fe..d55c5cbfb6 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.147 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 5884811f5c..6153d61ebc 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.147 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 7a8f4dbead..0c848ecb07 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147-SNAPSHOT + 17.0.147 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index f9cc263a02..cad495263e 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.147 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index f100cf9780..b68f3370cc 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.147 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index d7da26025b..c67952ee89 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.147-SNAPSHOT + 17.0.147 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 335f700000..4bad1a6f61 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.147 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 728191672c..384cec93c2 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.147 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 4169afde74..63ec985fc2 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.147 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 933065316e..d8d06e84a0 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.147 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 47046582c2..7cd2255860 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147-SNAPSHOT + 17.0.147 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index eff2468af9..03d9678011 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.147-SNAPSHOT + 17.0.147 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index f2ea0c41e8..83d4e04804 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.147-SNAPSHOT + 17.0.147 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 0991ea63bb..2503d2d794 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.147 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 485ef45bfa..f06774908f 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.147 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index e9a4444501..29e164692a 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.147-SNAPSHOT + 17.0.147 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 17d9eb7020..43fe54358a 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.147-SNAPSHOT + 17.0.147 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index bf751187d3..ac87a10d66 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.147 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 1c947056ed..daee0c0b1f 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.147 pojo-plugin diff --git a/pom.xml b/pom.xml index 832fe94cbc..08afc90891 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.147 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 0253956b85..16b5588497 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147-SNAPSHOT + 17.0.147 From 6b5075abeae2d0077622bb4986fe57d78fc10466 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 18 Mar 2026 17:05:36 +0000 Subject: [PATCH 25/50] updating develop poms to master versions to avoid merge conflicts --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index fc00b6b080..adf9e63eea 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.148-SNAPSHOT + 17.0.147 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 9f7a79c460..c3eed435c2 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.148-SNAPSHOT + 17.0.147 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 69eb539f0e..d7db71b7be 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.147 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 5dd3ca2cba..0cc6138318 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.147 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index 640d93ed41..d3ffa18ac2 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.147 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 61714db1f5..d55c5cbfb6 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.147 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 29045ea9b2..6153d61ebc 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.147 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 0caeefee9c..0c848ecb07 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.147 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index c9807b4024..cad495263e 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.147 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index b5bae28b7f..b68f3370cc 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.147 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index eba0bfd562..c67952ee89 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.148-SNAPSHOT + 17.0.147 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index c7262b69b8..4bad1a6f61 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.147 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index a33832e5a9..384cec93c2 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.147 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 83c1d2c161..63ec985fc2 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.147 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 446e583201..d8d06e84a0 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.147 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 7767200f59..7cd2255860 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.147 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 505b6a6e45..03d9678011 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.148-SNAPSHOT + 17.0.147 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index 829b529844..83d4e04804 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.148-SNAPSHOT + 17.0.147 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 5697274f65..2503d2d794 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.147 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index b64c184c81..f06774908f 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.147 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 94ee938fad..29e164692a 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.148-SNAPSHOT + 17.0.147 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 4f23d7578f..43fe54358a 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.148-SNAPSHOT + 17.0.147 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index aab6b03832..ac87a10d66 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.147 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 78d548cd1d..daee0c0b1f 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.147 pojo-plugin diff --git a/pom.xml b/pom.xml index b95cb65789..08afc90891 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.147 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index cfab094710..16b5588497 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.147 From ee07ecbbbb9cf60a23a8444e98b9ec4eed81df8f Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Wed, 18 Mar 2026 17:05:39 +0000 Subject: [PATCH 26/50] Updating develop poms back to pre merge state --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index adf9e63eea..fc00b6b080 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.147 + 17.0.148-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index c3eed435c2..9f7a79c460 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.147 + 17.0.148-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index d7db71b7be..69eb539f0e 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147 + 17.0.148-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 0cc6138318..5dd3ca2cba 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147 + 17.0.148-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index d3ffa18ac2..640d93ed41 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147 + 17.0.148-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index d55c5cbfb6..61714db1f5 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147 + 17.0.148-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 6153d61ebc..29045ea9b2 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147 + 17.0.148-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 0c848ecb07..0caeefee9c 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.147 + 17.0.148-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index cad495263e..c9807b4024 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147 + 17.0.148-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index b68f3370cc..b5bae28b7f 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147 + 17.0.148-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index c67952ee89..eba0bfd562 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.147 + 17.0.148-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 4bad1a6f61..c7262b69b8 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.147 + 17.0.148-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 384cec93c2..a33832e5a9 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147 + 17.0.148-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 63ec985fc2..83c1d2c161 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147 + 17.0.148-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index d8d06e84a0..446e583201 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147 + 17.0.148-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 7cd2255860..7767200f59 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.147 + 17.0.148-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 03d9678011..505b6a6e45 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.147 + 17.0.148-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index 83d4e04804..829b529844 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.147 + 17.0.148-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 2503d2d794..5697274f65 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147 + 17.0.148-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index f06774908f..b64c184c81 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147 + 17.0.148-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 29e164692a..94ee938fad 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.147 + 17.0.148-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 43fe54358a..4f23d7578f 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.147 + 17.0.148-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index ac87a10d66..aab6b03832 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147 + 17.0.148-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index daee0c0b1f..78d548cd1d 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147 + 17.0.148-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 08afc90891..b95cb65789 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147 + 17.0.148-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 16b5588497..cfab094710 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.147 + 17.0.148-SNAPSHOT From 19dcbe0a2765a11150c0af2281f4a5790136e8fe Mon Sep 17 00:00:00 2001 From: "rajkumar.meena" Date: Thu, 2 Apr 2026 16:05:10 +0100 Subject: [PATCH 27/50] CAD-492 civil tranche 1 toggle off --- .../aggregate/hearing/PleaDelegate.java | 54 +++++++++++----- .../aggregate/hearing/PleaDelegateTest.java | 62 +++++++++++++++++++ pom.xml | 6 +- 3 files changed, 102 insertions(+), 20 deletions(-) diff --git a/hearing-domain/hearing-domain-aggregate/src/main/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/PleaDelegate.java b/hearing-domain/hearing-domain-aggregate/src/main/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/PleaDelegate.java index 859e6c5b32..83206d3f8d 100644 --- a/hearing-domain/hearing-domain-aggregate/src/main/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/PleaDelegate.java +++ b/hearing-domain/hearing-domain-aggregate/src/main/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/PleaDelegate.java @@ -1,7 +1,9 @@ package uk.gov.moj.cpp.hearing.domain.aggregate.hearing; +import static java.util.Objects.isNull; import static java.util.Objects.nonNull; import static java.util.Optional.ofNullable; +import static org.apache.commons.collections.CollectionUtils.isNotEmpty; import static uk.gov.justice.core.courts.IndicatedPleaValue.INDICATED_GUILTY; import static uk.gov.moj.cpp.hearing.domain.aggregate.util.PleaVerdictUtil.isGuiltyVerdict; import static uk.gov.moj.cpp.hearing.domain.event.ConvictionDateAdded.convictionDateAdded; @@ -9,6 +11,7 @@ import uk.gov.justice.core.courts.CourtApplication; import uk.gov.justice.core.courts.CourtOrderOffence; +import uk.gov.justice.core.courts.Hearing; import uk.gov.justice.core.courts.IndicatedPlea; import uk.gov.justice.core.courts.Offence; import uk.gov.justice.core.courts.Plea; @@ -132,28 +135,33 @@ public Stream updatePlea(final UUID hearingId, final PleaModel pleaModel } setOriginatingHearingId(hearingId, pleaModel); + final boolean isCivil = isCivilCase(); + final PleaModel pleaToUpdate = isCivil ? pleaModel.setAllocationDecision(null) : pleaModel; + + final Plea plea = pleaToUpdate.getPlea(); final List events = new ArrayList<>(); - final Plea plea = pleaModel.getPlea(); events.add(PleaUpsert.pleaUpsert() .setHearingId(hearingId) - .setPleaModel(pleaModel)); - - if (nonNull(plea)) { - addConvictionDateEventForPlea(hearingId, guiltyPleaTypes, offenceId, prosecutionCaseId, courtApplicationId, events, plea); - } else if (nonNull(pleaModel.getIndicatedPlea()) ) { - // indicated plea logic for updating conviction dates is not changing as it is out of scope for DD-2825 - // and will be covered under a separate CR - addConvictionDateEventForIndicatedPlea(hearingId, pleaModel, offenceId, prosecutionCaseId, courtApplicationId, events); - } else if (canRemoveConvictionDate(offenceId, courtApplicationId)){ - events.add( - convictionDateRemoved() - .setCaseId(prosecutionCaseId) - .setHearingId(hearingId) - .setOffenceId(offenceId) - .setCourtApplicationId(courtApplicationId)); + .setPleaModel(pleaToUpdate)); + + if (!isCivil) { + if (nonNull(plea)) { + addConvictionDateEventForPlea(hearingId, guiltyPleaTypes, offenceId, prosecutionCaseId, courtApplicationId, events, plea); + } else if (nonNull(pleaToUpdate.getIndicatedPlea()) ) { + // indicated plea logic for updating conviction dates is not changing as it is out of scope for DD-2825 + // and will be covered under a separate CR + addConvictionDateEventForIndicatedPlea(hearingId, pleaToUpdate, offenceId, prosecutionCaseId, courtApplicationId, events); + } else if (canRemoveConvictionDate(offenceId, courtApplicationId)) { + events.add( + convictionDateRemoved() + .setCaseId(prosecutionCaseId) + .setHearingId(hearingId) + .setOffenceId(offenceId) + .setCourtApplicationId(courtApplicationId)); + } } - return events.stream(); + return events.stream(); } private void addConvictionDateEventForIndicatedPlea(final UUID hearingId, final PleaModel pleaModel, final UUID offenceId, final UUID prosecutionCaseId, final UUID courtApplicationId, final List events) { @@ -244,4 +252,16 @@ private void setOffence(final Offence offence) { private void setApplicationPlea(final CourtApplication courtApplication) { courtApplication.setPlea(this.momento.getPleas().get(courtApplication.getId())); } + + private boolean isCivilCase() { + final Hearing hearing = momento.getHearing(); + if (isNull(hearing)) { + return false; + } + + return isNotEmpty(hearing.getProsecutionCases()) + && hearing.getProsecutionCases().stream() + .filter(Objects::nonNull) + .anyMatch(prosecutionCase -> Boolean.TRUE.equals(prosecutionCase.getIsCivil())); + } } diff --git a/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/PleaDelegateTest.java b/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/PleaDelegateTest.java index 401ae0dac6..5817349886 100644 --- a/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/PleaDelegateTest.java +++ b/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/PleaDelegateTest.java @@ -475,6 +475,9 @@ public void shouldAddConvictionDateAddedEventWhenIndicatedPleaIsGuilty() { .withProsecutionCaseId(CASE_ID) .withDefendantId(DEFENDANT_ID) .withOffenceId(OFFENCE_ID) + .withAllocationDecision(AllocationDecision.allocationDecision() + .withOffenceId(OFFENCE_ID) + .build()) .withIndicatedPlea(IndicatedPlea.indicatedPlea() .withOffenceId(OFFENCE_ID) .withIndicatedPleaDate(indicatedPleaDate) @@ -487,6 +490,7 @@ public void shouldAddConvictionDateAddedEventWhenIndicatedPleaIsGuilty() { final PleaUpsert pleaUpsert = (PleaUpsert) events.get(0); assertThat(pleaUpsert, is(notNullValue())); assertThat(pleaUpsert.getHearingId(), is(HEARING_ID)); + assertThat(pleaUpsert.getPleaModel().getAllocationDecision(), is(notNullValue())); final ConvictionDateAdded convictionDateAdded = (ConvictionDateAdded) events.get(1); assertThat(convictionDateAdded, is(notNullValue())); @@ -590,6 +594,64 @@ public void shouldNotAddConvictionDateRemovedEventWhenIndicatedPleaIsNotGuilty() assertThat(pleaUpsert.getHearingId(), is(HEARING_ID)); } + @Test + public void shouldNotAddConvictionDateIfCaseIsCivil() { + final Hearing hearing = getHearing(OFFENCE_ID, DEFENDANT_ID, CASE_ID, HEARING_ID); + hearing.getProsecutionCases().get(0).setIsCivil(true); + + this.hearingAggregateMomento.setHearing(hearing); + + final PleaModel pleaModel = PleaModel.pleaModel() + .withProsecutionCaseId(CASE_ID) + .withDefendantId(DEFENDANT_ID) + .withOffenceId(OFFENCE_ID) + .withPlea(Plea.plea() + .withOffenceId(OFFENCE_ID) + .withPleaDate(PAST_LOCAL_DATE.next()) + .withPleaValue(GUILTY) + .build()) + .build(); + + final List events = pleaDelegate.updatePlea(HEARING_ID, pleaModel, guiltyPleaTypes()).toList(); + + assertThat(events.size(), is(1)); + final PleaUpsert pleaUpsert = (PleaUpsert) events.get(0); + assertThat(pleaUpsert, is(notNullValue())); + assertThat(pleaUpsert.getHearingId(), is(HEARING_ID)); + + assertThat(events.stream().filter(ConvictionDateAdded.class::isInstance).count(), is(0L)); + } + + @Test + public void shouldRemoveAllocationDecisionValuesWhenCaseIsCivil() { + final Hearing hearing = getHearing(OFFENCE_ID, DEFENDANT_ID, CASE_ID, HEARING_ID); + hearing.getProsecutionCases().get(0).setIsCivil(true); + + this.hearingAggregateMomento.setHearing(hearing); + + final PleaModel pleaModel = PleaModel.pleaModel() + .withProsecutionCaseId(CASE_ID) + .withDefendantId(DEFENDANT_ID) + .withOffenceId(OFFENCE_ID) + .withAllocationDecision(AllocationDecision.allocationDecision() + .withOffenceId(OFFENCE_ID) + .build()) + .withPlea(Plea.plea() + .withOffenceId(OFFENCE_ID) + .withPleaDate(PAST_LOCAL_DATE.next()) + .withPleaValue(GUILTY) + .build()) + .build(); + + final List events = pleaDelegate.updatePlea(HEARING_ID, pleaModel, guiltyPleaTypes()).toList(); + + assertThat(events.size(), is(1)); + final PleaUpsert pleaUpsert = (PleaUpsert) events.get(0); + assertThat(pleaUpsert, is(notNullValue())); + assertThat(pleaUpsert.getHearingId(), is(HEARING_ID)); + assertThat(pleaUpsert.getPleaModel().getAllocationDecision(), is(nullValue())); + } + @Test public void shouldAddConvictionDateWhenPleaIsGuiltyType() { GUILTY_PLEA_LIST.forEach(this::shouldAddConvictionDateAddedWhenPleaIsGuiltyType); diff --git a/pom.xml b/pom.xml index b95cb65789..edd696f3d5 100644 --- a/pom.xml +++ b/pom.xml @@ -26,12 +26,12 @@ 1.3.3 0.1.96 17.103.11 - 17.103.128 + 17.103.129 17.0.57 17.0.58 17.0.1 - 17.103.73 - 17.0.215 + 17.103.77 + 17.0.246 2.2.11 2.6.3 5.7 From 3c038f8551ba9d5b4d72fc301bcd60e2abae8f89 Mon Sep 17 00:00:00 2001 From: "rajkumar.meena" Date: Thu, 2 Apr 2026 16:15:27 +0100 Subject: [PATCH 28/50] CAD-492 update core domain civil tranche 1 toggle off --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index edd696f3d5..8b08c8290b 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ 0.8 1.3.3 0.1.96 - 17.103.11 + 17.103.12 17.103.129 17.0.57 17.0.58 From 33e1c87839bd8d631e975bdafe2b0fc84f53c8eb Mon Sep 17 00:00:00 2001 From: aykutdanisman Date: Thu, 2 Apr 2026 18:23:57 +0100 Subject: [PATCH 29/50] merge team/CCT-2371 into main (#83) * merge team/CCT-2371 into main * update pom --- .../gitleaks-custom-rules-template.toml | 32 +++++++++---------- .../json/schema/hearing.set-trial-type.json | 4 ++- .../handler/SetTrialTypeCommandHandler.java | 3 +- .../hearing.command.set-trial-type.json | 3 ++ .../SetTrialTypeCommandHandlerTest.java | 5 +-- .../hearing/HearingTrialTypeDelegate.java | 1 + .../moj/cpp/hearing/command/TrialType.java | 15 ++++++++- .../domain/event/HearingTrialType.java | 7 +++- .../event/listener/HearingEventListener.java | 1 + .../listener/HearingEventListenerTest.java | 4 ++- .../hearing.hearing-trial-type-set.json | 3 ++ .../event/HearingEventProcessorTest.java | 3 +- .../hearing.hearing-trial-type-set.json | 3 ++ .../moj/cpp/hearing/it/CaseTimelineIT.java | 2 ++ .../it/CrackedAndIneffectiveHearingIT.java | 3 +- .../cpp/hearing/it/SetHearingTrialTypeIT.java | 8 ++--- .../moj/cpp/hearing/it/ShareResultsIT.java | 9 ++++-- .../query/view/service/HearingService.java | 3 ++ .../TimelineHearingSummaryHelperTest.java | 4 +-- .../view/service/HearingServiceTest.java | 3 +- ...-add-cracked-ineffective-sub-reason-id.xml | 14 ++++++++ .../hearing/persist/entity/ha/Hearing.java | 7 ++++ pom.xml | 9 +++--- 23 files changed, 107 insertions(+), 39 deletions(-) create mode 100644 hearing-viewstore/hearing-viewstore-liquibase/src/main/resources/liquibase/hearing-view-store-db-changesets/136-add-cracked-ineffective-sub-reason-id.xml diff --git a/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml b/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml index 2d5f39288c..7eb8cbec9f 100644 --- a/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml +++ b/.github/actions/secret-scanner/gitleaks-custom-rules-template.toml @@ -15,20 +15,20 @@ description = "Identify banned IDs" regex = '''${GITLEAKS_REGEX_BANNED_IDS}''' tags = ["banned-ids"] -[allowlist] -description = "Global allowlist" -paths = [ - ".idea/.*", - "(.*/)?target/.*", - ".gitreview" -] -regexes = [ - '''(?i).*query\.local-justice.*''', - '''(?i).*referencedata\.query\.local-justice-areas.*''', - '''(?i).*referencedata\.local-authority-address.*''', - '''(?i).*referencedata\.local-justice-area-address.*''', - '''(?i).*referencedata\.query\.local.*''', - '''(?i).*vnd\.referencedata\.query\.local.*''', - '''(?i).*referencedata\.local.*''' -] +[allowlist] +description = "Global allowlist" +paths = [ + ".idea/.*", + "(.*/)?target/.*", + ".gitreview" +] +regexes = [ + '''(?i).*query\.local-justice.*''', + '''(?i).*referencedata\.query\.local-justice-areas.*''', + '''(?i).*referencedata\.local-authority-address.*''', + '''(?i).*referencedata\.local-justice-area-address.*''', + '''(?i).*referencedata\.query\.local.*''', + '''(?i).*vnd\.referencedata\.query\.local.*''', + '''(?i).*referencedata\.local.*''' +] diff --git a/hearing-command/hearing-command-api/src/raml/json/schema/hearing.set-trial-type.json b/hearing-command/hearing-command-api/src/raml/json/schema/hearing.set-trial-type.json index 1b0cd3c7c9..a0d48ee2d0 100644 --- a/hearing-command/hearing-command-api/src/raml/json/schema/hearing.set-trial-type.json +++ b/hearing-command/hearing-command-api/src/raml/json/schema/hearing.set-trial-type.json @@ -11,8 +11,10 @@ }, "vacatedTrialReasonId": { "$ref": "http://justice.gov.uk/domain/core/common/definitions.json#/definitions/uuid" + }, + "crackedIneffectiveSubReasonId": { + "$ref": "http://justice.gov.uk/domain/core/common/definitions.json#/definitions/uuid" } - }, "oneOf": [ { diff --git a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandler.java b/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandler.java index bdfea98262..71e45ae5cf 100644 --- a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandler.java +++ b/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandler.java @@ -63,8 +63,9 @@ public void handleTrialType(final JsonEnvelope envelope) throws EventStreamExcep final String description = crackedIneffectiveReason.getString("description"); final String type = crackedIneffectiveReason.getString("type"); final Optional id = getUUID(crackedIneffectiveReason, "id"); + final UUID crackedIneffectiveSubReasonId = trialType.getCrackedIneffectiveSubReasonId(); - aggregate(HearingAggregate.class, trialType.getHearingId(), envelope, a -> a.setTrialType(new HearingTrialType(trialType.getHearingId(), id.get(), code, type, description))); + aggregate(HearingAggregate.class, trialType.getHearingId(), envelope, a -> a.setTrialType(new HearingTrialType(trialType.getHearingId(), id.get(), code, type, description,crackedIneffectiveSubReasonId))); } if (nonNull(trialType.getIsEffectiveTrial()) && trialType.getIsEffectiveTrial()) { diff --git a/hearing-command/hearing-command-handler/src/raml/json/schema/hearing.command.set-trial-type.json b/hearing-command/hearing-command-handler/src/raml/json/schema/hearing.command.set-trial-type.json index 6866dc4a5c..84184e11cd 100644 --- a/hearing-command/hearing-command-handler/src/raml/json/schema/hearing.command.set-trial-type.json +++ b/hearing-command/hearing-command-handler/src/raml/json/schema/hearing.command.set-trial-type.json @@ -14,6 +14,9 @@ }, "vacatedTrialReasonId": { "$ref": "http://justice.gov.uk/domain/core/common/definitions.json#/definitions/uuid" + }, + "crackedIneffectiveSubReasonId": { + "$ref": "http://justice.gov.uk/domain/core/common/definitions.json#/definitions/uuid" } }, "oneOf": [ diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandlerTest.java index 1ec751b2ae..45317a3ddf 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandlerTest.java @@ -100,9 +100,9 @@ public void eventHearingSetTrialTypeShouldBeCreated() throws Exception { CommandHelpers.InitiateHearingCommandHelper hearingObject = CommandHelpers.h(standardInitiateHearingTemplate()); final UUID hearingId = hearingObject.getHearingId(); + final UUID crackedIneffectiveSubReasonId = randomUUID(); - - HearingTrialType trialType = new HearingTrialType(hearingId, trialTypeId, "A", "Effective", "Some Description"); + HearingTrialType trialType = new HearingTrialType(hearingId, trialTypeId, "A", "Effective", "Some Description",crackedIneffectiveSubReasonId); final HearingAggregate hearingAggregate = new HearingAggregate() {{ apply(new HearingInitiated(hearingObject.getHearing())); }}; @@ -123,6 +123,7 @@ public void eventHearingSetTrialTypeShouldBeCreated() throws Exception { assertThat(asPojo(events.get(0), HearingTrialType.class), isBean(HearingTrialType.class) .with(HearingTrialType::getHearingId, Matchers.is(hearingId)) .with(HearingTrialType::getTrialTypeId, Matchers.is(trialTypeId)) + .with(HearingTrialType::getCrackedIneffectiveSubReasonId, Matchers.is(crackedIneffectiveSubReasonId)) ); } diff --git a/hearing-domain/hearing-domain-aggregate/src/main/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/HearingTrialTypeDelegate.java b/hearing-domain/hearing-domain-aggregate/src/main/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/HearingTrialTypeDelegate.java index fdffcfee29..18a6f1d837 100644 --- a/hearing-domain/hearing-domain-aggregate/src/main/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/HearingTrialTypeDelegate.java +++ b/hearing-domain/hearing-domain-aggregate/src/main/java/uk/gov/moj/cpp/hearing/domain/aggregate/hearing/HearingTrialTypeDelegate.java @@ -50,6 +50,7 @@ public void handleTrialTypeSetForHearing(final HearingTrialType hearingTrialType .withCode(hearingTrialType.getCode()) .withDescription(hearingTrialType.getDescription()) .withType(hearingTrialType.getType()) + .withCrackedIneffectiveSubReasonId(hearingTrialType.getCrackedIneffectiveSubReasonId()) .build()); this.momento.getHearing().setIsVacatedTrial(false); this.momento.getHearing().setIsEffectiveTrial(null); diff --git a/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/command/TrialType.java b/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/command/TrialType.java index 7a500209c6..58c260e3ac 100644 --- a/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/command/TrialType.java +++ b/hearing-domain/hearing-domain-common/src/main/java/uk/gov/moj/cpp/hearing/command/TrialType.java @@ -11,6 +11,7 @@ public class TrialType { private UUID trialTypeId; private Boolean isEffectiveTrial; private UUID vacatedTrialReasonId; + private UUID crackedIneffectiveSubReasonId; public TrialType() { } @@ -19,11 +20,13 @@ public TrialType() { public TrialType(@JsonProperty("hearingId") final UUID hearingId, @JsonProperty("trialTypeId") final UUID trialTypeId, @JsonProperty("isEffectiveTrial") final Boolean isEffectiveTrial, - @JsonProperty("vacatedTrialReasonId") final UUID vacatedTrialReasonId) { + @JsonProperty("vacatedTrialReasonId") final UUID vacatedTrialReasonId, + @JsonProperty("crackedIneffectiveSubReasonId") final UUID crackedIneffectiveSubReasonId) { this.hearingId = hearingId; this.trialTypeId = trialTypeId; this.isEffectiveTrial = isEffectiveTrial; this.vacatedTrialReasonId = vacatedTrialReasonId; + this.crackedIneffectiveSubReasonId = crackedIneffectiveSubReasonId; } @JsonIgnore @@ -32,6 +35,7 @@ private TrialType(final Builder builder) { this.trialTypeId = builder.trialTypeId; this.isEffectiveTrial = builder.isEffectiveTrial; this.vacatedTrialReasonId = builder.vacatedTrialReasonId; + this.crackedIneffectiveSubReasonId = builder.crackedIneffectiveSubReasonId; } public UUID getHearingId() { @@ -50,6 +54,10 @@ public UUID getVacatedTrialReasonId() { return vacatedTrialReasonId; } + public UUID getCrackedIneffectiveSubReasonId(){ + return crackedIneffectiveSubReasonId; + } + public static Builder builder() { return new Builder(); } @@ -60,6 +68,7 @@ public static final class Builder { private UUID trialTypeId; private Boolean isEffectiveTrial; private UUID vacatedTrialReasonId; + private UUID crackedIneffectiveSubReasonId; public Builder withHearingId(final UUID hearingId) { this.hearingId = hearingId; @@ -81,6 +90,10 @@ public Builder withVacatedTrialReasonId(final UUID vacatedTrialReasonId){ return this; } + public Builder withCrackedIneffectiveSubReasonId(final UUID crackedIneffectiveSubReasonId){ + this.crackedIneffectiveSubReasonId = crackedIneffectiveSubReasonId; + return this; + } public TrialType build() { return new TrialType(this); diff --git a/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/HearingTrialType.java b/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/HearingTrialType.java index 9e913853ac..d6d3860518 100644 --- a/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/HearingTrialType.java +++ b/hearing-domain/hearing-domain-event/src/main/java/uk/gov/moj/cpp/hearing/domain/event/HearingTrialType.java @@ -15,18 +15,21 @@ public class HearingTrialType { private String code; private String description; private String type; + private UUID crackedIneffectiveSubReasonId; @JsonCreator public HearingTrialType(@JsonProperty("hearingId") final UUID hearingId, @JsonProperty("trialTypeId") final UUID trialTypeId, @JsonProperty("code") final String code, @JsonProperty("type") final String type, - @JsonProperty("description") final String description) { + @JsonProperty("description") final String description, + @JsonProperty("crackedIneffectiveSubReasonId") final UUID crackedIneffectiveSubReasonId) { this.hearingId = hearingId; this.trialTypeId = trialTypeId; this.code = code; this.description = description; this.type = type; + this.crackedIneffectiveSubReasonId = crackedIneffectiveSubReasonId; } public UUID getHearingId() { @@ -48,4 +51,6 @@ public String getDescription() { public String getType() { return type; } + + public UUID getCrackedIneffectiveSubReasonId() {return crackedIneffectiveSubReasonId;} } diff --git a/hearing-event/hearing-event-listener/src/main/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListener.java b/hearing-event/hearing-event-listener/src/main/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListener.java index 170dc3e74a..ef1e25c6ef 100644 --- a/hearing-event/hearing-event-listener/src/main/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListener.java +++ b/hearing-event/hearing-event-listener/src/main/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListener.java @@ -436,6 +436,7 @@ public void setHearingTrialType(final JsonEnvelope event) { final Hearing hearing = hearingRepository.findBy(hearingTrialType.getHearingId()); if (nonNull(hearing)) { hearing.setTrialTypeId(hearingTrialType.getTrialTypeId()); + hearing.setCrackedIneffectiveSubReasonId(hearingTrialType.getCrackedIneffectiveSubReasonId()); hearing.setIsEffectiveTrial(null); hearing.setIsVacatedTrial(false); hearing.setvacatedTrialReasonId(null); diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListenerTest.java index bfa3c05fb2..ee47af9049 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListenerTest.java @@ -1419,7 +1419,8 @@ public void setInEffectiveTrialType_shouldPersist_with_hearing() { final UUID trialTypeId = randomUUID(); final Hearing hearingEntity = new Hearing() .setId(hearingId); - final HearingTrialType hearingTrialType = new HearingTrialType(hearingId, trialTypeId, "A", "Effective", "full description"); + final UUID crackedIneffectiveSubReasonId = randomUUID(); + final HearingTrialType hearingTrialType = new HearingTrialType(hearingId, trialTypeId, "A", "Effective", "full description",crackedIneffectiveSubReasonId); when(hearingRepository.findBy(hearingId)).thenReturn(hearingEntity); hearingEventListener.setHearingTrialType(envelopeFrom(metadataWithRandomUUID("hearing.hearing-trial-type-set"), @@ -1431,6 +1432,7 @@ public void setInEffectiveTrialType_shouldPersist_with_hearing() { assertThat(saveHearingCaptor.getValue(), isBean(Hearing.class) .with(Hearing::getId, is(hearingId)) .with(Hearing::getTrialTypeId, is(trialTypeId)) + .with(Hearing::getCrackedIneffectiveSubReasonId, is(crackedIneffectiveSubReasonId)) ); } diff --git a/hearing-event/hearing-event-listener/src/yaml/json/schema/hearing.hearing-trial-type-set.json b/hearing-event/hearing-event-listener/src/yaml/json/schema/hearing.hearing-trial-type-set.json index 2a4f9f6d4d..bf91070dca 100644 --- a/hearing-event/hearing-event-listener/src/yaml/json/schema/hearing.hearing-trial-type-set.json +++ b/hearing-event/hearing-event-listener/src/yaml/json/schema/hearing.hearing-trial-type-set.json @@ -17,6 +17,9 @@ }, "description": { "type": "string" + }, + "crackedIneffectiveSubReasonId": { + "$ref": "http://justice.gov.uk/domain/core/common/definitions.json#/definitions/uuid" } }, "required": [ diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingEventProcessorTest.java index a9198c555c..07f852ca54 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingEventProcessorTest.java @@ -460,8 +460,9 @@ public void shouldTriggerPublicHearingTrialVacatedEventForEffectiveTrial() { public void shouldTriggerPublicHearingTrialVacatedEventForCrackedTrial() { final UUID hearingId = randomUUID(); final UUID trialTypeId = randomUUID(); + final UUID crackedIneffectiveSubReasonId = randomUUID(); - final HearingTrialType hearingTrialType = new HearingTrialType(hearingId, trialTypeId, "code", "cracked", "desc"); + final HearingTrialType hearingTrialType = new HearingTrialType(hearingId, trialTypeId, "code", "cracked", "desc",crackedIneffectiveSubReasonId); final JsonEnvelope eventIn = createJsonEnvelope(hearingTrialType); this.hearingEventProcessor.publicHearingEventTrialTypeSetPublicEvent(eventIn); diff --git a/hearing-event/hearing-event-processor/src/yaml/json/schema/hearing.hearing-trial-type-set.json b/hearing-event/hearing-event-processor/src/yaml/json/schema/hearing.hearing-trial-type-set.json index 2a4f9f6d4d..bf91070dca 100644 --- a/hearing-event/hearing-event-processor/src/yaml/json/schema/hearing.hearing-trial-type-set.json +++ b/hearing-event/hearing-event-processor/src/yaml/json/schema/hearing.hearing-trial-type-set.json @@ -17,6 +17,9 @@ }, "description": { "type": "string" + }, + "crackedIneffectiveSubReasonId": { + "$ref": "http://justice.gov.uk/domain/core/common/definitions.json#/definitions/uuid" } }, "required": [ diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/CaseTimelineIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/CaseTimelineIT.java index 2b951b2d61..9c27410b98 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/CaseTimelineIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/CaseTimelineIT.java @@ -137,6 +137,7 @@ public void shouldFetchDefendantCorrespondingToCaseId() { private void setUpHearing(final ZonedDateTime sittingDay, final Boolean isBoxHearing) { final InitiateHearingCommand initiateHearingCommand = isBoxHearing == null ? standardInitiateHearingTemplate() : standardInitiateHearingTemplateWithIsBoxHearing(isBoxHearing); + final UUID crackedIneffectiveSubReasonId = randomUUID(); hearing = initiateHearingCommand.getHearing(); hearingDay = hearing.getHearingDays().get(0); hearingDay.setSittingDay(sittingDay); @@ -146,6 +147,7 @@ private void setUpHearing(final ZonedDateTime sittingDay, final Boolean isBoxHea final TrialType addTrialType = builder() .withHearingId(hearing.getId()) .withTrialTypeId(INEFFECTIVE_TRIAL_TYPE_ID) + .withCrackedIneffectiveSubReasonId(crackedIneffectiveSubReasonId) .build(); setTrialType(getRequestSpec(), hearing.getId(), addTrialType); diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/CrackedAndIneffectiveHearingIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/CrackedAndIneffectiveHearingIT.java index cb9f23b481..fd1cf80c3f 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/CrackedAndIneffectiveHearingIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/CrackedAndIneffectiveHearingIT.java @@ -140,7 +140,8 @@ private void shouldCancelRemainingDaysWhenMultidayHearing(final UUID trialTypeId final List hearingDays = hearing.getHearingDays(); final HearingDay dayActionPerformed = hearingDays.get(0); final HearingDay cancelledHearingDay = hearingDays.get(1); - final TrialType trialType = TrialType.builder().withTrialTypeId(trialTypeId).build(); + final UUID crackedIneffectiveSubReasonId = randomUUID(); + final TrialType trialType = TrialType.builder().withTrialTypeId(trialTypeId).withCrackedIneffectiveSubReasonId(crackedIneffectiveSubReasonId).build(); SaveDraftResultCommand saveDraftResultCommand = saveDraftResultCommandTemplate(initiateHearingCommandHelper.it(), orderDate, LocalDate.now()); setTrialType(getRequestSpec(), hearing.getId(), trialType, false); diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/SetHearingTrialTypeIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/SetHearingTrialTypeIT.java index beb70e9416..b9753b840d 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/SetHearingTrialTypeIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/SetHearingTrialTypeIT.java @@ -43,17 +43,17 @@ void shouldSetIneffectiveTrialTypeToHearing() { final Hearing hearing = initiateHearingCommand.getHearing(); h(initiateHearing(getRequestSpec(), initiateHearingCommand)); - + final UUID crackedIneffectiveSubReasonId = randomUUID(); final TrialType addTrialType = builder() .withHearingId(hearing.getId()) .withTrialTypeId(INEFFECTIVE_TRIAL_TYPE_ID) + .withCrackedIneffectiveSubReasonId(crackedIneffectiveSubReasonId) .build(); setTrialType(getRequestSpec(), hearing.getId(), addTrialType); final CrackedIneffectiveVacatedTrialType crackedIneffectiveVacatedTrialType = INEFFECTIVE_TRIAL_TYPE; - - CrackedIneffectiveTrial expectedTrialType = new CrackedIneffectiveTrial(crackedIneffectiveVacatedTrialType.getReasonCode(), crackedIneffectiveVacatedTrialType.getDate(), crackedIneffectiveVacatedTrialType.getReasonFullDescription(), crackedIneffectiveVacatedTrialType.getId(), crackedIneffectiveVacatedTrialType.getTrialType()); + CrackedIneffectiveTrial expectedTrialType = new CrackedIneffectiveTrial(crackedIneffectiveVacatedTrialType.getReasonCode(), crackedIneffectiveSubReasonId, crackedIneffectiveVacatedTrialType.getDate(), crackedIneffectiveVacatedTrialType.getReasonFullDescription(), crackedIneffectiveVacatedTrialType.getId(), crackedIneffectiveVacatedTrialType.getTrialType()); getHearingPollForMatch(hearing.getId(), isBean(HearingDetailsResponse.class) .with(HearingDetailsResponse::getHearing, isBean(Hearing.class) @@ -97,7 +97,7 @@ void shouldSetVacateTrialTypeToHearing() { final CrackedIneffectiveVacatedTrialType trialType = VACATED_TRIAL_TYPE; - CrackedIneffectiveTrial expectedTrialType = new CrackedIneffectiveTrial(trialType.getReasonCode(), trialType.getDate(), trialType.getReasonFullDescription(), trialType.getId(), trialType.getTrialType()); + CrackedIneffectiveTrial expectedTrialType = new CrackedIneffectiveTrial(trialType.getReasonCode(), null, trialType.getDate(), trialType.getReasonFullDescription(), trialType.getId(), trialType.getTrialType()); getHearingPollForMatch(hearingOne.getHearingId(), isBean(HearingDetailsResponse.class) .with(HearingDetailsResponse::getHearing, isBean(Hearing.class) diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java index 9624f07c12..9b3ee27265 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java @@ -2538,12 +2538,13 @@ private void amendResultsToShare(final InitiateHearingCommandHelper hearingOne, private CrackedIneffectiveTrial setCrackedIneffectiveTrial(final InitiateHearingCommandHelper hearingOne, final UpdatePleaCommandHelper pleaOne) { final CrackedIneffectiveVacatedTrialType crackedIneffectiveVacatedTrialType = INEFFECTIVE_TRIAL_TYPE; - - CrackedIneffectiveTrial expectedTrialType = new CrackedIneffectiveTrial(crackedIneffectiveVacatedTrialType.getReasonCode(), crackedIneffectiveVacatedTrialType.getDate(), crackedIneffectiveVacatedTrialType.getReasonFullDescription(), crackedIneffectiveVacatedTrialType.getId(), crackedIneffectiveVacatedTrialType.getTrialType()); + final UUID crackedIneffectiveSubReasonId = randomUUID(); + CrackedIneffectiveTrial expectedTrialType = new CrackedIneffectiveTrial(crackedIneffectiveVacatedTrialType.getReasonCode(), crackedIneffectiveSubReasonId, crackedIneffectiveVacatedTrialType.getDate(), crackedIneffectiveVacatedTrialType.getReasonFullDescription(), crackedIneffectiveVacatedTrialType.getId(), crackedIneffectiveVacatedTrialType.getTrialType()); TrialType addTrialType = TrialType.builder() .withHearingId(hearingOne.getHearingId()) .withTrialTypeId(INEFFECTIVE_TRIAL_TYPE_ID) + .withCrackedIneffectiveSubReasonId(crackedIneffectiveSubReasonId) .build(); setTrialType(getRequestSpec(), hearingOne.getHearingId(), addTrialType); @@ -3116,11 +3117,13 @@ private ResultLine getAmendedResultLine(final UUID resultDefinitionId, final uk. private CrackedIneffectiveTrial getExpectedTrialType(final InitiateHearingCommandHelper hearingOne, final UpdatePleaCommandHelper pleaOne, final LocalDate convictionDateToUse) { final CrackedIneffectiveVacatedTrialType crackedIneffectiveVacatedTrialType = INEFFECTIVE_TRIAL_TYPE; - final CrackedIneffectiveTrial expectedTrialType = new CrackedIneffectiveTrial(crackedIneffectiveVacatedTrialType.getReasonCode(), crackedIneffectiveVacatedTrialType.getDate(), crackedIneffectiveVacatedTrialType.getReasonFullDescription(), crackedIneffectiveVacatedTrialType.getId(), crackedIneffectiveVacatedTrialType.getTrialType()); + final UUID crackedIneffectiveSubReasonId = randomUUID(); + final CrackedIneffectiveTrial expectedTrialType = new CrackedIneffectiveTrial(crackedIneffectiveVacatedTrialType.getReasonCode(), crackedIneffectiveSubReasonId, crackedIneffectiveVacatedTrialType.getDate(), crackedIneffectiveVacatedTrialType.getReasonFullDescription(), crackedIneffectiveVacatedTrialType.getId(), crackedIneffectiveVacatedTrialType.getTrialType()); final TrialType addTrialType = TrialType.builder() .withHearingId(hearingOne.getHearingId()) .withTrialTypeId(INEFFECTIVE_TRIAL_TYPE_ID) + .withCrackedIneffectiveSubReasonId(crackedIneffectiveSubReasonId) .build(); setTrialType(getRequestSpec(), hearingOne.getHearingId(), addTrialType); diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/HearingService.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/HearingService.java index caf42f42eb..fc365a2189 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/HearingService.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/HearingService.java @@ -701,6 +701,7 @@ private void updateTrialAttributes(final CrackedIneffectiveVacatedTrialTypes cra final Optional crackedIneffectiveTrialType = getCrackedIneffectiveVacatedTrialType(hearing.getTrialTypeId(), crackedIneffectiveVacatedTrialTypes); crackedIneffectiveTrialType.map(trialType -> new CrackedIneffectiveTrial( trialType.getReasonCode(), + hearing.getCrackedIneffectiveSubReasonId(), trialType.getDate(), trialType.getReasonFullDescription() == null ? "" : trialType.getReasonFullDescription(), trialType.getId(), @@ -715,6 +716,7 @@ private void updateTrialAttributes(final CrackedIneffectiveVacatedTrialTypes cra final Optional crackedIneffectiveTrialType = getCrackedIneffectiveVacatedTrialType(hearing.getVacatedTrialReasonId(), crackedIneffectiveVacatedTrialTypes); crackedIneffectiveTrialType.map(trialType -> new CrackedIneffectiveTrial( trialType.getReasonCode(), + null, trialType.getDate(), trialType.getReasonFullDescription() == null ? "" : trialType.getReasonFullDescription(), trialType.getId(), @@ -787,6 +789,7 @@ public CrackedIneffectiveTrial fetchCrackedIneffectiveTrial(final UUID trialType return crackedIneffectiveTrialType.map(trialType -> new CrackedIneffectiveTrial( trialType.getReasonCode(), + null, trialType.getDate(), trialType.getReasonFullDescription() == null ? "" : trialType.getReasonFullDescription(), trialType.getId(), diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/helper/TimelineHearingSummaryHelperTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/helper/TimelineHearingSummaryHelperTest.java index f0fcd9c42d..d3d42e08c0 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/helper/TimelineHearingSummaryHelperTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/helper/TimelineHearingSummaryHelperTest.java @@ -139,7 +139,7 @@ public void setup() throws IOException { prosecutionCase.setId(hearingSnapshotKey1); prosecutionCase.setDefendants(defendants); hearing.setProsecutionCases(of(prosecutionCase)); - crackedIneffectiveTrial = new CrackedIneffectiveTrial(STRING.next(), LocalDate.now(), STRING.next(), randomUUID(), STRING.next()); + crackedIneffectiveTrial = new CrackedIneffectiveTrial(STRING.next(),randomUUID(), LocalDate.now(), STRING.next(), randomUUID(), STRING.next()); applicationId = UUID.randomUUID(); allCourtRooms = buildCourtRoomsJson(); HearingYouthCourDefendantsKey hearingYouthCourDefendantsKey = new HearingYouthCourDefendantsKey(UUID.randomUUID(), UUID.randomUUID()); @@ -352,7 +352,7 @@ private CourtApplication getCourtApplicationApplicantAsProsecutingAuthority(UUID @Test public void shouldHandleEmptyFields() { - final TimelineHearingSummary timeLineHearingSummary = timelineHearingSummaryHelper.createTimeLineHearingSummary(new HearingDay(), new Hearing(), new CrackedIneffectiveTrial(null, null, null,null, null),createObjectBuilder().build(), hearingYouthCourtDefendantList, caseId); + final TimelineHearingSummary timeLineHearingSummary = timelineHearingSummaryHelper.createTimeLineHearingSummary(new HearingDay(), new Hearing(), new CrackedIneffectiveTrial(null, null,null, null,null, null),createObjectBuilder().build(), hearingYouthCourtDefendantList, caseId); assertThat(timeLineHearingSummary, is(notNullValue())); } diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/HearingServiceTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/HearingServiceTest.java index 7c31b4a424..46e3f164b4 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/HearingServiceTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/HearingServiceTest.java @@ -1174,8 +1174,9 @@ public void shouldFindHearingWithInEffectiveTrailType() { entity.setTrialTypeId(trialTypeId); when(hearingRepository.findBy(hearingId)).thenReturn(entity); - + when(entity.getTrialTypeId()).thenReturn(trialTypeId); when(hearingJPAMapper.fromJPA(entity)).thenReturn(pojo); + when(pojo.getCourtApplications()).thenReturn(null); final HearingDetailsResponse response = hearingService.getHearingDetailsResponseById(null, hearingId, buildCrackedIneffectiveVacatedTrialTypes(trialTypeId), prosecutionCasesIdsWithAccess, false); diff --git a/hearing-viewstore/hearing-viewstore-liquibase/src/main/resources/liquibase/hearing-view-store-db-changesets/136-add-cracked-ineffective-sub-reason-id.xml b/hearing-viewstore/hearing-viewstore-liquibase/src/main/resources/liquibase/hearing-view-store-db-changesets/136-add-cracked-ineffective-sub-reason-id.xml new file mode 100644 index 0000000000..3090a3e508 --- /dev/null +++ b/hearing-viewstore/hearing-viewstore-liquibase/src/main/resources/liquibase/hearing-view-store-db-changesets/136-add-cracked-ineffective-sub-reason-id.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/persist/entity/ha/Hearing.java b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/persist/entity/ha/Hearing.java index 11aa115ed0..c211cc7371 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/persist/entity/ha/Hearing.java +++ b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/persist/entity/ha/Hearing.java @@ -148,6 +148,9 @@ public class Hearing { @Column(name = "first_shared_date") private ZonedDateTime firstSharedDate; + @Column(name = "cracked_ineffective_sub_reason_id") + private UUID crackedIneffectiveSubReasonId; + public Hearing() { //For JPA } @@ -487,6 +490,10 @@ public void setFirstSharedDate(ZonedDateTime firstSharedDate) { this.firstSharedDate = firstSharedDate; } + public UUID getCrackedIneffectiveSubReasonId() {return crackedIneffectiveSubReasonId;} + + public void setCrackedIneffectiveSubReasonId(UUID crackedIneffectiveSubReasonId) {this.crackedIneffectiveSubReasonId = crackedIneffectiveSubReasonId;} + @Override public boolean equals(final Object o) { if (this == o) { diff --git a/pom.xml b/pom.xml index b95cb65789..36bbc11ec8 100644 --- a/pom.xml +++ b/pom.xml @@ -25,13 +25,13 @@ 0.8 1.3.3 0.1.96 - 17.103.11 - 17.103.128 + 17.103.12 + 17.103.129 17.0.57 17.0.58 17.0.1 - 17.103.73 - 17.0.215 + 17.103.77 + 17.0.246 2.2.11 2.6.3 5.7 @@ -75,6 +75,7 @@ **/uk/gov/moj/cpp/hearing/command/updateEvent/**/*, **/uk/gov/moj/cpp/hearing/command/verdict/**/*, **/uk/gov/moj/cpp/hearing/command/witness/**/*, + **/uk/gov/moj/cpp/hearing/command/TrialType.java, **/uk/gov/moj/cpp/hearing/nces/**/*, **/query/view/service/ctl/model/**/* From 8f9f84d0c7f50efc3dbe8ed96c36193ae8e577c4 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 2 Apr 2026 17:28:51 +0000 Subject: [PATCH 30/50] updating poms for 17.0.148 branch with snapshot versions From 016e24046578bb07d41dcf44ee683bc1cdb0909c Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 2 Apr 2026 17:28:57 +0000 Subject: [PATCH 31/50] updating poms for 17.0.149-SNAPSHOT development --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index fc00b6b080..fdb39f477a 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 9f7a79c460..1933012f82 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 69eb539f0e..176a89b73b 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 5dd3ca2cba..937ad9c863 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index 640d93ed41..f6d55e29f4 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 61714db1f5..d23acce01b 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 29045ea9b2..8de573df5c 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 0caeefee9c..6ea9367888 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index c9807b4024..f8ef59b477 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index b5bae28b7f..816e0dccd8 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index eba0bfd562..b8af179047 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index c7262b69b8..929807fc46 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index a33832e5a9..ba79cddf6c 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 83c1d2c161..56afa44738 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 446e583201..683eaf4ef9 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 7767200f59..513fde51bb 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 505b6a6e45..86e720ef7a 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index 829b529844..ee2796a7a0 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 5697274f65..ff762ffbbc 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index b64c184c81..fd81e282bd 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 94ee938fad..227cb25bbd 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 4f23d7578f..5c003a0e98 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index aab6b03832..7dd3e100a6 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 78d548cd1d..df28f54ad8 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 36bbc11ec8..e3784ac047 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index cfab094710..54a32301e4 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.149-SNAPSHOT From 2415c5e337daf3483e0f1567826eddcb338bcca0 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 2 Apr 2026 18:14:13 +0000 Subject: [PATCH 32/50] updating poms for branch'dev/release-17.0.148' with non-snapshot versions --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index fc00b6b080..139a3e2626 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.148-SNAPSHOT + 17.0.148 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 9f7a79c460..1b713277e5 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.148-SNAPSHOT + 17.0.148 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 69eb539f0e..fb843b3597 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.148 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 5dd3ca2cba..340b5726d6 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.148 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index 640d93ed41..a2687449a8 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.148 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 61714db1f5..5593e5102e 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.148 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 29045ea9b2..c4e086326c 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.148 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 0caeefee9c..5ea5e1a14d 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148-SNAPSHOT + 17.0.148 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index c9807b4024..f340e43e07 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.148 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index b5bae28b7f..4e0347940c 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.148 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index eba0bfd562..deb5986ad3 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.148-SNAPSHOT + 17.0.148 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index c7262b69b8..d54128b2f6 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.148 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index a33832e5a9..fac557f2ba 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.148 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 83c1d2c161..06f23391e5 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.148 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 446e583201..0b5bcc6ffd 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.148 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 7767200f59..3c512bd7ad 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148-SNAPSHOT + 17.0.148 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 505b6a6e45..d48e5a9500 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.148-SNAPSHOT + 17.0.148 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index 829b529844..cf50dd8fc0 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.148-SNAPSHOT + 17.0.148 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 5697274f65..6fb3e42180 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.148 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index b64c184c81..caf9740044 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.148 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 94ee938fad..71eb1c802c 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.148-SNAPSHOT + 17.0.148 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 4f23d7578f..73ac5be1d7 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.148-SNAPSHOT + 17.0.148 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index aab6b03832..a8ecbefee4 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.148 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 78d548cd1d..229ec4b511 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.148 pojo-plugin diff --git a/pom.xml b/pom.xml index 36bbc11ec8..f3b300113d 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.148 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index cfab094710..253682ef2a 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148-SNAPSHOT + 17.0.148 From 1a1f8decf4e974d0bb48eca3ec82a761bf8d1393 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 2 Apr 2026 18:14:36 +0000 Subject: [PATCH 33/50] updating develop poms to master versions to avoid merge conflicts --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index fdb39f477a..139a3e2626 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.149-SNAPSHOT + 17.0.148 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 1933012f82..1b713277e5 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.149-SNAPSHOT + 17.0.148 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 176a89b73b..fb843b3597 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.148 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 937ad9c863..340b5726d6 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.148 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index f6d55e29f4..a2687449a8 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.148 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index d23acce01b..5593e5102e 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.148 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 8de573df5c..c4e086326c 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.148 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 6ea9367888..5ea5e1a14d 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.148 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index f8ef59b477..f340e43e07 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.148 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 816e0dccd8..4e0347940c 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.148 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index b8af179047..deb5986ad3 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.149-SNAPSHOT + 17.0.148 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 929807fc46..d54128b2f6 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.148 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index ba79cddf6c..fac557f2ba 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.148 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 56afa44738..06f23391e5 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.148 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 683eaf4ef9..0b5bcc6ffd 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.148 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 513fde51bb..3c512bd7ad 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.148 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 86e720ef7a..d48e5a9500 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.149-SNAPSHOT + 17.0.148 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index ee2796a7a0..cf50dd8fc0 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.149-SNAPSHOT + 17.0.148 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index ff762ffbbc..6fb3e42180 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.148 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index fd81e282bd..caf9740044 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.148 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 227cb25bbd..71eb1c802c 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.149-SNAPSHOT + 17.0.148 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 5c003a0e98..73ac5be1d7 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.149-SNAPSHOT + 17.0.148 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 7dd3e100a6..a8ecbefee4 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.148 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index df28f54ad8..229ec4b511 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.148 pojo-plugin diff --git a/pom.xml b/pom.xml index e3784ac047..f3b300113d 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.148 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 54a32301e4..253682ef2a 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.148 From bcbe23a688a72d6b6a5aeb7de8eac46f9a2a8bd0 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 2 Apr 2026 18:14:42 +0000 Subject: [PATCH 34/50] Updating develop poms back to pre merge state --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 139a3e2626..fdb39f477a 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.148 + 17.0.149-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 1b713277e5..1933012f82 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.148 + 17.0.149-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index fb843b3597..176a89b73b 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148 + 17.0.149-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 340b5726d6..937ad9c863 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148 + 17.0.149-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index a2687449a8..f6d55e29f4 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148 + 17.0.149-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 5593e5102e..d23acce01b 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148 + 17.0.149-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index c4e086326c..8de573df5c 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148 + 17.0.149-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 5ea5e1a14d..6ea9367888 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.148 + 17.0.149-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index f340e43e07..f8ef59b477 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148 + 17.0.149-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 4e0347940c..816e0dccd8 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148 + 17.0.149-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index deb5986ad3..b8af179047 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.148 + 17.0.149-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index d54128b2f6..929807fc46 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.148 + 17.0.149-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index fac557f2ba..ba79cddf6c 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148 + 17.0.149-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 06f23391e5..56afa44738 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148 + 17.0.149-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 0b5bcc6ffd..683eaf4ef9 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148 + 17.0.149-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 3c512bd7ad..513fde51bb 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.148 + 17.0.149-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index d48e5a9500..86e720ef7a 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.148 + 17.0.149-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index cf50dd8fc0..ee2796a7a0 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.148 + 17.0.149-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 6fb3e42180..ff762ffbbc 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148 + 17.0.149-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index caf9740044..fd81e282bd 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148 + 17.0.149-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 71eb1c802c..227cb25bbd 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.148 + 17.0.149-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 73ac5be1d7..5c003a0e98 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.148 + 17.0.149-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index a8ecbefee4..7dd3e100a6 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148 + 17.0.149-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 229ec4b511..df28f54ad8 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148 + 17.0.149-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index f3b300113d..e3784ac047 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148 + 17.0.149-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 253682ef2a..54a32301e4 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.148 + 17.0.149-SNAPSHOT From e0b5e72bf7278109303130ecb64155553a95ce2a Mon Sep 17 00:00:00 2001 From: aykutdanisman Date: Thu, 2 Apr 2026 19:41:52 +0100 Subject: [PATCH 35/50] merge team/CCT-2257 into main (#82) Co-authored-by: jayenhc --- .../view/service/ctl/ReferenceDataService.java | 15 ++++++++++++--- .../service/ctl/ReferenceDataServiceTest.java | 15 +++++++++++++++ 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataService.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataService.java index fd6313bcae..2a2357f143 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataService.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataService.java @@ -33,6 +33,7 @@ import java.util.stream.Collectors; import java.util.stream.Stream; +import static java.util.Objects.nonNull; import static java.util.Optional.empty; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; @@ -78,14 +79,22 @@ public List getPublicHolidays(final String division, public Boolean isOffenceActiveOrder(final UUID applicationTypeId) { final CourtApplicationType applicationType = getApplicationType(applicationTypeId); - return applicationType.getOffenceActiveOrder() == OffenceActiveOrder.OFFENCE - || applicationType.getOffenceActiveOrder() == OffenceActiveOrder.COURT_ORDER ; + if(nonNull(applicationType)) { + return applicationType.getOffenceActiveOrder() == OffenceActiveOrder.OFFENCE + || applicationType.getOffenceActiveOrder() == OffenceActiveOrder.COURT_ORDER; + }else{ + return false; + } } private CourtApplicationType getApplicationType(final UUID applicationTypeId) { final JsonObject jsonObject = getRefData(REFERENCEDATA_QUERY_APPLICATION_TYPE, createObjectBuilder().add("id", applicationTypeId.toString())); - return asApplicationTypeRefData().apply(jsonObject); + if(nonNull(jsonObject) && !jsonObject.isEmpty()) { + return asApplicationTypeRefData().apply(jsonObject); + }else{ + return null; + } } private JsonObject getRefData(final String queryName, final JsonObjectBuilder jsonObjectBuilder) { diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataServiceTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataServiceTest.java index f305a57deb..45d2f9077f 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataServiceTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataServiceTest.java @@ -2,6 +2,7 @@ import static java.time.LocalDate.now; import static java.util.UUID.randomUUID; +import static javax.json.Json.createObjectBuilder; import static javax.json.Json.createReader; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; @@ -118,6 +119,20 @@ public void shouldReturnTrueIfTypeOffenceActiveOrderIsNonOffence() { } + @Test + public void shouldReturnNullIfApplicationTypeIsNotFound() { + + when(requester.requestAsAdmin(any(), any(Class.class))).thenReturn(envelopeFrom( + metadataBuilder(). + withName("referencedata.query.application-type"). + withId(randomUUID()),createObjectBuilder().build())); + + boolean results = referenceDataService.isOffenceActiveOrder(UUID.fromString("72fab61d-e166-4e44-9a4e-046866511993")); + + assertFalse(results); + + } + private JsonEnvelope JudiciaryResponseEnvelope() { return envelopeFrom( metadataBuilder(). From 58fae28660d0bbccf9974d5f97f5f507a90f0e66 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 2 Apr 2026 18:45:49 +0000 Subject: [PATCH 36/50] updating poms for 17.0.149 branch with snapshot versions From 2141d18176945dfc3cb8714711d94a318eaa7c69 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 2 Apr 2026 18:45:53 +0000 Subject: [PATCH 37/50] updating poms for 17.0.150-SNAPSHOT development --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index fdb39f477a..1af7eb0d9d 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 1933012f82..ef99173474 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 176a89b73b..1d424c4f74 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 937ad9c863..69470ecdca 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index f6d55e29f4..f885b0f7a9 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index d23acce01b..f4bf9f7a4c 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 8de573df5c..3655529ed9 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 6ea9367888..0018ceeeeb 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index f8ef59b477..786b69efcc 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 816e0dccd8..f6936064a7 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index b8af179047..986759d260 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 929807fc46..b8bd5eae6d 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index ba79cddf6c..e8089ebf29 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 56afa44738..bf3855c978 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 683eaf4ef9..a6c4bcdd4a 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 513fde51bb..4a108ff0ca 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 86e720ef7a..673a0ece27 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index ee2796a7a0..ec82268110 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index ff762ffbbc..04768a8f2d 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index fd81e282bd..889a61e9f7 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 227cb25bbd..27377a5a8e 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 5c003a0e98..ee1279bb35 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 7dd3e100a6..604d0e37ec 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index df28f54ad8..5e0e7a9ac5 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index e3784ac047..7ea968d43d 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 54a32301e4..6c23770023 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.150-SNAPSHOT From b32e9ad3fc1e1e138273021a77a99be061c1ceed Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 2 Apr 2026 19:27:20 +0000 Subject: [PATCH 38/50] updating poms for branch'dev/release-17.0.149' with non-snapshot versions --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index fdb39f477a..c1408978cd 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.149-SNAPSHOT + 17.0.149 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 1933012f82..a66e13823c 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.149-SNAPSHOT + 17.0.149 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 176a89b73b..2d391d2f00 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.149 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 937ad9c863..3e28e1f0d5 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.149 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index f6d55e29f4..7eabc7d211 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.149 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index d23acce01b..729de76012 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.149 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 8de573df5c..1ad833d450 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.149 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 6ea9367888..b2d352dc6f 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149-SNAPSHOT + 17.0.149 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index f8ef59b477..876f83c723 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.149 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 816e0dccd8..f9daed602f 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.149 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index b8af179047..f9f50dae0f 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.149-SNAPSHOT + 17.0.149 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 929807fc46..038dbd0ce6 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.149 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index ba79cddf6c..ea8efd3fb5 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.149 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 56afa44738..75dc20f83b 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.149 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index 683eaf4ef9..ba31065efd 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.149 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 513fde51bb..06ce0d768d 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149-SNAPSHOT + 17.0.149 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 86e720ef7a..a587ff286d 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.149-SNAPSHOT + 17.0.149 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index ee2796a7a0..de816e34ed 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.149-SNAPSHOT + 17.0.149 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index ff762ffbbc..6cd7c69abf 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.149 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index fd81e282bd..6c4757f368 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.149 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 227cb25bbd..489375fbfe 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.149-SNAPSHOT + 17.0.149 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 5c003a0e98..2d0928bd10 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.149-SNAPSHOT + 17.0.149 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 7dd3e100a6..74f0bc2811 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.149 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index df28f54ad8..e48af3f381 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.149 pojo-plugin diff --git a/pom.xml b/pom.xml index e3784ac047..7f87cbd5e6 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.149 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 54a32301e4..f6a456fbfa 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149-SNAPSHOT + 17.0.149 From bcfd223414ab1d80b45728bc0f8903cae6494e2a Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 2 Apr 2026 19:27:40 +0000 Subject: [PATCH 39/50] updating develop poms to master versions to avoid merge conflicts --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 1af7eb0d9d..c1408978cd 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.150-SNAPSHOT + 17.0.149 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index ef99173474..a66e13823c 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.150-SNAPSHOT + 17.0.149 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 1d424c4f74..2d391d2f00 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.149 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 69470ecdca..3e28e1f0d5 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.149 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index f885b0f7a9..7eabc7d211 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.149 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index f4bf9f7a4c..729de76012 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.149 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 3655529ed9..1ad833d450 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.149 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 0018ceeeeb..b2d352dc6f 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.149 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 786b69efcc..876f83c723 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.149 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index f6936064a7..f9daed602f 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.149 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 986759d260..f9f50dae0f 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.150-SNAPSHOT + 17.0.149 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index b8bd5eae6d..038dbd0ce6 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.149 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index e8089ebf29..ea8efd3fb5 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.149 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index bf3855c978..75dc20f83b 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.149 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index a6c4bcdd4a..ba31065efd 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.149 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 4a108ff0ca..06ce0d768d 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.149 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 673a0ece27..a587ff286d 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.150-SNAPSHOT + 17.0.149 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index ec82268110..de816e34ed 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.150-SNAPSHOT + 17.0.149 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 04768a8f2d..6cd7c69abf 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.149 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 889a61e9f7..6c4757f368 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.149 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 27377a5a8e..489375fbfe 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.150-SNAPSHOT + 17.0.149 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index ee1279bb35..2d0928bd10 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.150-SNAPSHOT + 17.0.149 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 604d0e37ec..74f0bc2811 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.149 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 5e0e7a9ac5..e48af3f381 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.149 pojo-plugin diff --git a/pom.xml b/pom.xml index 7ea968d43d..7f87cbd5e6 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.149 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 6c23770023..f6a456fbfa 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.149 From 3fef922a772c251b9b622fd18f7ff9fc4c554529 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Thu, 2 Apr 2026 19:27:44 +0000 Subject: [PATCH 40/50] Updating develop poms back to pre merge state --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index c1408978cd..1af7eb0d9d 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.149 + 17.0.150-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index a66e13823c..ef99173474 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.149 + 17.0.150-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 2d391d2f00..1d424c4f74 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149 + 17.0.150-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 3e28e1f0d5..69470ecdca 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149 + 17.0.150-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index 7eabc7d211..f885b0f7a9 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149 + 17.0.150-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index 729de76012..f4bf9f7a4c 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149 + 17.0.150-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 1ad833d450..3655529ed9 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149 + 17.0.150-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index b2d352dc6f..0018ceeeeb 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.149 + 17.0.150-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 876f83c723..786b69efcc 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149 + 17.0.150-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index f9daed602f..f6936064a7 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149 + 17.0.150-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index f9f50dae0f..986759d260 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.149 + 17.0.150-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 038dbd0ce6..b8bd5eae6d 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.149 + 17.0.150-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index ea8efd3fb5..e8089ebf29 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149 + 17.0.150-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 75dc20f83b..bf3855c978 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149 + 17.0.150-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index ba31065efd..a6c4bcdd4a 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149 + 17.0.150-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 06ce0d768d..4a108ff0ca 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.149 + 17.0.150-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index a587ff286d..673a0ece27 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.149 + 17.0.150-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index de816e34ed..ec82268110 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.149 + 17.0.150-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 6cd7c69abf..04768a8f2d 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149 + 17.0.150-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 6c4757f368..889a61e9f7 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149 + 17.0.150-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 489375fbfe..27377a5a8e 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.149 + 17.0.150-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 2d0928bd10..ee1279bb35 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.149 + 17.0.150-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 74f0bc2811..604d0e37ec 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149 + 17.0.150-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index e48af3f381..5e0e7a9ac5 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149 + 17.0.150-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 7f87cbd5e6..7ea968d43d 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149 + 17.0.150-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index f6a456fbfa..6c23770023 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.149 + 17.0.150-SNAPSHOT From b321d558314a64a3e4a07404fee418cac8c2757c Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Fri, 3 Apr 2026 09:03:52 +0000 Subject: [PATCH 41/50] updating poms for 17.0.150 branch with snapshot versions From 407a87a69d221dd5f789f57c786ce2f9c8f68bbc Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Fri, 3 Apr 2026 09:03:56 +0000 Subject: [PATCH 42/50] updating poms for 17.0.151-SNAPSHOT development --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 1af7eb0d9d..8ddd13cc49 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index ef99173474..6c1dca4ff1 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 1d424c4f74..c15117e983 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 69470ecdca..4a3800a493 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index f885b0f7a9..bfcb7ccd83 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index f4bf9f7a4c..db575c49ca 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 3655529ed9..a91c982721 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 0018ceeeeb..2a7bab641e 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 786b69efcc..cbc14cd88b 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index f6936064a7..4cbd1b6a4e 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 986759d260..10f01a8b33 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index b8bd5eae6d..98f5a8a571 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index e8089ebf29..e185f272c1 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index bf3855c978..899c73ea18 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index a6c4bcdd4a..c59432c87b 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 4a108ff0ca..46e9c1f838 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 673a0ece27..67ac56cb30 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index ec82268110..b03e87f36d 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 04768a8f2d..74dd791b6a 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 889a61e9f7..d2f8a6547a 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 27377a5a8e..db23f58537 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index ee1279bb35..41302a4241 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 604d0e37ec..8a21d93465 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 5e0e7a9ac5..e149de5fcf 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 7ea968d43d..5fd1087054 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 6c23770023..5e2ee80743 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.151-SNAPSHOT From fa58f73c54b72514117e820f35ef72c8f5a8849b Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Fri, 3 Apr 2026 09:52:41 +0000 Subject: [PATCH 43/50] updating poms for branch'dev/release-17.0.150' with non-snapshot versions --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 1af7eb0d9d..e2af4c5677 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.150-SNAPSHOT + 17.0.150 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index ef99173474..b0c0c2e1c4 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.150-SNAPSHOT + 17.0.150 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 1d424c4f74..2034e3a001 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.150 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 69470ecdca..1f0a41d2dd 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.150 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index f885b0f7a9..70dc7a0728 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.150 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index f4bf9f7a4c..f2074a1359 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.150 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 3655529ed9..30ef7676d8 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.150 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 0018ceeeeb..cf46f68e17 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150-SNAPSHOT + 17.0.150 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 786b69efcc..b61b8aebe4 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.150 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index f6936064a7..c588e2c8ff 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.150 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 986759d260..1621dd31d7 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.150-SNAPSHOT + 17.0.150 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index b8bd5eae6d..71cc196b96 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.150 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index e8089ebf29..c6fd066c2e 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.150 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index bf3855c978..4d61844aae 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.150 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index a6c4bcdd4a..b5fae1e172 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.150 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 4a108ff0ca..3d98c317e2 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150-SNAPSHOT + 17.0.150 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 673a0ece27..52d31323b4 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.150-SNAPSHOT + 17.0.150 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index ec82268110..52a018d776 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.150-SNAPSHOT + 17.0.150 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 04768a8f2d..f7a837cfe8 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.150 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 889a61e9f7..c6133caafd 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.150 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 27377a5a8e..6714a06d08 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.150-SNAPSHOT + 17.0.150 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index ee1279bb35..97f56728cc 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.150-SNAPSHOT + 17.0.150 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 604d0e37ec..92e90620df 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.150 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 5e0e7a9ac5..0799040800 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.150 pojo-plugin diff --git a/pom.xml b/pom.xml index 7ea968d43d..006724660f 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.150 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 6c23770023..b3ae090ce2 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150-SNAPSHOT + 17.0.150 From 8368f6414cb7b1da8471fed024461fcda341b483 Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Fri, 3 Apr 2026 09:53:09 +0000 Subject: [PATCH 44/50] updating develop poms to master versions to avoid merge conflicts --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 8ddd13cc49..e2af4c5677 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.151-SNAPSHOT + 17.0.150 hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 6c1dca4ff1..b0c0c2e1c4 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.151-SNAPSHOT + 17.0.150 hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index c15117e983..2034e3a001 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.150 hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 4a3800a493..1f0a41d2dd 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-SNAPSHOT + 17.0.150 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index bfcb7ccd83..70dc7a0728 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-SNAPSHOT + 17.0.150 hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index db575c49ca..f2074a1359 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-SNAPSHOT + 17.0.150 hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index a91c982721..30ef7676d8 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-SNAPSHOT + 17.0.150 hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 2a7bab641e..cf46f68e17 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-SNAPSHOT + 17.0.150 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index cbc14cd88b..b61b8aebe4 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.150 hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 4cbd1b6a4e..c588e2c8ff 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-SNAPSHOT + 17.0.150 ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 10f01a8b33..1621dd31d7 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.151-SNAPSHOT + 17.0.150 hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 98f5a8a571..71cc196b96 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.151-SNAPSHOT + 17.0.150 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index e185f272c1..c6fd066c2e 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.150 hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 899c73ea18..4d61844aae 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-SNAPSHOT + 17.0.150 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index c59432c87b..b5fae1e172 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.150 hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 46e9c1f838..3d98c317e2 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-SNAPSHOT + 17.0.150 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 67ac56cb30..52d31323b4 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.151-SNAPSHOT + 17.0.150 hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index b03e87f36d..52a018d776 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.151-SNAPSHOT + 17.0.150 hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 74dd791b6a..f7a837cfe8 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.150 hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index d2f8a6547a..c6133caafd 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.150 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index db23f58537..6714a06d08 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.151-SNAPSHOT + 17.0.150 hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 41302a4241..97f56728cc 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.151-SNAPSHOT + 17.0.150 hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 8a21d93465..92e90620df 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.150 hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index e149de5fcf..0799040800 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.150 pojo-plugin diff --git a/pom.xml b/pom.xml index 5fd1087054..006724660f 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.150 pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 5e2ee80743..b3ae090ce2 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.150 From 63fa8950feba1d697926bb6f7ebaaab7ba9f6a1d Mon Sep 17 00:00:00 2001 From: embedded_devops_sa Date: Fri, 3 Apr 2026 09:53:15 +0000 Subject: [PATCH 45/50] Updating develop poms back to pre merge state --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index e2af4c5677..8ddd13cc49 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.150 + 17.0.151-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index b0c0c2e1c4..6c1dca4ff1 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.150 + 17.0.151-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 2034e3a001..c15117e983 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150 + 17.0.151-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 1f0a41d2dd..4a3800a493 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150 + 17.0.151-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index 70dc7a0728..bfcb7ccd83 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150 + 17.0.151-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index f2074a1359..db575c49ca 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150 + 17.0.151-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 30ef7676d8..a91c982721 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150 + 17.0.151-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index cf46f68e17..2a7bab641e 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.150 + 17.0.151-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index b61b8aebe4..cbc14cd88b 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150 + 17.0.151-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index c588e2c8ff..4cbd1b6a4e 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150 + 17.0.151-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 1621dd31d7..10f01a8b33 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.150 + 17.0.151-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 71cc196b96..98f5a8a571 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.150 + 17.0.151-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index c6fd066c2e..e185f272c1 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150 + 17.0.151-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 4d61844aae..899c73ea18 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150 + 17.0.151-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index b5fae1e172..c59432c87b 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150 + 17.0.151-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 3d98c317e2..46e9c1f838 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.150 + 17.0.151-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 52d31323b4..67ac56cb30 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.150 + 17.0.151-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index 52a018d776..b03e87f36d 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.150 + 17.0.151-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index f7a837cfe8..74dd791b6a 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150 + 17.0.151-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index c6133caafd..d2f8a6547a 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150 + 17.0.151-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 6714a06d08..db23f58537 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.150 + 17.0.151-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 97f56728cc..41302a4241 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.150 + 17.0.151-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 92e90620df..8a21d93465 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150 + 17.0.151-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index 0799040800..e149de5fcf 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150 + 17.0.151-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 006724660f..5fd1087054 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150 + 17.0.151-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index b3ae090ce2..5e2ee80743 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.150 + 17.0.151-SNAPSHOT From abb7893e64a7b825311e3eb40d331da6ca527f02 Mon Sep 17 00:00:00 2001 From: Zeeshan Alam Date: Wed, 15 Apr 2026 13:19:04 +0100 Subject: [PATCH 46/50] RELEASE-ENGG-2609: Bump pom version to -RE-SNAPSHOT --- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 2 +- test-utilities/pom.xml | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index 8ddd13cc49..f68649096e 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index 6c1dca4ff1..df944690cf 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index c15117e983..57c608ad0d 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 4a3800a493..94fc3459c7 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index bfcb7ccd83..e716c59620 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index db575c49ca..d84dab16c6 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index a91c982721..3802d67650 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index 2a7bab641e..b51f8ba575 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index cbc14cd88b..4189c43397 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 4cbd1b6a4e..4afe050f48 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 10f01a8b33..7a58526f55 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 98f5a8a571..11e8505907 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index e185f272c1..35616f0543 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 899c73ea18..72fd74bb39 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index c59432c87b..d292f46a73 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index 46e9c1f838..df2765bc8d 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 67ac56cb30..41d156700c 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index b03e87f36d..fbcf4f4694 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index 74dd791b6a..d004827001 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index d2f8a6547a..0a1ff90cf6 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index db23f58537..686e3c5189 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index 41302a4241..c174b08a7b 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 8a21d93465..0f379916e0 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index e149de5fcf..caa3b59cc4 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 5fd1087054..5ae0ff1278 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT pom Hearing Context - Parent Module diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 5e2ee80743..2b50e77e8e 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-SNAPSHOT + 17.0.151-RE-SNAPSHOT From 1ea878ce0525c7e81527f1f881e59a068f68d1c6 Mon Sep 17 00:00:00 2001 From: vmuthu Date: Fri, 23 Jan 2026 15:31:33 +0000 Subject: [PATCH 47/50] PEG-2973 cpp-context-hearing Framework D changes --- .../command/api/HearingEventCommandApi.java | 4 +- .../api/service/HearingQueryService.java | 2 +- .../api/service/ReferenceDataService.java | 2 +- ...ndantsWelshTranslationsCommandApiTest.java | 2 +- .../command/api/HearingCommandApiTest.java | 2 +- .../api/HearingEventCommandApiTest.java | 4 +- .../api/NotificationCommandApiTest.java | 4 +- .../api/ReusableInfoCommandApiTest.java | 2 +- .../YouthCourtDefendantsCommandApiTest.java | 2 +- .../api/service/HearingQueryServiceTest.java | 2 +- .../api/service/ReferenceDataServiceTest.java | 4 +- .../handler/CustodyTimeLimitClockHandler.java | 2 +- .../PublishCourtListStatusHandler.java | 6 +-- .../handler/SetTrialTypeCommandHandler.java | 2 +- .../handler/service/ReferenceDataService.java | 2 +- .../AddDefendantCommandHandlerTest.java | 40 +++++++------- ...endantIdToDefendantCommandHandlerTest.java | 2 +- ...icationDetailChangeCommandHandlerTest.java | 18 +++---- .../CaseMarkersCommandHandlerTest.java | 16 +++--- .../CustodyTimeLimitClockHandlerTest.java | 4 +- ...tsWelshTranslationsCommandHandlerTest.java | 6 +-- .../DeleteCourtApplicationHandlerTest.java | 4 +- .../DeleteHearingCommandHandlerTest.java | 4 +- .../DuplicateHearingCommandHandlerTest.java | 4 +- ...ctCaseOrApplicationCommandHandlerTest.java | 16 +++--- ...endCustodyTimeLimitCommandHandlerTest.java | 2 +- .../InitiateHearingCommandHandlerTest.java | 2 +- .../ProsecutionCaseCommandHandlerTest.java | 4 +- ...ProvisionalHearingSlotInfoHandlerTest.java | 4 +- .../PublishCourtListStatusHandlerTest.java | 14 ++--- ...xtHearingDayUpdatedCommandHandlerTest.java | 4 +- ...eCaseFromGroupCasesCommandHandlerTest.java | 4 +- .../RemoveTargetsCommandHandlerTest.java | 4 +- .../RequestApprovalCommandHandlerTest.java | 2 +- .../SetTrialTypeCommandHandlerTest.java | 2 +- .../UnallocateHearingCommandHandlerTest.java | 4 +- .../UnlockHearingCommandHandlerTest.java | 2 +- .../UpdateCaseDefendantsHandlerTest.java | 20 +++---- ...ndantLegalAidStatusCommandHandlerTest.java | 12 ++--- ...movedFromGroupCasesCommandHandlerTest.java | 4 +- ...pdateOffenceResultsCommandHandlerTest.java | 4 +- ...sultLineSharedDatesCommandHandlerTest.java | 8 +-- .../UpdateTargetCommandHandlerTest.java | 4 +- ...ateResultAmendmentsCommandHandlerTest.java | 2 +- .../service/ReferenceDataServiceTest.java | 10 ++-- .../hearing/common/ReferenceDataLoader.java | 2 +- .../aggregate/HearingAggregateTest.java | 8 +-- .../util/HearingTargetsSharedTest.java | 2 +- .../XhibitEventMappingsListTest.java | 4 +- .../xhibit/CurrentCourtStatusTest.java | 4 +- .../listener/ReusableInfoEventListener.java | 4 +- .../AddDefendantEventListenerTest.java | 4 +- ...OrganisationDetailsUpdateListenerTest.java | 4 +- .../CaseEjectedEventListenerTest.java | 6 +-- ...rtApplicationEjectedEventListenerTest.java | 6 +-- ...HearingCaseNoteSavedEventListenerTest.java | 4 +- .../HearingDeletedEventListenerTest.java | 2 +- .../listener/HearingEventListenerTest.java | 24 ++++----- .../HearingJudiciaryListenerTest.java | 2 +- .../listener/HearingLogEventListenerTest.java | 2 +- .../HearingUnallocatedEventListenerTest.java | 2 +- .../InitiateHearingEventListenerTest.java | 8 +-- .../ReusableInfoEventListenerTest.java | 4 +- ...CounselsForDefendantEventListenerTest.java | 4 +- .../hearing/activiti/common/JsonHelper.java | 8 +-- .../BookProvisionalHearingSlotsProcessor.java | 10 ++-- ...eDefendantDetailsChangeEventProcessor.java | 4 +- ...eDefendantsUpdatedForHearingProcessor.java | 2 +- .../event/CaseDefendantsUpdatedProcessor.java | 6 +-- .../event/ConvictionDateEventProcessor.java | 2 +- .../CourtApplicationDeletedProcessor.java | 4 +- .../CreateProsecutionCaseEventProcessor.java | 2 +- .../event/CustodyTimeLimitEventProcessor.java | 2 +- ...fendantLegalAidStatusUpdatedProcessor.java | 6 +-- .../event/DuplicateHearingEventProcessor.java | 2 +- .../event/HearingDeletedEventProcessor.java | 2 +- .../HearingUnallocatedEventProcessor.java | 2 +- .../event/InitiateHearingEventProcessor.java | 6 +-- ...tesCourtInitiateHearingEventProcessor.java | 2 +- .../event/PleaUpdateEventProcessor.java | 2 +- .../event/PublishResultsEventProcessor.java | 10 ++-- .../event/PublishResultsV2EventProcessor.java | 10 ++-- ...ateOffencesForDefendantEventProcessor.java | 8 +-- .../event/VerdictUpdateEventProcessor.java | 2 +- .../event/WitnessAddedEventProcessor.java | 2 +- .../YouthCourtDefendantsUpdatedProcessor.java | 2 +- .../delegates/PublishResultsDelegate.java | 4 +- .../event/helper/ResultsSharedHelper.java | 6 +-- .../event/helper/ResultsSharedHelperV3.java | 6 +-- .../JudiciaryUpdatedUserAddedProcessor.java | 2 +- .../relist/RelistReferenceDataService.java | 2 +- ...lcoholLevelMethodsReferenceDataLoader.java | 2 +- .../BailStatusReferenceDataLoader.java | 2 +- .../service/CourtHouseReverseLookup.java | 2 +- .../service/CourtRoomOuCodeReverseLookup.java | 2 +- ...fectiveVacatedTrialTypesReverseLookup.java | 2 +- .../event/service/FixedListLookup.java | 2 +- .../service/HearingTypeReverseLookup.java | 2 +- .../event/service/LjaReferenceDataLoader.java | 2 +- .../service/NowsReferenceDataLoader.java | 2 +- .../service/OrganisationalUnitLoader.java | 2 +- .../service/PleaTypeReferenceDataLoader.java | 2 +- .../event/service/ProgressionService.java | 2 +- .../event/service/ProsecutorDataLoader.java | 2 +- .../event/service/ReferenceDataLoader.java | 2 +- .../event/service/UsersGroupService.java | 2 +- .../VerdictTypesReferenceDataLoader.java | 2 +- .../hearing/pi/ProsecutionCaseRetriever.java | 54 ++++++++++++++++++- .../xhibit/CourtCentreHearingsRetriever.java | 2 +- .../xhibit/ProgressionCaseRetriever.java | 2 +- .../xhibit/PublishCourtListCommandSender.java | 2 +- .../xhibit/ReferenceDataXhibitDataLoader.java | 2 +- ...icationDetailChangeEventProcessorTest.java | 2 +- ...eApplicationEjectedEventProcessorTest.java | 6 +-- .../CaseDefendantAddEventProcessorTest.java | 4 +- ...endantDetailsChangeEventProcessorTest.java | 2 +- ...endantsUpdatedForHearingProcessorTest.java | 4 +- .../CaseDefendantsUpdatedProcessorTest.java | 10 ++-- .../event/CaseMarkerEventProcessorTest.java | 16 +++--- ...movedFromGroupCasesEventProcessorTest.java | 10 ++-- ...mpanyRepresentativeEventProcessorTest.java | 4 +- .../ConvictionDateEventProcessorTest.java | 6 +-- .../CourtApplicationDeletedProcessorTest.java | 4 +- ...psProsecutorUpdatedEventProcessorTest.java | 14 ++--- ...eateProsecutionCaseEventProcessorTest.java | 2 +- .../CustodyTimeLimitEventProcessorTest.java | 8 +-- ...efenceCounselChangeEventProcessorTest.java | 6 +-- .../DefenceCounselEventProcessorTest.java | 4 +- ...DefendantAttendanceEventProcessorTest.java | 4 +- ...ithdrawnOrDismissedEventProcessorTest.java | 4 +- ...antLegalAidStatusUpdatedProcessorTest.java | 8 +-- .../DuplicateHearingEventProcessorTest.java | 4 +- .../moj/cpp/hearing/event/Framework5Fix.java | 4 +- .../HearingDeletedEventProcessorTest.java | 4 +- ...HearingDetailChangeEventProcessorTest.java | 14 ++--- .../event/HearingEventProcessorTest.java | 4 +- .../HearingStatesEventProcessorTest.java | 12 ++--- .../HearingUnallocatedEventProcessorTest.java | 4 +- .../HearingVacatedEventProcessorTest.java | 2 +- ...edTrialDetailChangeEventProcessorTest.java | 4 +- .../InitiateHearingEventProcessorTest.java | 4 +- ...ingCourtRestrictionEventProcessorTest.java | 4 +- .../NewTargetToLegacyTargetConverterTest.java | 4 +- .../event/NextHearingEventProcessorTest.java | 4 +- ...cutionCounselChangeEventProcessorTest.java | 8 +-- .../ProsecutionCounselEventProcessorTest.java | 4 +- ...ffencesForDefendantEventProcessorTest.java | 4 +- .../helper/NextHearingHelperTest.java | 4 +- .../helper/NextHearingHelperV3Test.java | 4 +- ...udiciaryUpdatedUserAddedProcessorTest.java | 2 +- .../RelistReferenceDataServiceTest.java | 4 +- ...olLevelMethodsReferenceDataLoaderTest.java | 2 +- .../BailStatusReferenceDataLoaderTest.java | 2 +- .../service/CourtHouseReverseLookupTest.java | 2 +- .../CourtRoomOuCodeReverseLookupTest.java | 4 +- .../service/CrownCourtCentresCacheTest.java | 4 +- .../PleaTypeReferenceDataLoaderTest.java | 4 +- .../event/service/ProgressionServiceTest.java | 4 +- .../service/ProsecutorDataLoaderTest.java | 2 +- .../service/ReferenceDataClientTestBase.java | 2 +- .../service/ReferenceDataLoaderTest.java | 8 +-- .../VerdictTypeReferenceDataLoaderTest.java | 2 +- .../pi/ProsecutionCaseRetrieverTest.java | 2 +- .../CourtCentreHearingsRetrieverTest.java | 2 +- ...hCourtListRequestParametersParserTest.java | 2 +- ...ractPublishLatestCourtCentreHearingIT.java | 2 +- .../it/AddMasterDefendantIdToDefendantIT.java | 2 +- .../cpp/hearing/it/ApplicationTimelineIT.java | 4 +- .../it/DefendantLegalAidStatusUpdateIT.java | 4 +- .../moj/cpp/hearing/it/ExtendHearingIT.java | 6 +-- .../moj/cpp/hearing/it/HearingCaseNoteIT.java | 4 +- .../moj/cpp/hearing/it/HearingEventsIT.java | 8 +-- .../moj/cpp/hearing/it/InitiateHearingIT.java | 6 +-- .../gov/moj/cpp/hearing/it/NCESJourneyIT.java | 2 +- ...treHearingEventsViaSystemSchedulingIT.java | 4 +- .../uk/gov/moj/cpp/hearing/it/Queries.java | 2 +- .../cpp/hearing/it/RestructureResultsIT.java | 4 +- .../moj/cpp/hearing/it/ReusableInfoIT.java | 4 +- .../gov/moj/cpp/hearing/it/SessionTimeIT.java | 26 ++++----- .../moj/cpp/hearing/it/ShareResultsIT.java | 8 +-- .../uk/gov/moj/cpp/hearing/it/UseCases.java | 14 ++--- .../uk/gov/moj/cpp/hearing/it/Utilities.java | 4 +- .../it/YouthCourtDefendantsUpdatedIT.java | 6 +-- .../steps/HearingEventStepDefinitions.java | 4 +- .../cpp/hearing/utils/ReferenceDataStub.java | 12 ++--- .../cpp/hearing/utils/SystemIdMapperStub.java | 2 +- .../cpp/hearing/utils/WireMockStubUtils.java | 4 +- ...eryApiHearingsEventLogExtractResource.java | 4 +- .../hearing/query/api/HearingQueryApi.java | 8 +-- .../accessfilter/UsersAndGroupsService.java | 6 +-- .../progression/ProgressionService.java | 2 +- .../referencedata/ReferenceDataService.java | 2 +- .../usergroups/UserGroupQueryService.java | 2 +- ...DefendantOutstandingFinesQueryApiTest.java | 6 +-- .../query/api/HearingQueryApiTest.java | 2 +- .../service/UserGroupQueryServiceTest.java | 2 +- .../accessfilter/GroupsMapperTest.java | 12 ++--- .../accessfilter/PermissionMapperTest.java | 18 +++---- .../service/accessfilter/RolesMapperTest.java | 22 ++++---- .../UsersAndGroupsServiceTest.java | 6 +-- .../ReferenceDataServiceTest.java | 6 +-- .../query/view/HearingEventQueryView.java | 4 +- .../hearing/query/view/HearingQueryView.java | 12 ++--- .../ReusableInformationBaseConverter.java | 2 +- .../ReusableInformationMainConverter.java | 2 +- .../query/view/service/HearingService.java | 12 ++--- .../view/service/ProgressionService.java | 2 +- .../view/service/ReusableInfoService.java | 4 +- .../service/ctl/ReferenceDataService.java | 2 +- .../service/userdata/UserDataService.java | 6 +-- .../query/view/HearingEventQueryViewTest.java | 2 +- .../hearing/query/view/HearingQueryTest.java | 30 +++++------ .../query/view/SessionTimeQueryViewTest.java | 2 +- .../ReusableInformationMainConverterTest.java | 2 + .../TimelineHearingSummaryHelperTest.java | 4 +- .../view/service/HearingServiceTest.java | 8 +-- .../view/service/JudgeNameMapperTest.java | 6 +-- .../view/service/ProgressionServiceTest.java | 12 ++--- .../view/service/ReusableInfoServiceTest.java | 12 ++--- .../view/service/SessionTimeServiceTest.java | 4 +- .../service/userdata/UserDataServiceTest.java | 2 +- ...ApplicationCourtListRestrictionMapper.java | 4 +- .../hearing/mapping/CaseMarkerJPAMapper.java | 6 +-- .../mapping/CourtApplicationsSerializer.java | 4 +- .../hearing/mapping/DraftResultJPAMapper.java | 4 +- .../HearingApplicantCounselJPAMapper.java | 8 +-- .../mapping/HearingCaseNoteJPAMapper.java | 10 ++-- ...HearingCompanyRepresentativeJPAMapper.java | 8 +-- .../HearingDefenceCounselJPAMapper.java | 8 +-- ...aringInterpreterIntermediaryJPAMapper.java | 8 +-- .../HearingProsecutionCounselJPAMapper.java | 8 +-- .../HearingRespondentCounselJPAMapper.java | 8 +-- .../cpp/hearing/mapping/TargetJPAMapper.java | 4 +- .../uk/gov/moj/cpp/hearing/test/FileUtil.java | 2 +- 234 files changed, 664 insertions(+), 610 deletions(-) diff --git a/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/HearingEventCommandApi.java b/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/HearingEventCommandApi.java index d5f3aa746d..fd2017a587 100644 --- a/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/HearingEventCommandApi.java +++ b/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/HearingEventCommandApi.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.command.api; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.COMMAND_API; import uk.gov.justice.services.common.converter.ZonedDateTimes; diff --git a/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/service/HearingQueryService.java b/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/service/HearingQueryService.java index 39dcc25be8..cb89005f4d 100644 --- a/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/service/HearingQueryService.java +++ b/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/service/HearingQueryService.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.command.api.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.COMMAND_API; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonObjects.getUUID; diff --git a/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/service/ReferenceDataService.java b/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/service/ReferenceDataService.java index fd59323184..e04a7a21e5 100644 --- a/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/service/ReferenceDataService.java +++ b/hearing-command/hearing-command-api/src/main/java/uk/gov/moj/cpp/hearing/command/api/service/ReferenceDataService.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.command.api.service; import static java.util.stream.Collectors.toList; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.COMMAND_API; import static uk.gov.justice.services.messaging.Envelope.metadataFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; diff --git a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/DefendantsWelshTranslationsCommandApiTest.java b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/DefendantsWelshTranslationsCommandApiTest.java index a6ff23b704..7a500fc8bb 100644 --- a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/DefendantsWelshTranslationsCommandApiTest.java +++ b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/DefendantsWelshTranslationsCommandApiTest.java @@ -16,7 +16,7 @@ import javax.json.JsonObject; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; import static org.mockito.Mockito.verify; diff --git a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiTest.java b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiTest.java index 0bcfa242be..27ba791509 100644 --- a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiTest.java +++ b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingCommandApiTest.java @@ -6,7 +6,7 @@ import static java.util.function.Function.identity; import static java.util.stream.Collectors.toList; import static java.util.stream.Collectors.toMap; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.containsInAnyOrder; import static org.hamcrest.core.Is.is; diff --git a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingEventCommandApiTest.java b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingEventCommandApiTest.java index 638cf20801..7f473edeac 100644 --- a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingEventCommandApiTest.java +++ b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/HearingEventCommandApiTest.java @@ -6,8 +6,8 @@ import static java.lang.Boolean.TRUE; import static java.lang.String.format; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/NotificationCommandApiTest.java b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/NotificationCommandApiTest.java index 276ca630f3..d779f9f2d4 100644 --- a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/NotificationCommandApiTest.java +++ b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/NotificationCommandApiTest.java @@ -2,8 +2,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; diff --git a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/ReusableInfoCommandApiTest.java b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/ReusableInfoCommandApiTest.java index 5ce7d475aa..a89809c7c4 100644 --- a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/ReusableInfoCommandApiTest.java +++ b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/ReusableInfoCommandApiTest.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.command.api; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; import static org.mockito.Mockito.verify; diff --git a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/YouthCourtDefendantsCommandApiTest.java b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/YouthCourtDefendantsCommandApiTest.java index f7fb39776e..d72260dcbd 100644 --- a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/YouthCourtDefendantsCommandApiTest.java +++ b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/YouthCourtDefendantsCommandApiTest.java @@ -12,7 +12,7 @@ import javax.json.JsonObject; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; import static org.mockito.Mockito.verify; diff --git a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/service/HearingQueryServiceTest.java b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/service/HearingQueryServiceTest.java index 56de5e4a2a..427d528842 100644 --- a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/service/HearingQueryServiceTest.java +++ b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/service/HearingQueryServiceTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.command.api.service; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; diff --git a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/service/ReferenceDataServiceTest.java b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/service/ReferenceDataServiceTest.java index e14f75e79f..49f31750fb 100644 --- a/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/service/ReferenceDataServiceTest.java +++ b/hearing-command/hearing-command-api/src/test/java/uk/gov/moj/cpp/hearing/command/api/service/ReferenceDataServiceTest.java @@ -23,7 +23,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -71,7 +71,7 @@ public void shouldReturnValidResultDefinition() { @Test public void shouldReturnEmptyResultDefinition() { - final JsonObject jsonObjectPayload = Json.createObjectBuilder().add("resultDefinitions", Json.createArrayBuilder().add(Json.createObjectBuilder().build())).build(); + final JsonObject jsonObjectPayload = JsonObjects.createObjectBuilder().add("resultDefinitions", JsonObjects.createArrayBuilder().add(JsonObjects.createObjectBuilder().build())).build(); final Metadata metadata = CommandAPITestBase.metadataFor(RESULT_QUERY, randomUUID().toString()); final Envelope envelope = Envelope.envelopeFrom(metadata, jsonObjectPayload); diff --git a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/CustodyTimeLimitClockHandler.java b/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/CustodyTimeLimitClockHandler.java index a427c19e09..c18a549f66 100644 --- a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/CustodyTimeLimitClockHandler.java +++ b/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/CustodyTimeLimitClockHandler.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.command.handler; import static java.util.stream.Collectors.toList; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.COMMAND_HANDLER; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; diff --git a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/PublishCourtListStatusHandler.java b/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/PublishCourtListStatusHandler.java index 3a5d6e8c46..0020480a5a 100644 --- a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/PublishCourtListStatusHandler.java +++ b/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/PublishCourtListStatusHandler.java @@ -23,7 +23,7 @@ import java.util.stream.Stream; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonString; import javax.json.JsonValue; @@ -94,7 +94,7 @@ public void publishHearingListsForCrownCourts(final JsonEnvelope commandEnvelope @Handles("hearing.command.publish-hearing-lists-for-crown-courts-with-ids") public void publishHearingListsForCrownCourtsWithIds(final JsonEnvelope commandEnvelope) { Optional.ofNullable(commandEnvelope.payloadAsJsonObject().getJsonArray("ids")) - .orElse(Json.createArrayBuilder().build()).getValuesAs(JsonString.class) + .orElse(JsonObjects.createArrayBuilder().build()).getValuesAs(JsonString.class) .stream().map(JsonString::getString).map(UUID::fromString) .forEach(courtCentreId -> publishFinalCourtList(commandEnvelope.metadata(), courtCentreId)); } @@ -121,7 +121,7 @@ private PublishCourtList generatePublishCourtListCommand(final UUID courtCentreI } public static JsonValue asJson(final PublishCourtList publishCourtList) { - return Json.createObjectBuilder() + return JsonObjects.createObjectBuilder() .add(PublishCourtListFields.COURT_CENTRE_ID.getInternalName(), publishCourtList.getCourtCentreId().toString()) .add(PublishCourtListFields.CREATED_TIME.getInternalName(), publishCourtList.getCreatedTime().toString()) .build(); diff --git a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandler.java b/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandler.java index 71e45ae5cf..2e99d3894b 100644 --- a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandler.java +++ b/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandler.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.command.handler; import static java.util.Objects.nonNull; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.COMMAND_HANDLER; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; diff --git a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/service/ReferenceDataService.java b/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/service/ReferenceDataService.java index e1620b4fc5..f78bb8511c 100644 --- a/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/service/ReferenceDataService.java +++ b/hearing-command/hearing-command-handler/src/main/java/uk/gov/moj/cpp/hearing/command/handler/service/ReferenceDataService.java @@ -18,7 +18,7 @@ import java.util.stream.Collectors; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.COMMAND_API; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataBuilder; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/AddDefendantCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/AddDefendantCommandHandlerTest.java index 614451d173..fef2d5de88 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/AddDefendantCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/AddDefendantCommandHandlerTest.java @@ -42,7 +42,7 @@ import java.time.ZonedDateTime; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -99,8 +99,8 @@ public void testCaseDefendantAddedIgnored() throws EventStreamException { when(this.eventSource.getStreamById(arbitraryDefendant.getProsecutionCaseId())).thenReturn(this.caseEventStream); when(this.aggregateService.get(this.caseEventStream, CaseAggregate.class)).thenReturn(caseAggregate); - JsonObject payload = Json.createObjectBuilder() - .add("defendants", Json.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) + JsonObject payload = JsonObjects.createObjectBuilder() + .add("defendants", JsonObjects.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.add-defendant"), payload); @@ -130,8 +130,8 @@ public void testCaseDefendantAdded_When_Hearing_Date_Already_Passed() throws Eve when(this.eventSource.getStreamById(arbitraryDefendant.getProsecutionCaseId())).thenReturn(this.caseEventStream); when(this.aggregateService.get(this.caseEventStream, CaseAggregate.class)).thenReturn(caseAggregate); - JsonObject payload = Json.createObjectBuilder() - .add("defendants", Json.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) + JsonObject payload = JsonObjects.createObjectBuilder() + .add("defendants", JsonObjects.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.add-defendant"), payload); when(this.eventSource.getStreamById(arbitraryHearingObject.getHearingId())).thenReturn(this.hearingEventStream); @@ -167,8 +167,8 @@ public void testCaseDefendantShouldAdded() throws EventStreamException { when(this.eventSource.getStreamById(arbitraryDefendant.getProsecutionCaseId())).thenReturn(this.caseEventStream); when(this.aggregateService.get(this.caseEventStream, CaseAggregate.class)).thenReturn(caseAggregate); - JsonObject payload = Json.createObjectBuilder() - .add("defendants", Json.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) + JsonObject payload = JsonObjects.createObjectBuilder() + .add("defendants", JsonObjects.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.add-defendant"), payload); when(this.eventSource.getStreamById(arbitraryHearingObject.getHearingId())).thenReturn(this.hearingEventStream); @@ -204,8 +204,8 @@ public void testCaseDefendantShouldNotBeAddedWhenDuplicate() throws EventStreamE when(this.eventSource.getStreamById(arbitraryDefendant.getProsecutionCaseId())).thenReturn(this.caseEventStream); when(this.aggregateService.get(this.caseEventStream, CaseAggregate.class)).thenReturn(caseAggregate); - JsonObject payload = Json.createObjectBuilder() - .add("defendants", Json.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) + JsonObject payload = JsonObjects.createObjectBuilder() + .add("defendants", JsonObjects.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.add-defendant"), payload); when(this.eventSource.getStreamById(arbitraryHearingObject.getHearingId())).thenReturn(this.hearingEventStream); @@ -248,8 +248,8 @@ public void testCaseDefendantShouldAdded_When_Hearing_Date_In_Future() throws Ev when(this.eventSource.getStreamById(arbitraryDefendant.getProsecutionCaseId())).thenReturn(this.caseEventStream); when(this.aggregateService.get(this.caseEventStream, CaseAggregate.class)).thenReturn(caseAggregate); - JsonObject payload = Json.createObjectBuilder() - .add("defendants", Json.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) + JsonObject payload = JsonObjects.createObjectBuilder() + .add("defendants", JsonObjects.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.add-defendant"), payload); when(this.eventSource.getStreamById(arbitraryHearingObject.getHearingId())).thenReturn(this.hearingEventStream); @@ -284,9 +284,9 @@ public void shouldAddDefendantToAllHearingsWhenListHearingRequestsAreEmpty() thr when(this.eventSource.getStreamById(arbitraryDefendant.getProsecutionCaseId())).thenReturn(this.caseEventStream); when(this.aggregateService.get(this.caseEventStream, CaseAggregate.class)).thenReturn(caseAggregate); - JsonObject payload = Json.createObjectBuilder() - .add("defendants", Json.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) - .add("listHearingRequests", Json.createArrayBuilder().build()) + JsonObject payload = JsonObjects.createObjectBuilder() + .add("defendants", JsonObjects.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) + .add("listHearingRequests", JsonObjects.createArrayBuilder().build()) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.add-defendant"), payload); when(this.eventSource.getStreamById(arbitraryHearingObject.getHearingId())).thenReturn(this.hearingEventStream); @@ -328,9 +328,9 @@ public void shouldNotAddDefendantToAnyHearingsWhenNoMatchToListHearingRequests() .build(); - JsonObject payload = Json.createObjectBuilder() - .add("defendants", Json.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) - .add("listHearingRequests", Json.createArrayBuilder().add(objectToJsonObjectConverter.convert(listHearingRequest)).build()) + JsonObject payload = JsonObjects.createObjectBuilder() + .add("defendants", JsonObjects.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) + .add("listHearingRequests", JsonObjects.createArrayBuilder().add(objectToJsonObjectConverter.convert(listHearingRequest)).build()) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.add-defendant"), payload); when(this.eventSource.getStreamById(arbitraryHearingObject.getHearingId())).thenReturn(this.hearingEventStream); @@ -374,9 +374,9 @@ public void shouldAddDefendantToHearingWithMatchingHearingRequest() throws Event .build(); - JsonObject payload = Json.createObjectBuilder() - .add("defendants", Json.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) - .add("listHearingRequests", Json.createArrayBuilder().add(objectToJsonObjectConverter.convert(listHearingRequest)).build()) + JsonObject payload = JsonObjects.createObjectBuilder() + .add("defendants", JsonObjects.createArrayBuilder().add(objectToJsonObjectConverter.convert(arbitraryDefendant)).build()) + .add("listHearingRequests", JsonObjects.createArrayBuilder().add(objectToJsonObjectConverter.convert(listHearingRequest)).build()) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.add-defendant"), payload); diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/AddMasterDefendantIdToDefendantCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/AddMasterDefendantIdToDefendantCommandHandlerTest.java index 3a067f9599..3458cdd04a 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/AddMasterDefendantIdToDefendantCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/AddMasterDefendantIdToDefendantCommandHandlerTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.command.handler; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.mockito.Mockito.when; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ApplicationDetailChangeCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ApplicationDetailChangeCommandHandlerTest.java index 5a85c4fcc1..b95e266ca5 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ApplicationDetailChangeCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ApplicationDetailChangeCommandHandlerTest.java @@ -50,7 +50,7 @@ import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -105,7 +105,7 @@ public void testUpdateExistingCourtApplicationShouldIgnored_When_Hearing_Not_Fou when(this.eventSource.getStreamById(courtApplication.getId())).thenReturn(this.applicationEventStream); when(this.aggregateService.get(this.applicationEventStream, ApplicationAggregate.class)).thenReturn(applicationAggregate); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("courtApplication", objectToJsonObjectConverter.convert(courtApplication)) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.update-court-application"), payload); @@ -138,7 +138,7 @@ public void testUpdateExistingCourtApplicationShouldApply_When_Application_Alrea when(this.aggregateService.get(this.applicationEventStream, ApplicationAggregate.class)).thenReturn(applicationAggregate); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("courtApplication", objectToJsonObjectConverter.convert(courtApplication)) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.update-court-application"), payload); @@ -177,7 +177,7 @@ void testUpdateLaaReferenceForApplicationShouldIgnored_When_Hearing_Not_Found() when(this.eventSource.getStreamById(applicationId)).thenReturn(this.applicationEventStream); when(this.aggregateService.get(this.applicationEventStream, ApplicationAggregate.class)).thenReturn(applicationAggregate); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("applicationId", applicationId.toString()) .add("subjectId", subjectId.toString() ) .add("offenceId", offenceId.toString() ) @@ -221,7 +221,7 @@ void testUpdateLaaRefernceForApplicationShouldApply_When_Application_Already_Add when(this.aggregateService.get(this.applicationEventStream, ApplicationAggregate.class)).thenReturn(applicationAggregate); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("applicationId", applicationId.toString()) .add("subjectId", subjectId.toString() ) .add("offenceId", offenceId.toString() ) @@ -267,7 +267,7 @@ void testUpdateLaaRefernceForApplicationShouldApply_When_Application_Already_Add when(this.aggregateService.get(this.applicationEventStream, ApplicationAggregate.class)).thenReturn(applicationAggregate); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("applicationId", applicationId.toString()) .add("subjectId", subjectId.toString() ) .add("laaReference", objectToJsonObjectConverter.convert(laaReference)) @@ -314,7 +314,7 @@ void testUpdateDefenceOrganisationForApplicationShouldIgnored_When_Hearing_Not_F when(this.eventSource.getStreamById(applicationId)).thenReturn(this.applicationEventStream); when(this.aggregateService.get(this.applicationEventStream, ApplicationAggregate.class)).thenReturn(applicationAggregate); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("applicationId", applicationId.toString()) .add("subjectId", subjectId.toString() ) .add("associatedDefenceOrganisation", objectToJsonObjectConverter.convert(associatedDefenceOrganisation)) @@ -362,7 +362,7 @@ void testUpdateDefenceOrganisationForApplicationShouldApply_When_Application_Alr when(this.aggregateService.get(this.applicationEventStream, ApplicationAggregate.class)).thenReturn(applicationAggregate); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("applicationId", applicationId.toString()) .add("subjectId", subjectId.toString() ) .add("associatedDefenceOrganisation", objectToJsonObjectConverter.convert(associatedDefenceOrganisation)) @@ -415,7 +415,7 @@ void testUpdateDefenceOrganisationAsNullForApplicationShouldApply_When_Applicati when(this.aggregateService.get(this.applicationEventStream, ApplicationAggregate.class)).thenReturn(applicationAggregate); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("applicationId", applicationId.toString()) .add("subjectId", subjectId.toString() ) .build(); diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/CaseMarkersCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/CaseMarkersCommandHandlerTest.java index aacbbc1c72..b97417c4e6 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/CaseMarkersCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/CaseMarkersCommandHandlerTest.java @@ -26,7 +26,7 @@ import java.util.UUID; import java.util.stream.Collectors; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.hamcrest.Matchers; @@ -80,11 +80,11 @@ public void updateCaseMarkers() throws EventStreamException { aggregate.registerHearingId(fromString("34d07e81-9770-4d23-af6f-84f1d7571bd3"), fromString("581767a1-22af-408a-92f0-20837846cc6f")); aggregate.registerHearingId(fromString("34d07e81-9770-4d23-af6f-84f1d7571bd3"), fromString("123767a1-22af-408a-92f0-20837846cc67")); - final JsonObject payload = Json.createObjectBuilder() + final JsonObject payload = JsonObjects.createObjectBuilder() .add("prosecutionCaseId", "34d07e81-9770-4d23-af6f-84f1d7571bd3") .add("hearingId", "581767a1-22af-408a-92f0-20837846cc6f") - .add("caseMarkers", Json.createArrayBuilder() - .add(Json.createObjectBuilder() + .add("caseMarkers", JsonObjects.createArrayBuilder() + .add(JsonObjects.createObjectBuilder() .add("id", "3789ab16-0bb7-4ef1-87ef-c936bf0364f1") .add("markerTypeid", "3789ab16-0bb7-4ef1-87ef-c936bf0364f1") .add("markerTypeCode", "WP") @@ -112,13 +112,13 @@ public void updateCaseMarkers() throws EventStreamException { @Test public void updateCaseMarkersForAssociatedHearings() throws EventStreamException { - final JsonObject payload = Json.createObjectBuilder() + final JsonObject payload = JsonObjects.createObjectBuilder() .add("prosecutionCaseId", "34d07e81-9770-4d23-af6f-84f1d7571bd3") - .add("hearingIds", Json.createArrayBuilder() + .add("hearingIds", JsonObjects.createArrayBuilder() .add("581767a1-22af-408a-92f0-20837846cc6f") .build()) - .add("caseMarkers", Json.createArrayBuilder() - .add(Json.createObjectBuilder() + .add("caseMarkers", JsonObjects.createArrayBuilder() + .add(JsonObjects.createObjectBuilder() .add("id", "3789ab16-0bb7-4ef1-87ef-c936bf0364f1") .add("markerTypeid", "3789ab16-0bb7-4ef1-87ef-c936bf0364f1") .add("markerTypeCode", "WP") diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/CustodyTimeLimitClockHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/CustodyTimeLimitClockHandlerTest.java index df3a43e781..7af5b7263d 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/CustodyTimeLimitClockHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/CustodyTimeLimitClockHandlerTest.java @@ -3,8 +3,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.codehaus.groovy.runtime.InvokerHelper.asList; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DefendantsWelshTranslationsCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DefendantsWelshTranslationsCommandHandlerTest.java index 529c40a5ea..4ba957e056 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DefendantsWelshTranslationsCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DefendantsWelshTranslationsCommandHandlerTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.command.handler; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.eq; @@ -33,7 +33,7 @@ import java.util.UUID; import java.util.stream.Collectors; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObjectBuilder; import org.junit.jupiter.api.Test; @@ -103,7 +103,7 @@ private JsonEnvelope createHearingCommandSaveDefendantsWelshTranslationsEnvelope final DefendantsWithWelshTranslationsCommand defendantsWithWelshTranslationsCommand) { final JsonObjectBuilder payloadBuilder = createObjectBuilder() .add("hearingId", hearingId.toString()) - .add("defendantsWelshList", Json.createArrayBuilder().add(objectToJsonObjectConverter.convert(defendantsWithWelshTranslationsCommand)).build()); + .add("defendantsWelshList", JsonObjects.createArrayBuilder().add(objectToJsonObjectConverter.convert(defendantsWithWelshTranslationsCommand)).build()); return JsonEnvelope.envelopeFrom(metadataWithRandomUUID("hearing.command.save-defendants-welsh-translations"), payloadBuilder.build()); } diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DeleteCourtApplicationHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DeleteCourtApplicationHandlerTest.java index 8fda64b1b4..8373edd1fe 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DeleteCourtApplicationHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DeleteCourtApplicationHandlerTest.java @@ -21,7 +21,7 @@ import java.util.UUID; import java.util.stream.Stream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -62,7 +62,7 @@ public void shouldHandleDeleteCourtApplication() throws EventStreamException { when(eventSource.getStreamById(any())).thenReturn(eventStream); when(aggregateService.get(eventStream, HearingAggregate.class)).thenReturn(hearingAggregate); when(hearingAggregate.deleteCourtApplicationHearing(hearingId)).thenReturn(mock(Stream.class)); - final JsonObject payload = Json.createObjectBuilder() + final JsonObject payload = JsonObjects.createObjectBuilder() .add("hearingId", hearingId.toString()) .build(); final JsonEnvelope commandEnvelope = createEnvelope("hearing.command.delete-court-application-hearing", payload); diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DeleteHearingCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DeleteHearingCommandHandlerTest.java index fe890edd86..3c5ee9dc18 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DeleteHearingCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DeleteHearingCommandHandlerTest.java @@ -2,8 +2,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.AllOf.allOf; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DuplicateHearingCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DuplicateHearingCommandHandlerTest.java index 30cca91cc1..311b0497dc 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DuplicateHearingCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/DuplicateHearingCommandHandlerTest.java @@ -2,8 +2,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.AllOf.allOf; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/EjectCaseOrApplicationCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/EjectCaseOrApplicationCommandHandlerTest.java index 066bd85fae..b12a2beb5c 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/EjectCaseOrApplicationCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/EjectCaseOrApplicationCommandHandlerTest.java @@ -35,7 +35,7 @@ import java.util.UUID; import java.util.stream.Stream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -74,8 +74,8 @@ public class EjectCaseOrApplicationCommandHandlerTest { public void shouldEjectCase() throws EventStreamException { final UUID hearingId = randomUUID(); final UUID prosecutionCaseId = randomUUID(); - JsonObject payload = Json.createObjectBuilder() - .add("hearingIds", Json.createArrayBuilder().add(hearingId.toString())) + JsonObject payload = JsonObjects.createObjectBuilder() + .add("hearingIds", JsonObjects.createArrayBuilder().add(hearingId.toString())) .add("prosecutionCaseId", prosecutionCaseId.toString()) .build(); final JsonEnvelope envelope = @@ -95,7 +95,7 @@ public void shouldEjectCase() throws EventStreamException { @Test public void shouldEjectCaseWhenHearingIdsNotPresent() throws EventStreamException { final UUID prosecutionCaseId = randomUUID(); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("prosecutionCaseId", prosecutionCaseId.toString()) .build(); final JsonEnvelope envelope = @@ -112,7 +112,7 @@ public void shouldEjectCaseWhenHearingIdsNotPresent() throws EventStreamExceptio @Test public void shouldEjectApplicationWhenHearingIdsNotPresent() throws EventStreamException { final UUID applicationId = randomUUID(); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("applicationId", applicationId.toString()) .build(); final JsonEnvelope envelope = @@ -129,7 +129,7 @@ public void shouldEjectApplicationWhenHearingIdsNotPresent() throws EventStreamE @Test public void shouldRaiseCourtApplicationEjectedWhenProsecutionCaseIdIsNullButHearingIdsIsNotNull() throws EventStreamException { final UUID applicationId = randomUUID(); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("applicationId", applicationId.toString()) .build(); final JsonEnvelope envelope = @@ -150,8 +150,8 @@ public void shouldRaiseCourtApplicationEjectedWhenProsecutionCaseIdIsNullButHear public void shouldEjectCourtApplication() throws EventStreamException { final UUID hearingId = randomUUID(); final UUID applicationId = randomUUID(); - JsonObject payload = Json.createObjectBuilder() - .add("hearingIds", Json.createArrayBuilder().add(hearingId.toString())) + JsonObject payload = JsonObjects.createObjectBuilder() + .add("hearingIds", JsonObjects.createArrayBuilder().add(hearingId.toString())) .add("applicationId", applicationId.toString()) .build(); final JsonEnvelope envelope = diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ExtendCustodyTimeLimitCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ExtendCustodyTimeLimitCommandHandlerTest.java index 90e8df5752..650361f244 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ExtendCustodyTimeLimitCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ExtendCustodyTimeLimitCommandHandlerTest.java @@ -2,7 +2,7 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.AllOf.allOf; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/InitiateHearingCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/InitiateHearingCommandHandlerTest.java index 6264cb580e..47e89fbd7d 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/InitiateHearingCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/InitiateHearingCommandHandlerTest.java @@ -5,7 +5,7 @@ import static java.util.Collections.singletonList; import static java.util.UUID.randomUUID; import static java.util.stream.Collectors.toList; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.hasItem; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ProsecutionCaseCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ProsecutionCaseCommandHandlerTest.java index d943f08058..65033419a1 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ProsecutionCaseCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ProsecutionCaseCommandHandlerTest.java @@ -1,8 +1,8 @@ package uk.gov.moj.cpp.hearing.command.handler; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ProvisionalHearingSlotInfoHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ProvisionalHearingSlotInfoHandlerTest.java index a26fb31fd9..90b152c392 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ProvisionalHearingSlotInfoHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ProvisionalHearingSlotInfoHandlerTest.java @@ -2,8 +2,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.time.ZonedDateTime.parse; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.AllOf.allOf; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/PublishCourtListStatusHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/PublishCourtListStatusHandlerTest.java index 7f117fbfca..e7dbf8a9f0 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/PublishCourtListStatusHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/PublishCourtListStatusHandlerTest.java @@ -1,9 +1,9 @@ package uk.gov.moj.cpp.hearing.command.handler; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; -import static javax.json.Json.createReader; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createReader; import static org.apache.commons.lang3.RandomStringUtils.randomAlphanumeric; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; @@ -39,7 +39,7 @@ import java.util.UUID; import java.util.stream.Stream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonReader; @@ -108,7 +108,7 @@ public void hearingCommandHandlerShouldTriggerExportFailedForPublishEvent() thro .replace("ERROR_MESSAGE", errorMessage) .replace("CREATED_TIME", createdTime.toString()); try { - final JsonReader jsonReader = Json.createReader(new StringReader(jsonString)); + final JsonReader jsonReader = JsonObjects.createReader(new StringReader(jsonString)); final JsonEnvelope commandEnvelope = createEnvelope("hearing.command.record-court-list-export-failed", jsonReader.readObject()); publishCourtListStatusHandler.recordCourtListExportFailed(commandEnvelope); verify(courtListAggregate).recordCourtListExportFailed(any(UUID.class), any(String.class), any(ZonedDateTime.class), eq(errorMessage)); @@ -133,7 +133,7 @@ public void hearingCommandHandlerShouldTriggerExportSuccessfulForPublishEvent() .replace("CREATED_TIME", createdTime); try { - final JsonReader jsonReader = Json.createReader(new StringReader(jsonString)); + final JsonReader jsonReader = JsonObjects.createReader(new StringReader(jsonString)); final JsonEnvelope commandEnvelope = createEnvelope("hearing.command.record-court-list-export-successful", jsonReader.readObject()); publishCourtListStatusHandler.recordCourtListExportSuccessful(commandEnvelope); verify(courtListAggregate).recordCourtListExportSuccessful(any(UUID.class), any(String.class), any(ZonedDateTime.class)); @@ -154,7 +154,7 @@ public void shouldCreatePublishHearingListRequestedEvent() throws Exception { final String jsonString = givenPayload("/hearing.command.publish-court-list.json").toString() .replace("COURT_CENTRE_ID", courtCentreId.toString()); - final JsonReader jsonReader = Json.createReader(new StringReader(jsonString)); + final JsonReader jsonReader = JsonObjects.createReader(new StringReader(jsonString)); final JsonEnvelope commandEnvelope = createEnvelope("hearing.command.publish-court-list", jsonReader.readObject()); publishCourtListStatusHandler.publishCourtList(commandEnvelope); verify(courtListAggregate).recordCourtListRequested(any(UUID.class), any(ZonedDateTime.class)); diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RecordNextHearingDayUpdatedCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RecordNextHearingDayUpdatedCommandHandlerTest.java index ced54304b6..dc8f8f8305 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RecordNextHearingDayUpdatedCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RecordNextHearingDayUpdatedCommandHandlerTest.java @@ -32,7 +32,7 @@ import java.time.ZonedDateTime; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.hamcrest.Matchers; @@ -76,7 +76,7 @@ public void shouldCreateNextHearingDayChangedEvent() throws EventStreamException final UUID seedingHearingId = randomUUID(); final ZonedDateTime earliestNextHearingDate = ZonedDateTime.of(2022, 01, 01, 0, 0, 0, 0, ZoneId.of("UTC")); - final JsonObject payload = Json.createObjectBuilder() + final JsonObject payload = JsonObjects.createObjectBuilder() .add("hearingId", hearingId.toString()) .add("seedingHearingId", seedingHearingId.toString()) .add("hearingStartDate", "2021-06-20T00:00:00.000Z") diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RemoveCaseFromGroupCasesCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RemoveCaseFromGroupCasesCommandHandlerTest.java index b5018f7af0..1cc4f3bdc2 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RemoveCaseFromGroupCasesCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RemoveCaseFromGroupCasesCommandHandlerTest.java @@ -42,7 +42,7 @@ import java.util.UUID; import java.util.stream.Stream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObjectBuilder; import org.junit.jupiter.api.BeforeEach; @@ -222,7 +222,7 @@ public void shouldCreatePrivateEvent_WhenCaseRemovedWithMultipleHearings() throw } private JsonEnvelope getJsonEnvelopeForRemoveCommand(final UUID groupId, final UUID masterCaseId, final ProsecutionCase removedCase, final ProsecutionCase newGroupMaster) { - JsonObjectBuilder builder = Json.createObjectBuilder() + JsonObjectBuilder builder = JsonObjects.createObjectBuilder() .add("groupId", groupId.toString()) .add("masterCaseId", masterCaseId.toString()) .add("removedCase", objectToJsonObjectConverter.convert(removedCase)); diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RemoveTargetsCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RemoveTargetsCommandHandlerTest.java index 2b862247e9..687a195ea4 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RemoveTargetsCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RemoveTargetsCommandHandlerTest.java @@ -1,8 +1,8 @@ package uk.gov.moj.cpp.hearing.command.handler; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.mockito.Mockito.when; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RequestApprovalCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RequestApprovalCommandHandlerTest.java index 901bb44270..4bc9b9e58f 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RequestApprovalCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/RequestApprovalCommandHandlerTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.command.handler; import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.AllOf.allOf; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandlerTest.java index 45317a3ddf..a86e427ff9 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/SetTrialTypeCommandHandlerTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.command.handler; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UnallocateHearingCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UnallocateHearingCommandHandlerTest.java index 58a4447d7e..758bc9387e 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UnallocateHearingCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UnallocateHearingCommandHandlerTest.java @@ -2,8 +2,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.AllOf.allOf; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UnlockHearingCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UnlockHearingCommandHandlerTest.java index 5f9853c6ef..de14222524 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UnlockHearingCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UnlockHearingCommandHandlerTest.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.command.handler; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.Mockito.when; import static uk.gov.justice.services.test.utils.core.enveloper.EnveloperFactory.createEnveloperWithEvents; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateCaseDefendantsHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateCaseDefendantsHandlerTest.java index 5da6744dba..678d26483d 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateCaseDefendantsHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateCaseDefendantsHandlerTest.java @@ -43,7 +43,7 @@ import java.util.Arrays; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.BeforeEach; @@ -120,7 +120,7 @@ public void testCaseDefendantsUpdated() throws EventStreamException{ .withId(defendantId) .withProceedingsConcluded(true).build())) .build(); - final JsonObject commandPayload = Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() .add("prosecutionCase",objectToJsonObjectConverter.convert(prosecutionCase)) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.command.update-case-defendants"), commandPayload); @@ -141,12 +141,12 @@ public void testCaseDefendantsForHearingUpdated() throws EventStreamException{ setupMockedEventStream(hearingId, this.hearingEventStream, hearingAggregate); hearingAggregate.initiate(initiateHearingCommand.getHearing()); - final JsonObject commandPayload = Json.createObjectBuilder() - .add("prosecutionCase",Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() + .add("prosecutionCase",JsonObjects.createObjectBuilder() .add("caseStatus", "CLOSED") .add("id", caseId.toString()) - .add("defendants", Json.createArrayBuilder() - .add(Json.createObjectBuilder() + .add("defendants", JsonObjects.createArrayBuilder() + .add(JsonObjects.createObjectBuilder() .add("id",defendantId.toString()) .add("proceedingsConcluded", true) .build()).build()) @@ -178,7 +178,7 @@ public void testApplicationDefendantsUpdated() throws EventStreamException{ .withId(defendantId) .build()) .build(); - final JsonObject commandPayload = Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() .add("courtApplication",objectToJsonObjectConverter.convert(courtApplication)) .build(); final JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.command.update-application-defendants"), commandPayload); @@ -202,10 +202,10 @@ public void testApplicationDefendantsForHearingUpdated() throws EventStreamExcep setupMockedEventStream(hearingId, this.hearingEventStream, hearingAggregate); hearingAggregate.initiate(initiateHearingCommand.getHearing()); - final JsonObject commandPayload = Json.createObjectBuilder() - .add("courtApplication", Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() + .add("courtApplication", JsonObjects.createObjectBuilder() .add("id", applicationId.toString()) - .add("applicant", Json.createObjectBuilder() + .add("applicant", JsonObjects.createObjectBuilder() .add("id", defendantId.toString()) .build()).build()) .add("hearingId", hearingId.toString()) diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateDefendantLegalAidStatusCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateDefendantLegalAidStatusCommandHandlerTest.java index 02526e0335..08564cdb9c 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateDefendantLegalAidStatusCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateDefendantLegalAidStatusCommandHandlerTest.java @@ -31,7 +31,7 @@ import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.BeforeEach; @@ -87,10 +87,10 @@ public void testUpdateDefendantLegalAidStatus () throws EventStreamException { defendantAggregate.registerHearing(defendantId, hearingId); - final JsonObject commandPayload = Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() .add("defendantId", defendantId.toString()) .add("legalAidStatus", "Granted") - .add("hearingIds", Json.createArrayBuilder().add(hearingId.toString()).build()) + .add("hearingIds", JsonObjects.createArrayBuilder().add(hearingId.toString()).build()) .build(); @@ -114,10 +114,10 @@ public void testUpdateDefendantLegalAidStatusWhenHearingNotRegisteredAgainstDefe - final JsonObject commandPayload = Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() .add("defendantId", defendantId.toString()) .add("legalAidStatus", "Granted") - .add("hearingIds", Json.createArrayBuilder().add(hearingId.toString()).build()) + .add("hearingIds", JsonObjects.createArrayBuilder().add(hearingId.toString()).build()) .build(); @@ -137,7 +137,7 @@ public void testUpdateDefendantLegalAidStatusForHearing () throws EventStreamExc hearingAggregate.initiate(initiateHearingCommand.getHearing()); - final JsonObject commandPayload = Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() .add("hearingId", hearingId.toString()) .add("defendantId", defendantId.toString()) .add("legalAidStatus", "Granted") diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateHearingAfterCaseRemovedFromGroupCasesCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateHearingAfterCaseRemovedFromGroupCasesCommandHandlerTest.java index c8c185f985..98f346ac39 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateHearingAfterCaseRemovedFromGroupCasesCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateHearingAfterCaseRemovedFromGroupCasesCommandHandlerTest.java @@ -36,7 +36,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObjectBuilder; import org.junit.jupiter.api.BeforeEach; @@ -174,7 +174,7 @@ private void assertHearingAggregateValues(final UUID groupId, final List c private JsonEnvelope getJsonEnvelopeForRemoveCommand(final UUID hearingId, final UUID groupId, final ProsecutionCase removedCase, final ProsecutionCase newGroupMaster) { - JsonObjectBuilder builder = Json.createObjectBuilder() + JsonObjectBuilder builder = JsonObjects.createObjectBuilder() .add("hearingId", hearingId.toString()) .add("groupId", groupId.toString()) .add("removedCase", objectToJsonObjectConverter.convert(removedCase)); diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateOffenceResultsCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateOffenceResultsCommandHandlerTest.java index 9a046cd850..66b1d16cbb 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateOffenceResultsCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateOffenceResultsCommandHandlerTest.java @@ -7,8 +7,8 @@ import static java.util.UUID.randomUUID; import static java.util.stream.Collectors.toList; import static java.util.stream.Collectors.toMap; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.containsInAnyOrder; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateResultLineSharedDatesCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateResultLineSharedDatesCommandHandlerTest.java index e4c62f6d21..1d7f6e9c67 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateResultLineSharedDatesCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateResultLineSharedDatesCommandHandlerTest.java @@ -26,7 +26,7 @@ import java.util.UUID; import java.util.stream.Collectors; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import com.fasterxml.jackson.annotation.JsonAutoDetect; @@ -79,10 +79,10 @@ public void updateResultLineSharedDates() throws EventStreamException { final UUID resultLineId1 = UUID.randomUUID(); final String sharedDate = "2020-02-05"; - final JsonObject payload = Json.createObjectBuilder() + final JsonObject payload = JsonObjects.createObjectBuilder() .add("hearingId", hearingId.toString()) - .add("resultLinesToBeUpdated", Json.createArrayBuilder() - .add(Json.createObjectBuilder() + .add("resultLinesToBeUpdated", JsonObjects.createArrayBuilder() + .add(JsonObjects.createObjectBuilder() .add("resultLineId", resultLineId1.toString()) .add("sharedDate", sharedDate) )).build(); diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateTargetCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateTargetCommandHandlerTest.java index a2e2ed37f9..1fc8cee318 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateTargetCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdateTargetCommandHandlerTest.java @@ -23,7 +23,7 @@ import java.util.UUID; import java.util.stream.Stream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -61,7 +61,7 @@ void shouldHandlePatchApplicationFinalisedOnTarget() throws EventStreamException final UUID hearingId = UUID.randomUUID(); final UUID targetId = UUID.randomUUID(); final LocalDate hearingDay = LocalDate.now(); - final JsonObject payload = Json.createObjectBuilder() + final JsonObject payload = JsonObjects.createObjectBuilder() .add("hearingId", hearingId.toString()) .add("targetId", targetId.toString()) .add("hearingDay", hearingDay.toString()) diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ValidateResultAmendmentsCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ValidateResultAmendmentsCommandHandlerTest.java index d2d2db5141..55c14b6293 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ValidateResultAmendmentsCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/ValidateResultAmendmentsCommandHandlerTest.java @@ -2,7 +2,7 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.time.ZonedDateTime.now; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.AllOf.allOf; diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/service/ReferenceDataServiceTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/service/ReferenceDataServiceTest.java index 3531bdaf54..8f8c191129 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/service/ReferenceDataServiceTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/service/ReferenceDataServiceTest.java @@ -2,8 +2,8 @@ import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.mockito.ArgumentMatchers.any; @@ -23,7 +23,7 @@ import java.util.Set; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -93,7 +93,7 @@ private JsonObject buildPleaStatusTypesPayload(){ private JsonEnvelope generateReferenceDataServiceResponse(final List expectedCourtCentreIds) { return createEnvelope(".", createObjectBuilder() - .add("organisationunits", Json.createArrayBuilder() + .add("organisationunits", JsonObjects.createArrayBuilder() .add(buildOrgUnit(expectedCourtCentreIds.get(0))) .add(buildOrgUnit(expectedCourtCentreIds.get(1))) ) @@ -101,7 +101,7 @@ private JsonEnvelope generateReferenceDataServiceResponse(final List expec } private JsonObject buildOrgUnit(final UUID courtCentreId) { - return Json.createObjectBuilder() + return JsonObjects.createObjectBuilder() .add("id", courtCentreId.toString()) .build(); } diff --git a/hearing-common/src/main/java/uk/gov/moj/cpp/hearing/common/ReferenceDataLoader.java b/hearing-common/src/main/java/uk/gov/moj/cpp/hearing/common/ReferenceDataLoader.java index a1254e6a10..f709a23a75 100644 --- a/hearing-common/src/main/java/uk/gov/moj/cpp/hearing/common/ReferenceDataLoader.java +++ b/hearing-common/src/main/java/uk/gov/moj/cpp/hearing/common/ReferenceDataLoader.java @@ -4,7 +4,7 @@ import static java.util.Objects.isNull; import static java.util.Optional.of; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.collections.CollectionUtils.isEmpty; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; diff --git a/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/HearingAggregateTest.java b/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/HearingAggregateTest.java index b78117fbbb..95def48423 100644 --- a/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/HearingAggregateTest.java +++ b/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/HearingAggregateTest.java @@ -12,8 +12,8 @@ import static java.util.UUID.randomUUID; import static java.util.stream.Collectors.toList; import static java.util.stream.Collectors.toSet; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.codehaus.groovy.runtime.InvokerHelper.asList; import static org.hamcrest.CoreMatchers.instanceOf; import static org.hamcrest.CoreMatchers.is; @@ -161,7 +161,7 @@ import java.util.stream.Collectors; import java.util.stream.Stream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.apache.commons.lang3.SerializationException; @@ -4184,7 +4184,7 @@ public void givenHearingWithApplicationAndClonedOffences_whenOffencesAreAlreadyS .withHearing(hearing) .build()); hearingAggregate.apply(new HearingAmended(hearing.getId(), userId, SHARED_AMEND_LOCKED_ADMIN_ERROR)); - hearingAggregate.apply(new DraftResultSavedV2(hearing.getId(), hearingDay, Json.createObjectBuilder().build(), userId, 3)); + hearingAggregate.apply(new DraftResultSavedV2(hearing.getId(), hearingDay, JsonObjects.createObjectBuilder().build(), userId, 3)); hearingAggregate.apply(new ResultAmendmentsValidated(hearing.getId(), userId, ZonedDateTime.now())); assertThat(hearingAggregate.getHearingDaySharedOffencesMap().get(hearingDay).size(), is(2)); diff --git a/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/util/HearingTargetsSharedTest.java b/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/util/HearingTargetsSharedTest.java index eef110d4dc..edb291e213 100644 --- a/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/util/HearingTargetsSharedTest.java +++ b/hearing-domain/hearing-domain-aggregate/src/test/java/uk/gov/moj/cpp/hearing/domain/aggregate/util/HearingTargetsSharedTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.domain.aggregate.util; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static uk.gov.moj.cpp.hearing.command.result.SharedResultsCommandResultLineV2.sharedResultsCommandResultLine; diff --git a/hearing-domain/hearing-domain-common/src/test/java/uk/gov/moj/cpp/external/domain/referencedata/XhibitEventMappingsListTest.java b/hearing-domain/hearing-domain-common/src/test/java/uk/gov/moj/cpp/external/domain/referencedata/XhibitEventMappingsListTest.java index a89aa08481..cf77e21096 100644 --- a/hearing-domain/hearing-domain-common/src/test/java/uk/gov/moj/cpp/external/domain/referencedata/XhibitEventMappingsListTest.java +++ b/hearing-domain/hearing-domain-common/src/test/java/uk/gov/moj/cpp/external/domain/referencedata/XhibitEventMappingsListTest.java @@ -1,8 +1,8 @@ package uk.gov.moj.cpp.external.domain.referencedata; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.lang3.RandomStringUtils.randomAlphabetic; import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/hearing-domain/hearing-domain-common/src/test/java/uk/gov/moj/cpp/hearing/query/view/response/hearingresponse/xhibit/CurrentCourtStatusTest.java b/hearing-domain/hearing-domain-common/src/test/java/uk/gov/moj/cpp/hearing/query/view/response/hearingresponse/xhibit/CurrentCourtStatusTest.java index 52a6659235..77a3f4cbee 100644 --- a/hearing-domain/hearing-domain-common/src/test/java/uk/gov/moj/cpp/hearing/query/view/response/hearingresponse/xhibit/CurrentCourtStatusTest.java +++ b/hearing-domain/hearing-domain-common/src/test/java/uk/gov/moj/cpp/hearing/query/view/response/hearingresponse/xhibit/CurrentCourtStatusTest.java @@ -8,7 +8,7 @@ import java.io.StringReader; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.Test; @@ -20,7 +20,7 @@ public class CurrentCourtStatusTest { @Test public void testConversion() { - final CurrentCourtStatus currentCourtStatus = jsonObjectToObjectConverter.convert(Json.createReader(new StringReader(TEST_JSON)).readObject(), CurrentCourtStatus.class); + final CurrentCourtStatus currentCourtStatus = jsonObjectToObjectConverter.convert(JsonObjects.createReader(new StringReader(TEST_JSON)).readObject(), CurrentCourtStatus.class); assertNotNull(currentCourtStatus); } diff --git a/hearing-event/hearing-event-listener/src/main/java/uk/gov/moj/cpp/hearing/event/listener/ReusableInfoEventListener.java b/hearing-event/hearing-event-listener/src/main/java/uk/gov/moj/cpp/hearing/event/listener/ReusableInfoEventListener.java index f259333439..602d9613ae 100644 --- a/hearing-event/hearing-event-listener/src/main/java/uk/gov/moj/cpp/hearing/event/listener/ReusableInfoEventListener.java +++ b/hearing-event/hearing-event-listener/src/main/java/uk/gov/moj/cpp/hearing/event/listener/ReusableInfoEventListener.java @@ -3,8 +3,8 @@ import static java.util.Objects.nonNull; import static java.util.Optional.ofNullable; import static java.util.stream.Collectors.toSet; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.collections.CollectionUtils.isNotEmpty; import static uk.gov.justice.services.core.annotation.Component.EVENT_LISTENER; diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/AddDefendantEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/AddDefendantEventListenerTest.java index 8c2769297e..ccb60a7892 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/AddDefendantEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/AddDefendantEventListenerTest.java @@ -20,7 +20,7 @@ import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.BeforeEach; @@ -92,7 +92,7 @@ public void shouldNotInsertNewDefendantWhenThereIsNoHearing() { private JsonEnvelope getDefendantAddedJsonEnvelope(final UUID arbitraryHearingId) { final uk.gov.moj.cpp.hearing.command.defendant.Defendant arbitraryDefendant = defendantTemplate(); - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("hearingId", arbitraryHearingId.toString()) .add("defendant", objectToJsonObjectConverter.convert(arbitraryDefendant)) .build(); diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/ApplicationOrganisationDetailsUpdateListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/ApplicationOrganisationDetailsUpdateListenerTest.java index e6de747a6a..5f58627c09 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/ApplicationOrganisationDetailsUpdateListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/ApplicationOrganisationDetailsUpdateListenerTest.java @@ -31,7 +31,7 @@ import java.time.LocalDate; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArray; import javax.json.JsonObject; @@ -115,7 +115,7 @@ void testApplicationDefenceOrganisationUpdated() { verify(hearingRepository).save(hearingArgumentCaptor.capture()); final Hearing hearingOut = hearingArgumentCaptor.getValue(); assertThat(hearingOut.getId(), is(hearingId)); - final JsonArray applicationsJsonArray = Json.createReader(new StringReader(hearingOut.getCourtApplicationsJson())).readObject().getJsonArray("courtApplications"); + final JsonArray applicationsJsonArray = JsonObjects.createReader(new StringReader(hearingOut.getCourtApplicationsJson())).readObject().getJsonArray("courtApplications"); assertThat(applicationsJsonArray.size(), is(2)); assertThat(applicationsJsonArray.get(0).asJsonObject().getString("id"), is(applicationId.toString())); assertThat(applicationsJsonArray.get(0).asJsonObject().getJsonObject("subject").getJsonObject("associatedDefenceOrganisation").getString("applicationReference"), is(associatedDefenceOrganisation.getApplicationReference())); diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/CaseEjectedEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/CaseEjectedEventListenerTest.java index 82e9ce2b36..55c2f32d50 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/CaseEjectedEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/CaseEjectedEventListenerTest.java @@ -19,7 +19,7 @@ import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.BeforeEach; @@ -63,9 +63,9 @@ public void shouldHandleCaseEjected(){ } private JsonEnvelope getCaseEjectedEventEnvelope(final UUID hearingId) { - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("prosecutionCaseId", randomUUID().toString()) - .add("hearingIds", Json.createArrayBuilder().add(hearingId.toString())) + .add("hearingIds", JsonObjects.createArrayBuilder().add(hearingId.toString())) .build(); final Metadata metadata = metadataOf(randomUUID(), "event-name").build(); diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/CourtApplicationEjectedEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/CourtApplicationEjectedEventListenerTest.java index 723a4a44a6..3352adf7b8 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/CourtApplicationEjectedEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/CourtApplicationEjectedEventListenerTest.java @@ -18,7 +18,7 @@ import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.BeforeEach; @@ -66,9 +66,9 @@ public void shouldHandleCaseEjected() { } private JsonEnvelope getCourtApplicationEjectedEventEnvelope(final UUID hearingId) { - JsonObject payload = Json.createObjectBuilder() + JsonObject payload = JsonObjects.createObjectBuilder() .add("applicationId", randomUUID().toString()) - .add("hearingIds", Json.createArrayBuilder().add(hearingId.toString())) + .add("hearingIds", JsonObjects.createArrayBuilder().add(hearingId.toString())) .build(); final Metadata metadata = metadataOf(randomUUID(), "event-name").build(); diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingCaseNoteSavedEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingCaseNoteSavedEventListenerTest.java index 3524f2651a..ee8b2972de 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingCaseNoteSavedEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingCaseNoteSavedEventListenerTest.java @@ -1,8 +1,8 @@ package uk.gov.moj.cpp.hearing.event.listener; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingDeletedEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingDeletedEventListenerTest.java index f4c52cfdfe..5f5c4266e1 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingDeletedEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingDeletedEventListenerTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event.listener; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.mockito.ArgumentMatchers.any; import static org.mockito.BDDMockito.given; import static org.mockito.Mockito.mock; diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListenerTest.java index ee47af9049..f058cb2696 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingEventListenerTest.java @@ -8,8 +8,8 @@ import static java.util.Collections.singletonList; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.empty; import static org.hamcrest.Matchers.isEmptyOrNullString; @@ -102,7 +102,7 @@ import java.util.Set; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArray; import javax.json.JsonObject; @@ -267,11 +267,11 @@ public void draftResultSaved_shouldNotSaveHearingOffenceBailStatusForApplication final Target targetOut = new Target().setHearingDay(hearingDay.toString()); final uk.gov.justice.core.courts.Target.Builder target = CoreTestTemplates.target(hearingId, hearingDay, randomUUID(), randomUUID(), randomUUID()); - final JsonObject result = Json.createObjectBuilder().add("resultCode", RILA_L_RESULT_DEFINITON_ID.toString()).add("isDeleted", false).build(); - final JsonArray results = Json.createArrayBuilder() + final JsonObject result = JsonObjects.createObjectBuilder().add("resultCode", RILA_L_RESULT_DEFINITON_ID.toString()).add("isDeleted", false).build(); + final JsonArray results = JsonObjects.createArrayBuilder() .add(result) .build(); - target.withDraftResult(Json.createObjectBuilder().add("results", results).build().toString()); + target.withDraftResult(JsonObjects.createObjectBuilder().add("results", results).build().toString()); final DraftResultSaved draftResultSaved = new DraftResultSaved(target.build(), HearingState.INITIALISED, randomUUID()); @@ -983,8 +983,8 @@ public void resultsSharedV3_shouldPersist_with_hasSharedResults_true_and_draft_r ); DraftResult draftResult = mock(DraftResult.class); - JsonObject draftResultJsonObject = Json.createObjectBuilder() - .add("__metadata__", Json.createObjectBuilder() + JsonObject draftResultJsonObject = JsonObjects.createObjectBuilder() + .add("__metadata__", JsonObjects.createObjectBuilder() .add("version", "1") .build()) .build(); @@ -1049,8 +1049,8 @@ public void resultsSharedV3_shouldPersist_with_hasSharedResults_true() throws IO .setId(resultsShared.getHearingId()); DraftResult draftResult = mock(DraftResult.class); - JsonObject draftResultJsonObject = Json.createObjectBuilder() - .add("__metadata__", Json.createObjectBuilder() + JsonObject draftResultJsonObject = JsonObjects.createObjectBuilder() + .add("__metadata__", JsonObjects.createObjectBuilder() .add("version", "1") .build()) .build(); @@ -1122,8 +1122,8 @@ public void replicateResultsSharedV3_shouldPersist_with_hasSharedResults_true() ); DraftResult draftResult = mock(DraftResult.class); - JsonObject draftResultJsonObject = Json.createObjectBuilder() - .add("__metadata__", Json.createObjectBuilder() + JsonObject draftResultJsonObject = JsonObjects.createObjectBuilder() + .add("__metadata__", JsonObjects.createObjectBuilder() .add("version", "1") .build()) .build(); diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingJudiciaryListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingJudiciaryListenerTest.java index d80724e822..6c2dfa343d 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingJudiciaryListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingJudiciaryListenerTest.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.listener; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.times; diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingLogEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingLogEventListenerTest.java index f23c357a47..dd42901510 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingLogEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingLogEventListenerTest.java @@ -3,7 +3,7 @@ import static java.util.Optional.empty; import static java.util.Optional.of; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; import static org.hamcrest.core.IsNull.nullValue; diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingUnallocatedEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingUnallocatedEventListenerTest.java index e8053243a9..a3b603ca45 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingUnallocatedEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/HearingUnallocatedEventListenerTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event.listener; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.mockito.Mockito.never; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/InitiateHearingEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/InitiateHearingEventListenerTest.java index 079f02b3a0..73b3621b06 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/InitiateHearingEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/InitiateHearingEventListenerTest.java @@ -70,7 +70,7 @@ import java.util.Set; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import com.fasterxml.jackson.core.JsonProcessingException; @@ -944,7 +944,7 @@ public void convictionDateRemoved_shouldSetConvictionDateToNull() { public void shouldPassSchemaValidationForValidPayloadOfConvictionDateAdded() { //given JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.conviction-date-added"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("caseId", "30dd24a6-e383-48f6-afa0-e4b174ecb89c") .add("hearingId", "c76ead4b-5ac8-48e0-b744-f4ade56c8198") .add("offenceId", "0683dfed-f9a4-4661-aaa9-d43fda9ef93d") @@ -960,7 +960,7 @@ public void shouldPassSchemaValidationForValidPayloadOfConvictionDateAdded() { public void shouldPassSchemaValidationForValidPayloadOfConvictionDateRemoved() { //given JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.conviction-date-removed"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("caseId", "30dd24a6-e383-48f6-afa0-e4b174ecb89c") .add("hearingId", "c76ead4b-5ac8-48e0-b744-f4ade56c8198") .add("offenceId", "0683dfed-f9a4-4661-aaa9-d43fda9ef93d") @@ -1147,7 +1147,7 @@ private JsonEnvelope getInitiateHearingJsonEnvelope(final uk.gov.justice.core.co } catch (final JsonProcessingException jpe) { throw new RuntimeException("failed ot serialise " + document, jpe); } - final JsonObject jsonObject = Json.createReader(new StringReader(strJsonDocument)).readObject(); + final JsonObject jsonObject = JsonObjects.createReader(new StringReader(strJsonDocument)).readObject(); return envelopeFrom((Metadata) null, jsonObject); } diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/ReusableInfoEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/ReusableInfoEventListenerTest.java index 2e88da0efd..1ff866f94b 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/ReusableInfoEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/ReusableInfoEventListenerTest.java @@ -1,8 +1,8 @@ package uk.gov.moj.cpp.hearing.event.listener; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.junit.Assert.assertEquals; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/UpdateOffencesAndDefenceCounselsForDefendantEventListenerTest.java b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/UpdateOffencesAndDefenceCounselsForDefendantEventListenerTest.java index 7c7f7f27af..7fa249b665 100644 --- a/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/UpdateOffencesAndDefenceCounselsForDefendantEventListenerTest.java +++ b/hearing-event/hearing-event-listener/src/test/java/uk/gov/moj/cpp/hearing/event/listener/UpdateOffencesAndDefenceCounselsForDefendantEventListenerTest.java @@ -1,8 +1,8 @@ package uk.gov.moj.cpp.hearing.event.listener; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.core.Is.is; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/activiti/common/JsonHelper.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/activiti/common/JsonHelper.java index 8d44d3aa12..5d0aa848f8 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/activiti/common/JsonHelper.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/activiti/common/JsonHelper.java @@ -14,7 +14,7 @@ import java.util.Optional; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonObjectBuilder; @@ -29,12 +29,12 @@ private JsonHelper() { } public static Metadata createMetadataWithProcessIdAndUserId(final String id, final String name, final String processId, final String userId) { - return metadataFrom(Json.createObjectBuilder() + return metadataFrom(JsonObjects.createObjectBuilder() .add(ID, id) .add(NAME, name) .add(PROCESS_ID, processId) .add(ORIGINATOR, ORIGINATOR_VALUE) - .add(CONTEXT, Json.createObjectBuilder() + .add(CONTEXT, JsonObjects.createObjectBuilder() .add(USER_ID, userId)) .build()).build(); } @@ -50,7 +50,7 @@ public static JsonEnvelope assembleEnvelopeWithPayloadAndMetaDetails(final JsonO } private static JsonObject addMetadataToPayload(final JsonObject load, final Metadata metadata) { - final JsonObjectBuilder job = Json.createObjectBuilder(); + final JsonObjectBuilder job = JsonObjects.createObjectBuilder(); load.entrySet().forEach(entry -> job.add(entry.getKey(), entry.getValue())); job.add(JsonEnvelope.METADATA, metadata.asJsonObject()); return job.build(); diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/BookProvisionalHearingSlotsProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/BookProvisionalHearingSlotsProcessor.java index f399cda36f..3f46c71571 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/BookProvisionalHearingSlotsProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/BookProvisionalHearingSlotsProcessor.java @@ -14,15 +14,15 @@ import uk.gov.moj.cpp.hearing.event.service.ProvisionalBookingService; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; import java.time.format.DateTimeFormatter; import java.util.Objects; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; @ServiceComponent(EVENT_PROCESSOR) @@ -73,11 +73,11 @@ public void handleBookProvisionalHearingSlots(final JsonEnvelope event) { //raise public event for UI if (!provisionalBookingServiceResponse.hasError()) { - sender.send(Enveloper.envelop(Json.createObjectBuilder().add("bookingId", provisionalBookingServiceResponse.getBookingId()).build()) + sender.send(Enveloper.envelop(JsonObjects.createObjectBuilder().add("bookingId", provisionalBookingServiceResponse.getBookingId()).build()) .withName("public.hearing.hearing-slots-provisionally-booked") .withMetadataFrom(event)); } else { - sender.send(Enveloper.envelop(Json.createObjectBuilder().add("error", provisionalBookingServiceResponse.getErrorMessage()).build()) + sender.send(Enveloper.envelop(JsonObjects.createObjectBuilder().add("error", provisionalBookingServiceResponse.getErrorMessage()).build()) .withName("public.hearing.hearing-slots-provisionally-booked") .withMetadataFrom(event)); } diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantDetailsChangeEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantDetailsChangeEventProcessor.java index 8fcbafd0a8..38e201c9aa 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantDetailsChangeEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantDetailsChangeEventProcessor.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import uk.gov.justice.services.core.annotation.Handles; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedForHearingProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedForHearingProcessor.java index c5f62dff4c..30d4d0d8ca 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedForHearingProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedForHearingProcessor.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedProcessor.java index 21fd1b9aff..912773ac39 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedProcessor.java @@ -9,7 +9,7 @@ import uk.gov.justice.services.messaging.JsonEnvelope; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArray; import javax.json.JsonObject; @@ -44,7 +44,7 @@ public void handleCaseDefendantsUpdateForHearing(final JsonEnvelope envelop) { final JsonObject eventPayload = envelop.payloadAsJsonObject(); final JsonArray hearingIds = eventPayload.getJsonArray("hearingIds"); hearingIds.stream().forEach(hearingId -> { - final JsonObject commandPayload = Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() .add(HEARING_ID, hearingId) .add(PROSECUTION_CASE, eventPayload.getJsonObject(PROSECUTION_CASE)) .build(); @@ -62,7 +62,7 @@ public void handleApplicationDefendantsUpdateForHearing(final JsonEnvelope envel final JsonObject eventPayload = envelop.payloadAsJsonObject(); final JsonArray hearingIds = eventPayload.getJsonArray("hearingIds"); hearingIds.stream().forEach(hearingId -> { - final JsonObject commandPayload = Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() .add(HEARING_ID, hearingId) .add(COURT_APPLICATION, eventPayload.getJsonObject(COURT_APPLICATION)) .build(); diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/ConvictionDateEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/ConvictionDateEventProcessor.java index e7107fbf52..a12e8b54c0 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/ConvictionDateEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/ConvictionDateEventProcessor.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CourtApplicationDeletedProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CourtApplicationDeletedProcessor.java index cc9c285f1a..12ced0ba3a 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CourtApplicationDeletedProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CourtApplicationDeletedProcessor.java @@ -10,7 +10,7 @@ import uk.gov.justice.services.messaging.JsonEnvelope; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonObjectBuilder; @@ -31,7 +31,7 @@ public void handleCourtApplicationDeletedPublicEvent(final JsonEnvelope envelope LOGGER.debug("Received '{}' event with payload {}", "public.progression.events.court-application-deleted", envelope.toObfuscatedDebugString()); } - final JsonObjectBuilder commandBuilder = Json.createObjectBuilder(); + final JsonObjectBuilder commandBuilder = JsonObjects.createObjectBuilder(); final JsonObject payload = envelope.payloadAsJsonObject(); commandBuilder .add("hearingId", payload.getJsonString("hearingId")) diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CreateProsecutionCaseEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CreateProsecutionCaseEventProcessor.java index 9421ac4b14..f038892dab 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CreateProsecutionCaseEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CreateProsecutionCaseEventProcessor.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CustodyTimeLimitEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CustodyTimeLimitEventProcessor.java index 6600d7da6f..ca198886a3 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CustodyTimeLimitEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/CustodyTimeLimitEventProcessor.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.slf4j.LoggerFactory.getLogger; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/DefendantLegalAidStatusUpdatedProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/DefendantLegalAidStatusUpdatedProcessor.java index e6c6e7b30a..8d38d8c61f 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/DefendantLegalAidStatusUpdatedProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/DefendantLegalAidStatusUpdatedProcessor.java @@ -10,10 +10,10 @@ import uk.gov.moj.cpp.hearing.persist.entity.ha.Defendant; import uk.gov.moj.cpp.hearing.persist.entity.ha.HearingSnapshotKey; import uk.gov.moj.cpp.hearing.repository.DefendantRepository; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArray; import javax.json.JsonObject; import javax.json.JsonString; @@ -75,7 +75,7 @@ public void handleDefendantLegalStatusUpdateForHearings(final JsonEnvelope envel final String defendantId = eventPayload.getString(DEFENDANT_ID); final Defendant defendant = defendantRepository.findBy(new HearingSnapshotKey(UUID.fromString(defendantId), UUID.fromString(((JsonString)hearingId).getString()))); if(defendant != null){ - final JsonObject commandPayload = Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() .add(HEARING_ID, hearingId) .add(DEFENDANT_ID, defendantId) .add(LEGAL_AID_STATUS, eventPayload.getString(LEGAL_AID_STATUS)) diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/DuplicateHearingEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/DuplicateHearingEventProcessor.java index 720cd620a3..829588d6c6 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/DuplicateHearingEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/DuplicateHearingEventProcessor.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/HearingDeletedEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/HearingDeletedEventProcessor.java index e75864c6a0..499754b3e8 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/HearingDeletedEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/HearingDeletedEventProcessor.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/HearingUnallocatedEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/HearingUnallocatedEventProcessor.java index 8ee1839938..6b87e8c9bc 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/HearingUnallocatedEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/HearingUnallocatedEventProcessor.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/InitiateHearingEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/InitiateHearingEventProcessor.java index 55d17bf7d0..2107ca76c0 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/InitiateHearingEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/InitiateHearingEventProcessor.java @@ -2,8 +2,8 @@ import static java.util.Objects.nonNull; import static java.util.Optional.ofNullable; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.collections.CollectionUtils.isNotEmpty; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; @@ -43,7 +43,7 @@ import java.util.stream.Stream; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArray; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/MagistratesCourtInitiateHearingEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/MagistratesCourtInitiateHearingEventProcessor.java index 2503b3064f..f3a5a5aaf5 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/MagistratesCourtInitiateHearingEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/MagistratesCourtInitiateHearingEventProcessor.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.core.courts.Plea.plea; import static uk.gov.justice.core.courts.PleaModel.pleaModel; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PleaUpdateEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PleaUpdateEventProcessor.java index a5d5554678..af77e79d06 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PleaUpdateEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PleaUpdateEventProcessor.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import uk.gov.justice.services.core.annotation.Handles; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsEventProcessor.java index 50ef827ed3..b6f21cdbeb 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsEventProcessor.java @@ -59,7 +59,7 @@ import java.util.stream.Stream; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; @@ -147,7 +147,7 @@ public void resultsShared(final JsonEnvelope event) { public void updateTheDefendantsCase(final JsonEnvelope event, final UUID hearingId, final UUID caseId, final UUID defendantId, final List offenceIds, final Map offenceResultMap) { - final JsonObject payload = Json.createObjectBuilder() + final JsonObject payload = JsonObjects.createObjectBuilder() .add("hearingId", hearingId.toString()) .add("caseId", caseId.toString()) .add("defendantId", defendantId.toString()) @@ -161,15 +161,15 @@ public void updateTheDefendantsCase(final JsonEnvelope event, final UUID hearing } private JsonArrayBuilder convertToJsonArray(final List offenceIds) { - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); offenceIds.stream().map(UUID::toString).forEach(arrayBuilder::add); return arrayBuilder; } private JsonArrayBuilder convertOffenceResultMapToJsonArray(final Map offenceResultMap) { - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); offenceResultMap.forEach((key, value) -> { - final JsonObject offenceResultObject = Json.createObjectBuilder() + final JsonObject offenceResultObject = JsonObjects.createObjectBuilder() .add("offenceId", key.toString()) .add("offenceResult", value.name()) .build(); diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV2EventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV2EventProcessor.java index a11b6cb553..86ab312132 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV2EventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/PublishResultsV2EventProcessor.java @@ -58,7 +58,7 @@ import java.util.stream.Stream; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; @@ -152,7 +152,7 @@ public void resultsShared(final JsonEnvelope event) { public void updateTheDefendantsCase(final JsonEnvelope event, final UUID hearingId, final UUID caseId, final UUID defendantId, final List offenceIds, final Map offenceResultMap) { - final JsonObject payload = Json.createObjectBuilder() + final JsonObject payload = JsonObjects.createObjectBuilder() .add("hearingId", hearingId.toString()) .add("caseId", caseId.toString()) .add("defendantId", defendantId.toString()) @@ -166,15 +166,15 @@ public void updateTheDefendantsCase(final JsonEnvelope event, final UUID hearing } private JsonArrayBuilder convertToJsonArray(final List offenceIds) { - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); offenceIds.stream().map(UUID::toString).forEach(arrayBuilder::add); return arrayBuilder; } private JsonArrayBuilder convertOffenceResultMapToJsonArray(final Map offenceResultMap) { - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); offenceResultMap.entrySet().stream().forEach(offenceResult -> { - final JsonObject offenceResultObject = Json.createObjectBuilder() + final JsonObject offenceResultObject = JsonObjects.createObjectBuilder() .add("offenceId", offenceResult.getKey().toString()) .add("offenceResult", offenceResult.getValue().name()) .build(); diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/UpdateOffencesForDefendantEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/UpdateOffencesForDefendantEventProcessor.java index 2ba3249667..80cfdb37ad 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/UpdateOffencesForDefendantEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/UpdateOffencesForDefendantEventProcessor.java @@ -8,7 +8,7 @@ import static uk.gov.moj.cpp.hearing.command.initiate.RegisterHearingAgainstOffenceCommand.registerHearingAgainstOffenceDefendantCommand; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; import uk.gov.justice.services.core.annotation.Handles; @@ -65,7 +65,7 @@ public void addCaseDefendantOffenceV2(final JsonEnvelope event) { final JsonObject payload = event.payloadAsJsonObject(); payload.getJsonArray("offences").stream().map(o -> (JsonObject)o).forEach(offence -> { - sender.send(enveloper.withMetadataFrom(event, "hearing.command.register-hearing-against-offence-v2").apply(Json.createObjectBuilder() + sender.send(enveloper.withMetadataFrom(event, "hearing.command.register-hearing-against-offence-v2").apply(JsonObjects.createObjectBuilder() .add("offenceId",offence.getString("id") ).add("hearingIds", payload.getJsonArray("hearingIds")).build())); }); @@ -136,7 +136,7 @@ public void handleOffenceOrDefendantRemovalToListAssist(final JsonEnvelope jsonE } if( jsonEnvelope.payloadAsJsonObject().containsKey(DEFENDANT_IDS) && !jsonEnvelope.payloadAsJsonObject().getJsonArray(DEFENDANT_IDS).isEmpty() ) { - final JsonObject cmdPayload = Json.createObjectBuilder() + final JsonObject cmdPayload = JsonObjects.createObjectBuilder() .add(HEARING_ID, jsonEnvelope.payloadAsJsonObject().get(HEARING_ID)) .add(DEFENDANT_IDS, jsonEnvelope.payloadAsJsonObject().get(DEFENDANT_IDS)) .build(); @@ -144,7 +144,7 @@ public void handleOffenceOrDefendantRemovalToListAssist(final JsonEnvelope jsonE } if("Hearing".equals(jsonEnvelope.payloadAsJsonObject().getString("sourceContext", "Hearing"))) { - final JsonObject payload = Json.createObjectBuilder() + final JsonObject payload = JsonObjects.createObjectBuilder() .add(HEARING_ID, jsonEnvelope.payloadAsJsonObject().get(HEARING_ID)) .add("offenceIds", jsonEnvelope.payloadAsJsonObject().get("offenceIds")) .build(); diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/VerdictUpdateEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/VerdictUpdateEventProcessor.java index 6673ff4816..4a32113364 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/VerdictUpdateEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/VerdictUpdateEventProcessor.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import uk.gov.justice.services.core.annotation.Handles; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/WitnessAddedEventProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/WitnessAddedEventProcessor.java index 043c60ef6f..5518315e24 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/WitnessAddedEventProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/WitnessAddedEventProcessor.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event; import static java.util.UUID.fromString; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import uk.gov.justice.services.core.annotation.Handles; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/YouthCourtDefendantsUpdatedProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/YouthCourtDefendantsUpdatedProcessor.java index facc3621cf..b03b2149a6 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/YouthCourtDefendantsUpdatedProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/YouthCourtDefendantsUpdatedProcessor.java @@ -10,7 +10,7 @@ import javax.inject.Inject; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; @ServiceComponent(EVENT_PROCESSOR) diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegate.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegate.java index 561fbb99dc..b5437350b1 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegate.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/delegates/PublishResultsDelegate.java @@ -72,7 +72,7 @@ import java.util.stream.Stream; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.slf4j.Logger; @@ -209,7 +209,7 @@ public void shareResults(final JsonEnvelope context, final Sender sender, final .setShadowListedOffences(getOffenceShadowListedForMagistratesNextHearing(resultsShared)); final JsonObject jsonObject = this.objectToJsonObjectConverter.convert(hearingResulted); - final JsonEnvelope successEvent = envelopeFrom(metadataFrom(context.metadata()).withName("public.events.hearing.hearing-resulted-success"), Json.createObjectBuilder().build()); + final JsonEnvelope successEvent = envelopeFrom(metadataFrom(context.metadata()).withName("public.events.hearing.hearing-resulted-success"), JsonObjects.createObjectBuilder().build()); sender.send(successEvent); final JsonEnvelope jsonEnvelope = this.enveloper.withMetadataFrom(context, "public.events.hearing.hearing-resulted").apply(jsonObject); if (LOGGER.isDebugEnabled()) { diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/helper/ResultsSharedHelper.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/helper/ResultsSharedHelper.java index 05fc057f2f..8cae6fe84d 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/helper/ResultsSharedHelper.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/helper/ResultsSharedHelper.java @@ -3,7 +3,7 @@ import static java.util.Objects.nonNull; import static java.util.Optional.ofNullable; -import static javax.json.Json.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; import static org.apache.commons.collections.CollectionUtils.isNotEmpty; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; @@ -24,7 +24,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; @@ -124,7 +124,7 @@ private void cancelHearingDays(final JsonEnvelope context, final Sender sender, for (final HearingDay hearingDay : hearingDaysList) { arrayBuilder.add(createObjectBuilder(objectToJsonObjectConverter.convert(hearingDay)).build()); } - final JsonObject payload = Json.createObjectBuilder() + final JsonObject payload = JsonObjects.createObjectBuilder() .add("hearingId", hearingId.toString()) .add("hearingDays", arrayBuilder) .build(); diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/helper/ResultsSharedHelperV3.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/helper/ResultsSharedHelperV3.java index 8168d251cc..594059d4a6 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/helper/ResultsSharedHelperV3.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/helper/ResultsSharedHelperV3.java @@ -3,7 +3,7 @@ import static java.util.Objects.nonNull; import static java.util.Optional.ofNullable; -import static javax.json.Json.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; import static org.apache.commons.collections.CollectionUtils.isNotEmpty; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; @@ -24,7 +24,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; @@ -124,7 +124,7 @@ private void cancelHearingDays(final JsonEnvelope context, final Sender sender, for (final HearingDay hearingDay : hearingDaysList) { arrayBuilder.add(createObjectBuilder(objectToJsonObjectConverter.convert(hearingDay)).build()); } - final JsonObject payload = Json.createObjectBuilder() + final JsonObject payload = JsonObjects.createObjectBuilder() .add("hearingId", hearingId.toString()) .add("hearingDays", arrayBuilder) .build(); diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/judiciary/JudiciaryUpdatedUserAddedProcessor.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/judiciary/JudiciaryUpdatedUserAddedProcessor.java index 9a21b7880d..923dcf75cb 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/judiciary/JudiciaryUpdatedUserAddedProcessor.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/judiciary/JudiciaryUpdatedUserAddedProcessor.java @@ -3,7 +3,7 @@ import static java.time.ZonedDateTime.now; import static java.util.Objects.nonNull; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/relist/RelistReferenceDataService.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/relist/RelistReferenceDataService.java index bdc520d5c9..aef75974f9 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/relist/RelistReferenceDataService.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/relist/RelistReferenceDataService.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.relist; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/AlcoholLevelMethodsReferenceDataLoader.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/AlcoholLevelMethodsReferenceDataLoader.java index 6234e78377..a1ba7dabcf 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/AlcoholLevelMethodsReferenceDataLoader.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/AlcoholLevelMethodsReferenceDataLoader.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import uk.gov.justice.services.core.annotation.Component; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/BailStatusReferenceDataLoader.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/BailStatusReferenceDataLoader.java index ef3ef8e082..d4194f8242 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/BailStatusReferenceDataLoader.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/BailStatusReferenceDataLoader.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import uk.gov.justice.services.core.annotation.Component; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CourtHouseReverseLookup.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CourtHouseReverseLookup.java index c7ebd19e5e..67b41cb9b5 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CourtHouseReverseLookup.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CourtHouseReverseLookup.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import uk.gov.justice.hearing.courts.referencedata.CourtCentreOrganisationUnit; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CourtRoomOuCodeReverseLookup.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CourtRoomOuCodeReverseLookup.java index fe7a6fca82..6d48098042 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CourtRoomOuCodeReverseLookup.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CourtRoomOuCodeReverseLookup.java @@ -2,7 +2,7 @@ import static java.util.Optional.ofNullable; import static java.util.stream.Stream.concat; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.lang3.StringUtils.EMPTY; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CrackedIneffectiveVacatedTrialTypesReverseLookup.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CrackedIneffectiveVacatedTrialTypesReverseLookup.java index ce4966cc0b..d88849549a 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CrackedIneffectiveVacatedTrialTypesReverseLookup.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/CrackedIneffectiveVacatedTrialTypesReverseLookup.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/FixedListLookup.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/FixedListLookup.java index e1798f50cc..ba87c8631f 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/FixedListLookup.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/FixedListLookup.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import uk.gov.justice.hearing.courts.referencedata.FixedListResult; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/HearingTypeReverseLookup.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/HearingTypeReverseLookup.java index 8acb94c4ea..da26644fb1 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/HearingTypeReverseLookup.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/HearingTypeReverseLookup.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import uk.gov.justice.core.courts.HearingType; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/LjaReferenceDataLoader.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/LjaReferenceDataLoader.java index d5c22a2b0f..021fc9c0f8 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/LjaReferenceDataLoader.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/LjaReferenceDataLoader.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event.service; import static java.util.Objects.isNull; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/NowsReferenceDataLoader.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/NowsReferenceDataLoader.java index 629465a9ad..af0ae872af 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/NowsReferenceDataLoader.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/NowsReferenceDataLoader.java @@ -2,7 +2,7 @@ import static java.util.Objects.nonNull; import static java.util.stream.Collectors.toMap; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/OrganisationalUnitLoader.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/OrganisationalUnitLoader.java index 94636683ae..01891be66e 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/OrganisationalUnitLoader.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/OrganisationalUnitLoader.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import uk.gov.justice.hearing.courts.referencedata.OrganisationalUnit; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/PleaTypeReferenceDataLoader.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/PleaTypeReferenceDataLoader.java index 0ff9c3842c..7bc6e70286 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/PleaTypeReferenceDataLoader.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/PleaTypeReferenceDataLoader.java @@ -12,7 +12,7 @@ import java.util.stream.Collectors; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.COMMAND_API; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataBuilder; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ProgressionService.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ProgressionService.java index c7e8a35a58..5c7864058f 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ProgressionService.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ProgressionService.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import uk.gov.justice.services.core.annotation.Component; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ProsecutorDataLoader.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ProsecutorDataLoader.java index ca2e3f18c1..d216790e83 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ProsecutorDataLoader.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ProsecutorDataLoader.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import uk.gov.justice.hearing.courts.referencedata.Prosecutor; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataLoader.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataLoader.java index 0451afb112..3a078c5093 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataLoader.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataLoader.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event.service; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.COMMAND_API; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataBuilder; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/UsersGroupService.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/UsersGroupService.java index d136ef283e..49d97a5883 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/UsersGroupService.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/UsersGroupService.java @@ -2,7 +2,7 @@ import static java.lang.String.format; import static java.util.UUID.fromString; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.QUERY_API; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/VerdictTypesReferenceDataLoader.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/VerdictTypesReferenceDataLoader.java index 62f7b9a3d2..63d44319f0 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/VerdictTypesReferenceDataLoader.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/event/service/VerdictTypesReferenceDataLoader.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import uk.gov.justice.core.courts.VerdictType; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/pi/ProsecutionCaseRetriever.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/pi/ProsecutionCaseRetriever.java index 1b05f24e1c..83b47f062d 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/pi/ProsecutionCaseRetriever.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/pi/ProsecutionCaseRetriever.java @@ -1 +1,53 @@ -package uk.gov.moj.cpp.hearing.pi; import static javax.json.Json.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataBuilder; import uk.gov.justice.services.core.annotation.ServiceComponent; import uk.gov.justice.services.core.requester.Requester; import uk.gov.justice.services.messaging.JsonEnvelope; import uk.gov.moj.cpp.hearing.query.view.response.hearingresponse.ProsecutionCaseResponse; import java.util.Optional; import java.util.UUID; import javax.enterprise.context.ApplicationScoped; import javax.inject.Inject; import javax.json.JsonObject; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @ApplicationScoped public class ProsecutionCaseRetriever { private static final Logger LOGGER = LoggerFactory.getLogger(ProsecutionCaseRetriever.class); private static final String HEARING_QUERY_PROSECUTIONCASE_BY_HEARINGID = "hearing.prosecution-case-by-hearingid"; @ServiceComponent(EVENT_PROCESSOR) @Inject private Requester requester; public Optional getProsecutionCaseForHearing(final UUID hearingId, final UUID hearingEventDefinitionId) { LOGGER.info(" getProsecutionCaseForHearing hearing id {} ", hearingId); final JsonObject query = createObjectBuilder() .add("hearingId", String.valueOf(hearingId)) .add("hearingEventDefinitionId", String.valueOf(hearingEventDefinitionId)) .build(); final JsonEnvelope jsonEnvelope = envelopeFrom( metadataBuilder() .withId(UUID.randomUUID()) .withName(HEARING_QUERY_PROSECUTIONCASE_BY_HEARINGID) .build(), query); if (!jsonEnvelope.payloadAsJsonObject().isEmpty()) { return Optional.of(requester.requestAsAdmin(jsonEnvelope, ProsecutionCaseResponse.class).payload()); } return Optional.empty(); } } \ No newline at end of file +package uk.gov.moj.cpp.hearing.pi; + +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; +import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; +import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; +import static uk.gov.justice.services.messaging.JsonEnvelope.metadataBuilder; + +import uk.gov.justice.services.core.annotation.ServiceComponent; +import uk.gov.justice.services.core.requester.Requester; +import uk.gov.justice.services.messaging.JsonEnvelope; +import uk.gov.moj.cpp.hearing.query.view.response.hearingresponse.ProsecutionCaseResponse; + +import java.util.Optional; +import java.util.UUID; + +import javax.enterprise.context.ApplicationScoped; +import javax.inject.Inject; +import javax.json.JsonObject; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +@ApplicationScoped +public class ProsecutionCaseRetriever { + + private static final Logger LOGGER = LoggerFactory.getLogger(ProsecutionCaseRetriever.class); + private static final String HEARING_QUERY_PROSECUTIONCASE_BY_HEARINGID = "hearing.prosecution-case-by-hearingid"; + + @ServiceComponent(EVENT_PROCESSOR) + @Inject + private Requester requester; + + public Optional getProsecutionCaseForHearing(final UUID hearingId, final UUID hearingEventDefinitionId) { + + LOGGER.info(" getProsecutionCaseForHearing hearing id {} ", hearingId); + final JsonObject query = createObjectBuilder() + .add("hearingId", String.valueOf(hearingId)) + .add("hearingEventDefinitionId", String.valueOf(hearingEventDefinitionId)) + .build(); + + final JsonEnvelope jsonEnvelope = envelopeFrom( + metadataBuilder() + .withId(UUID.randomUUID()) + .withName(HEARING_QUERY_PROSECUTIONCASE_BY_HEARINGID) + .build(), + query); + + if (!jsonEnvelope.payloadAsJsonObject().isEmpty()) { + return Optional.of(requester.requestAsAdmin(jsonEnvelope, ProsecutionCaseResponse.class).payload()); + } + return Optional.empty(); + } +} diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/CourtCentreHearingsRetriever.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/CourtCentreHearingsRetriever.java index aa50f3a0f2..d21946e78b 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/CourtCentreHearingsRetriever.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/CourtCentreHearingsRetriever.java @@ -2,7 +2,7 @@ import static java.util.Optional.empty; import static java.util.Optional.of; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import uk.gov.justice.services.common.converter.JsonObjectToObjectConverter; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/ProgressionCaseRetriever.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/ProgressionCaseRetriever.java index fbde8d4f05..9b40a12b92 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/ProgressionCaseRetriever.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/ProgressionCaseRetriever.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.xhibit; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataBuilder; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/PublishCourtListCommandSender.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/PublishCourtListCommandSender.java index 734a03f4fb..2a2c3b6420 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/PublishCourtListCommandSender.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/PublishCourtListCommandSender.java @@ -2,7 +2,7 @@ import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.lang3.StringUtils.trimToEmpty; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataBuilder; diff --git a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/ReferenceDataXhibitDataLoader.java b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/ReferenceDataXhibitDataLoader.java index 04d754ef50..7228975a0c 100644 --- a/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/ReferenceDataXhibitDataLoader.java +++ b/hearing-event/hearing-event-processor/src/main/java/uk/gov/moj/cpp/hearing/xhibit/ReferenceDataXhibitDataLoader.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.xhibit; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.collections.CollectionUtils.isEmpty; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ApplicationDetailChangeEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ApplicationDetailChangeEventProcessorTest.java index 41e0ac266c..8d57c0a751 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ApplicationDetailChangeEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ApplicationDetailChangeEventProcessorTest.java @@ -4,7 +4,7 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withoutJsonPath; import static java.lang.String.format; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.AllOf.allOf; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseApplicationEjectedEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseApplicationEjectedEventProcessorTest.java index 6d73d5bc2b..2b9911d70c 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseApplicationEjectedEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseApplicationEjectedEventProcessorTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; import static org.mockito.Mockito.verify; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.test.utils.core.enveloper.EnveloperFactory.createEnveloper; @@ -11,7 +11,7 @@ import uk.gov.justice.services.core.sender.Sender; import uk.gov.justice.services.messaging.JsonEnvelope; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -41,7 +41,7 @@ public class CaseApplicationEjectedEventProcessorTest { public void processCaseApplicationEjected() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.progression.events.case-or-application-ejected"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingIds", createArrayBuilder().add(randomUUID().toString())) .build()); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantAddEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantAddEventProcessorTest.java index b58b5e1103..298dab0198 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantAddEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantAddEventProcessorTest.java @@ -1,8 +1,8 @@ package uk.gov.moj.cpp.hearing.event; import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantDetailsChangeEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantDetailsChangeEventProcessorTest.java index a6cc368a6b..edf07a9f6a 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantDetailsChangeEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantDetailsChangeEventProcessorTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event; import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.core.AllOf.allOf; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedForHearingProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedForHearingProcessorTest.java index ca7512c9ea..949a9aaaa3 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedForHearingProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedForHearingProcessorTest.java @@ -18,7 +18,7 @@ import java.util.ArrayList; import java.util.Collections; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import uk.gov.justice.core.courts.Defendant; import uk.gov.justice.core.courts.ProsecutionCase; @@ -120,7 +120,7 @@ public void shouldRegisterDefendantsForHearing() { @Test public void shouldCallCommand(){ final String hearingId = randomUUID().toString(); - JsonObject relatedHearingUpdatedforAdhocHearing = Json.createObjectBuilder() + JsonObject relatedHearingUpdatedforAdhocHearing = JsonObjects.createObjectBuilder() .add("hearingId", hearingId) .build(); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedProcessorTest.java index e493961d22..4fe29ebe54 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseDefendantsUpdatedProcessorTest.java @@ -19,7 +19,7 @@ import uk.gov.justice.services.core.sender.Sender; import uk.gov.justice.services.messaging.JsonEnvelope; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import java.util.Arrays; import java.util.List; @@ -68,8 +68,8 @@ public void testHandleCaseDefendantsUpdateForHearing () { .withProceedingsConcluded(true).build())) .build(); - final JsonObject eventPayload = Json.createObjectBuilder() - .add("hearingIds", Json.createArrayBuilder().add(hearingId.toString()).build()) + final JsonObject eventPayload = JsonObjects.createObjectBuilder() + .add("hearingIds", JsonObjects.createArrayBuilder().add(hearingId.toString()).build()) .add("prosecutionCase",objectToJsonObjectConverter.convert(prosecutionCase)) .build(); final JsonEnvelope event = JsonEnvelope.envelopeFrom(metadataWithRandomUUID("hearing.case-defendants-updated"), @@ -103,8 +103,8 @@ public void testHandleApplicationDefendantsUpdateForHearing () { .build()) .build(); - final JsonObject eventPayload = Json.createObjectBuilder() - .add("hearingIds", Json.createArrayBuilder().add(hearingId.toString()).build()) + final JsonObject eventPayload = JsonObjects.createObjectBuilder() + .add("hearingIds", JsonObjects.createArrayBuilder().add(hearingId.toString()).build()) .add("courtApplication",objectToJsonObjectConverter.convert(courtApplication)) .build(); final JsonEnvelope event = JsonEnvelope.envelopeFrom(metadataWithRandomUUID("hearing.application-defendants-updated"), diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseMarkerEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseMarkerEventProcessorTest.java index 88e098c2ed..93b987e9f8 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseMarkerEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseMarkerEventProcessorTest.java @@ -23,7 +23,7 @@ import uk.gov.justice.services.core.enveloper.Enveloper; import uk.gov.justice.services.core.sender.Sender; import uk.gov.justice.services.messaging.JsonEnvelope; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; @ExtendWith(MockitoExtension.class) public class CaseMarkerEventProcessorTest { @@ -43,11 +43,11 @@ public class CaseMarkerEventProcessorTest { @Test public void processPublicEventCaseMarkersUpdated() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.progression.case-markers-updated"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("prosecutionCaseId", "34d07e81-9770-4d23-af6f-84f1d7571bd3") .add("hearingId", "581767a1-22af-408a-92f0-20837846cc6f") - .add("caseMarkers", Json.createArrayBuilder() - .add(Json.createObjectBuilder() + .add("caseMarkers", JsonObjects.createArrayBuilder() + .add(JsonObjects.createObjectBuilder() .add("id", "3789ab16-0bb7-4ef1-87ef-c936bf0364f1") .add("markerTypeid", "3789ab16-0bb7-4ef1-87ef-c936bf0364f1") .add("markerTypeCode", "WP") @@ -72,14 +72,14 @@ public void processPublicEventCaseMarkersUpdated() { @Test public void processEnrichUpdateCaseMarkersWithAssociatedHearings() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.events.case-markers-enriched-with-associated-hearings"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("prosecutionCaseId", "34d07e81-9770-4d23-af6f-84f1d7571bd3") - .add("hearingIds", Json.createArrayBuilder() + .add("hearingIds", JsonObjects.createArrayBuilder() .add("a8448a33-68ab-4b9b-84c2-59cee4fe36f4") .add("095d7412-ba76-4a15-942d-566d3aeae7c9") .build()) - .add("caseMarkers", Json.createArrayBuilder() - .add(Json.createObjectBuilder() + .add("caseMarkers", JsonObjects.createArrayBuilder() + .add(JsonObjects.createObjectBuilder() .add("id", "3789ab16-0bb7-4ef1-87ef-c936bf0364f1") .add("markerTypeid", "3789ab16-0bb7-4ef1-87ef-c936bf0364f1") .add("markerTypeCode", "WP") diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseRemovedFromGroupCasesEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseRemovedFromGroupCasesEventProcessorTest.java index 554b59b591..62f2beb785 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseRemovedFromGroupCasesEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CaseRemovedFromGroupCasesEventProcessorTest.java @@ -27,7 +27,7 @@ import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; @@ -72,7 +72,7 @@ public void setup() { @Test public void processPublicEventCaseRemovedFromGroup() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.progression.case-removed-from-group-cases"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("groupId", GROUP_ID.toString()) .add("masterCaseId", MASTER_CASE_ID.toString()) .add("removedCase", objectToJsonObjectConverter.convert(getProsecutionCase(GROUP_ID, CASE_ID, Boolean.FALSE, Boolean.FALSE))) @@ -103,7 +103,7 @@ public void processPublicEventCaseRemovedFromGroup() { @Test public void processPublicEventCaseRemovedFromGroup_WithOnlyMandatoryFields() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.progression.case-removed-from-group-cases"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("groupId", GROUP_ID.toString()) .add("masterCaseId", MASTER_CASE_ID.toString()) .add("removedCase", objectToJsonObjectConverter.convert(getProsecutionCase(GROUP_ID, CASE_ID, Boolean.FALSE, Boolean.FALSE))) @@ -128,7 +128,7 @@ public void processPublicEventCaseRemovedFromGroup_WithOnlyMandatoryFields() { @Test public void processHearingEventCaseRemovedFromGroup() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.events.case-removed-from-group-cases"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingId", HEARING_ID.toString()) .add("groupId", GROUP_ID.toString()) .add("removedCase", objectToJsonObjectConverter.convert(getProsecutionCase(GROUP_ID, CASE_ID, Boolean.FALSE, Boolean.FALSE))) @@ -159,7 +159,7 @@ public void processHearingEventCaseRemovedFromGroup() { @Test public void processHearingEventCaseRemovedFromGroup_WithOnlyMandatoryFields() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.events.case-removed-from-group-cases"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingId", HEARING_ID.toString()) .add("groupId", GROUP_ID.toString()) .add("removedCase", objectToJsonObjectConverter.convert(getProsecutionCase(GROUP_ID, CASE_ID, Boolean.FALSE, Boolean.FALSE))) diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CompanyRepresentativeEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CompanyRepresentativeEventProcessorTest.java index f9c27013bd..a0e337c974 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CompanyRepresentativeEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CompanyRepresentativeEventProcessorTest.java @@ -28,7 +28,7 @@ import uk.gov.justice.services.messaging.JsonEnvelope; import uk.gov.justice.services.test.utils.framework.api.JsonObjectConvertersFactory; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; @ExtendWith(MockitoExtension.class) public class CompanyRepresentativeEventProcessorTest { @@ -55,7 +55,7 @@ public class CompanyRepresentativeEventProcessorTest { public void processPublicHearingCompanyRepresentativeChangeIgnored() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.company-representative-change-ignored"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("reason", "company representative already added") .build()); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ConvictionDateEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ConvictionDateEventProcessorTest.java index 7d31078ede..0e5861b960 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ConvictionDateEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ConvictionDateEventProcessorTest.java @@ -30,7 +30,7 @@ import java.io.IOException; import java.util.Set; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; @@ -211,7 +211,7 @@ public void publishOffenceConvictionDateRemovedPublicEventForApplication() { public void shouldPassSchemaValidationForValidPayloadOfConvictionDateAdded() { //given JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.conviction-date-added"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("caseId", "30dd24a6-e383-48f6-afa0-e4b174ecb89c") .add("hearingId", "c76ead4b-5ac8-48e0-b744-f4ade56c8198") .add("offenceId", "0683dfed-f9a4-4661-aaa9-d43fda9ef93d") @@ -227,7 +227,7 @@ public void shouldPassSchemaValidationForValidPayloadOfConvictionDateAdded() { public void shouldPassSchemaValidationForValidPayloadOfConvictionDateRemoved() { //given JsonEnvelope envelope = envelopeFrom(metadataWithRandomUUID("hearing.conviction-date-removed"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("caseId", "30dd24a6-e383-48f6-afa0-e4b174ecb89c") .add("hearingId", "c76ead4b-5ac8-48e0-b744-f4ade56c8198") .add("offenceId", "0683dfed-f9a4-4661-aaa9-d43fda9ef93d") diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CourtApplicationDeletedProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CourtApplicationDeletedProcessorTest.java index 6bcdb9184a..921a00cafa 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CourtApplicationDeletedProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CourtApplicationDeletedProcessorTest.java @@ -11,7 +11,7 @@ import uk.gov.justice.services.core.sender.Sender; import uk.gov.justice.services.messaging.JsonEnvelope; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonObjectBuilder; @@ -37,7 +37,7 @@ public class CourtApplicationDeletedProcessorTest { @Test public void shouldHandleCourtApplicationDeletedPublicEvent(){ - final JsonObjectBuilder objectBuilder = Json.createObjectBuilder(); + final JsonObjectBuilder objectBuilder = JsonObjects.createObjectBuilder(); final String hearingId = randomUUID().toString(); final String applicationId = randomUUID().toString(); objectBuilder diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CpsProsecutorUpdatedEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CpsProsecutorUpdatedEventProcessorTest.java index 842569be5c..4899dc5163 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CpsProsecutorUpdatedEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CpsProsecutorUpdatedEventProcessorTest.java @@ -19,7 +19,7 @@ import uk.gov.justice.services.messaging.JsonEnvelope; import uk.gov.justice.services.messaging.spi.DefaultEnvelope; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -49,9 +49,9 @@ public class CpsProsecutorUpdatedEventProcessorTest { public void shouldUpdateProsecutionCaseWithAssociatedHearings() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.progression.events.cps-prosecutor-updated"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("prosecutionCaseId", "34d07e81-9770-4d23-af6f-84f1d7571bd3") - .add("hearingIds", Json.createArrayBuilder() + .add("hearingIds", JsonObjects.createArrayBuilder() .add("a8448a33-68ab-4b9b-84c2-59cee4fe36f4") .add("095d7412-ba76-4a15-942d-566d3aeae7c9") .build()) @@ -60,7 +60,7 @@ public void shouldUpdateProsecutionCaseWithAssociatedHearings() { .add("prosecutionAuthorityReference", "test prosecutionAuthorityReference") .add("prosecutionAuthorityCode", "test prosecutionAuthorityCode") .add("prosecutionAuthorityName", "test prosecutionAuthorityName") - .add("address", Json.createObjectBuilder() + .add("address", JsonObjects.createObjectBuilder() .add("address1", "41 Manhattan House") .add("postcode", "MK9 2BQ") .build()) @@ -90,15 +90,15 @@ public void shouldUpdateProsecutionCaseWithAssociatedHearings() { public void shouldNotUpdateProsecutionCaseWithoutAssociatedHearings() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.progression.events.cps-prosecutor-updated"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("prosecutionCaseId", "34d07e81-9770-4d23-af6f-84f1d7571bd3") - .add("hearingIds", Json.createArrayBuilder().build()) + .add("hearingIds", JsonObjects.createArrayBuilder().build()) .add("caseURN", "test Case URN") .add("prosecutionAuthorityId", "test prosecutionAuthorityId") .add("prosecutionAuthorityReference", "test prosecutionAuthorityReference") .add("prosecutionAuthorityCode", "test prosecutionAuthorityCode") .add("prosecutionAuthorityName", "test prosecutionAuthorityName") - .add("address", Json.createObjectBuilder() + .add("address", JsonObjects.createObjectBuilder() .add("address1", "41 Manhattan House") .add("postcode", "MK9 2BQ") .build()) diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CreateProsecutionCaseEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CreateProsecutionCaseEventProcessorTest.java index 00c54dcd34..e8f3a1b44a 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CreateProsecutionCaseEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CreateProsecutionCaseEventProcessorTest.java @@ -2,7 +2,7 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CustodyTimeLimitEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CustodyTimeLimitEventProcessorTest.java index 3a4cbaca08..589c258d78 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CustodyTimeLimitEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/CustodyTimeLimitEventProcessorTest.java @@ -3,7 +3,7 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; @@ -20,7 +20,7 @@ import uk.gov.justice.services.messaging.JsonEnvelope; import uk.gov.justice.services.messaging.spi.DefaultEnvelope; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -48,7 +48,7 @@ public void shouldPublishStopClockCustodyTimeLimit() { final String offence1Id = randomUUID().toString(); final String offence2Id = randomUUID().toString(); final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.event.custody-time-limit-clock-stopped"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingId", hearingId) .add("offenceIds", createArrayBuilder() .add(offence1Id) @@ -79,7 +79,7 @@ public void shouldUpdateHearingsWithExtendedCustodyTimeLimit() { final String extendedCustodyTimeLimit = "2021-05-23"; final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.events.progression.custody-time-limit-extended"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingIds", createArrayBuilder() .add(hearingId1) .add(hearingId2) diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefenceCounselChangeEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefenceCounselChangeEventProcessorTest.java index 6413f8f882..89fe5b8eb1 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefenceCounselChangeEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefenceCounselChangeEventProcessorTest.java @@ -2,7 +2,7 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; @@ -18,7 +18,7 @@ import uk.gov.justice.services.messaging.JsonEnvelope; import uk.gov.justice.services.messaging.spi.DefaultEnvelope; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -95,7 +95,7 @@ public void processDefenceCounselUpdatedEvent() { @Test public void processDefenceCounselRemovedEvent() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.defence-counsel-removed"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("id", ID) .add("hearingId", HEARING_ID) .build()); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefenceCounselEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefenceCounselEventProcessorTest.java index c722d0af4d..957479c9b6 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefenceCounselEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefenceCounselEventProcessorTest.java @@ -9,7 +9,7 @@ import uk.gov.justice.services.core.sender.Sender; import uk.gov.justice.services.messaging.JsonEnvelope; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -39,7 +39,7 @@ public class DefenceCounselEventProcessorTest { public void publishPublicDefenceCounselAddedEvent() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.hearing.defence-counsel-added"), - Json.createObjectBuilder().build()); + JsonObjects.createObjectBuilder().build()); processor.publishPublicDefenceCounselAddedEvent(event); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantAttendanceEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantAttendanceEventProcessorTest.java index aa7be9ecfb..0a25e8de43 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantAttendanceEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantAttendanceEventProcessorTest.java @@ -9,7 +9,7 @@ import uk.gov.justice.services.core.sender.Sender; import uk.gov.justice.services.messaging.JsonEnvelope; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -39,7 +39,7 @@ public class DefendantAttendanceEventProcessorTest { public void processPublicDefendantAttendanceUpdated() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.hearing.defendant-attendance-updated"), - Json.createObjectBuilder().build()); + JsonObjects.createObjectBuilder().build()); processor.publishPublicDefendantAttendanceUpdatedEvent(event); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantCaseWithdrawnOrDismissedEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantCaseWithdrawnOrDismissedEventProcessorTest.java index 2375f13bb0..de65ab3bbd 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantCaseWithdrawnOrDismissedEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantCaseWithdrawnOrDismissedEventProcessorTest.java @@ -32,7 +32,7 @@ import java.util.Map; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonReader; @@ -127,7 +127,7 @@ private Map.Entry entry(final K key, final V value) { } public static JsonObject readJson(final String jsonString) { - try (final JsonReader jsonReader = Json.createReader(new StringReader(jsonString))) { + try (final JsonReader jsonReader = JsonObjects.createReader(new StringReader(jsonString))) { return jsonReader.readObject(); } } diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantLegalAidStatusUpdatedProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantLegalAidStatusUpdatedProcessorTest.java index 7cdba27732..5b0c6df3df 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantLegalAidStatusUpdatedProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DefendantLegalAidStatusUpdatedProcessorTest.java @@ -16,7 +16,7 @@ import uk.gov.moj.cpp.hearing.persist.entity.ha.HearingSnapshotKey; import uk.gov.moj.cpp.hearing.repository.DefendantRepository; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import java.util.List; import java.util.UUID; @@ -64,7 +64,7 @@ public void initMocks() { @Test public void testDefendantLegalAidStatusUpdate() { - final JsonObject eventPayload = Json.createObjectBuilder() + final JsonObject eventPayload = JsonObjects.createObjectBuilder() .add(DEFENDANT_ID, defendantId) .add(CASE_ID, caseId) .add(LEGAL_AID_STATUS, "Granted") @@ -95,9 +95,9 @@ public void testHandleDefendantLegalStatusUpdateForHearings() { final UUID defendantId = randomUUID(); final UUID hearingId = randomUUID(); - final JsonObject eventPayload = Json.createObjectBuilder() + final JsonObject eventPayload = JsonObjects.createObjectBuilder() .add(DEFENDANT_ID, defendantId.toString()) - .add("hearingIds", Json.createArrayBuilder().add(hearingId.toString()).build()) + .add("hearingIds", JsonObjects.createArrayBuilder().add(hearingId.toString()).build()) .add(LEGAL_AID_STATUS, "Granted") .build(); final JsonEnvelope event = JsonEnvelope.envelopeFrom(metadataWithRandomUUID("hearing.defendant-legalaid-status-updated"), diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DuplicateHearingEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DuplicateHearingEventProcessorTest.java index ff280f9367..ba21ee7fec 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DuplicateHearingEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/DuplicateHearingEventProcessorTest.java @@ -4,8 +4,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static com.jayway.jsonpath.matchers.JsonPathMatchers.withoutJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.core.IsEqual.equalTo; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/Framework5Fix.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/Framework5Fix.java index 551621af83..4751feb78a 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/Framework5Fix.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/Framework5Fix.java @@ -10,7 +10,7 @@ import java.io.StringReader; import java.util.List; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import com.fasterxml.jackson.core.JsonProcessingException; @@ -40,7 +40,7 @@ public static JsonEnvelope toJsonEnvelope(Object env) { } catch (JsonProcessingException ex) { throw new RuntimeException(ex.getMessage(), ex); } - return defaultJsonEnvelopeProvider.envelopeFrom(e.metadata(), Json.createReader(new StringReader(jsonString)).readObject()); + return defaultJsonEnvelopeProvider.envelopeFrom(e.metadata(), JsonObjects.createReader(new StringReader(jsonString)).readObject()); } else { throw new IllegalArgumentException("don't know how to convert this"); } diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingDeletedEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingDeletedEventProcessorTest.java index d419802b31..bdc639ba02 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingDeletedEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingDeletedEventProcessorTest.java @@ -3,8 +3,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.isJson; import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingDetailChangeEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingDetailChangeEventProcessorTest.java index 0b9f3672dd..e8bb264b64 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingDetailChangeEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingDetailChangeEventProcessorTest.java @@ -26,7 +26,7 @@ import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -65,10 +65,10 @@ public class HearingDetailChangeEventProcessorTest { private HearingDetailChangeEventProcessor testObj; public static Metadata createMetadataWithUserId(final String id, final String name, final String userId) { - JsonObject jsonObject = Json.createObjectBuilder() + JsonObject jsonObject = JsonObjects.createObjectBuilder() .add(ID, id) .add(NAME, name) - .add(CONTEXT, Json.createObjectBuilder() + .add(CONTEXT, JsonObjects.createObjectBuilder() .add(USER_ID, userId).build()) .build(); @@ -105,20 +105,20 @@ public void publishHearingDetailChangedPublicEvent() throws Exception { } private JsonObject publicHearingChangedEvent() { - return Json.createObjectBuilder() - .add("hearing", Json.createObjectBuilder() + return JsonObjects.createObjectBuilder() + .add("hearing", JsonObjects.createObjectBuilder() .add("id", ARBITRARY_HEARING_ID) .add("type", ARBITRARY_TRIAL) .add("judge", getJudge()) .add("courtRoomId", ARBITRARY_HEARING_COURT_ROOM_ID) .add("courtRoomName", ARBITRARY_COURT_NAME) - .add("hearingDays", Json.createArrayBuilder().add(ARBITRARY_HEARING_DAY).add("2016-07-03T10:15:00Z").build()) + .add("hearingDays", JsonObjects.createArrayBuilder().add(ARBITRARY_HEARING_DAY).add("2016-07-03T10:15:00Z").build()) .build()) .build(); } private JsonObject getJudge() { - final JsonObject judgeJsonObject = Json.createObjectBuilder() + final JsonObject judgeJsonObject = JsonObjects.createObjectBuilder() .add("id", ARBITRARY_HEARING_JUDGE_ID) .add("firstName", ARBITRARY_HEARING_JUDGE_FIRST_NAME) .add("lastName", ARBITRARY_HEARING_JUDGE_LAST_NAME) diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingEventProcessorTest.java index 07f852ca54..6aac63472d 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingEventProcessorTest.java @@ -6,8 +6,8 @@ import static java.time.ZoneId.of; import static java.time.ZonedDateTime.now; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.CoreMatchers.nullValue; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingStatesEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingStatesEventProcessorTest.java index a30c29d9a5..1a4431ccd1 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingStatesEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingStatesEventProcessorTest.java @@ -20,7 +20,7 @@ import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -53,7 +53,7 @@ public void processPublicEventApprovalRejected() { final String USER_ID = UUID.randomUUID().toString(); final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID(HEARING_EVENT_APPROVAL_REJECTED), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingId", HEARING_ID) .add("userId", USER_ID) .build()); @@ -78,7 +78,7 @@ public void processPublicEventHearingLocked() { final String USER_ID = UUID.randomUUID().toString(); final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID(HEARING_HEARING_LOCKED), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingId", HEARING_ID) .build()); @@ -101,7 +101,7 @@ public void processPublicEventHearingLockedByOthertUser() { final String USER_ID = UUID.randomUUID().toString(); final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID(PUBLIC_HEARING_HEARING_LOCKED_BY_OTHER_USER), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingId", HEARING_ID) .build()); @@ -124,7 +124,7 @@ public void processPublicHearingUnlockFailed() { final String USER_ID = UUID.randomUUID().toString(); final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID(HEARING_EVENT_HEARING_UNLOCK_FAILED), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingId", HEARING_ID) .build()); @@ -145,7 +145,7 @@ public void processPublicHearingUnlocked() { final String USER_ID = UUID.randomUUID().toString(); final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID(HEARING_EVENT_HEARING_UNLOCKED), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingId", HEARING_ID) .add("userId", USER_ID) .build()); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingUnallocatedEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingUnallocatedEventProcessorTest.java index faa3784a0a..311431d6c4 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingUnallocatedEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingUnallocatedEventProcessorTest.java @@ -3,8 +3,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.isJson; import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingVacatedEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingVacatedEventProcessorTest.java index f27a5b6720..ab795222d9 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingVacatedEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingVacatedEventProcessorTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingVacatedTrialDetailChangeEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingVacatedTrialDetailChangeEventProcessorTest.java index 2f21029667..5a069f9b6e 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingVacatedTrialDetailChangeEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/HearingVacatedTrialDetailChangeEventProcessorTest.java @@ -19,7 +19,7 @@ import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import com.fasterxml.jackson.databind.ObjectMapper; @@ -78,7 +78,7 @@ public void shouldPublishHearingVacatedTrialDetailUpdatedPublicEvent() { } private JsonObject publicHearingVacatedTrialDetailUpdatedEvent() { - return Json.createObjectBuilder() + return JsonObjects.createObjectBuilder() .add("hearingId", HEARING_ID) .add("vacatedTrialReasonId", VACATED_TRIAL_REASON_ID) .add("isVacated", true) diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/InitiateHearingEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/InitiateHearingEventProcessorTest.java index 20ba84b010..887d68ff4c 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/InitiateHearingEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/InitiateHearingEventProcessorTest.java @@ -3,8 +3,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.Collections.singletonList; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.CoreMatchers.notNullValue; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ListingCourtRestrictionEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ListingCourtRestrictionEventProcessorTest.java index ab55e3d258..5426844dfc 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ListingCourtRestrictionEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ListingCourtRestrictionEventProcessorTest.java @@ -21,7 +21,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -54,7 +54,7 @@ public void processCourtListRestrictedPublicEvent() { final UUID hearingId = randomUUID(); final List caseIds = Arrays.asList(randomUUID(), randomUUID()); - final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.listing.court-list-restricted"), Json.createObjectBuilder().add("hearingId", hearingId.toString()).build()); + final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.listing.court-list-restricted"), JsonObjects.createObjectBuilder().add("hearingId", hearingId.toString()).build()); processor.processRestrictCourtListPublicEvent(event); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/NewTargetToLegacyTargetConverterTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/NewTargetToLegacyTargetConverterTest.java index 6190c40133..82e03f3b40 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/NewTargetToLegacyTargetConverterTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/NewTargetToLegacyTargetConverterTest.java @@ -16,7 +16,7 @@ import java.util.Arrays; import java.util.List; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonReader; @@ -57,7 +57,7 @@ public void convert() throws IOException { private static JsonObject givenPayload(final String filePath) { try (InputStream inputStream = NextHearingHelperTest.class.getResourceAsStream(filePath)) { - final JsonReader jsonReader = Json.createReader(inputStream); + final JsonReader jsonReader = JsonObjects.createReader(inputStream); return jsonReader.readObject(); } catch (Exception e) { throw new RuntimeException(e); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/NextHearingEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/NextHearingEventProcessorTest.java index 9f7410b2a1..9b4f07e8a9 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/NextHearingEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/NextHearingEventProcessorTest.java @@ -27,7 +27,7 @@ import uk.gov.justice.services.messaging.Envelope; import uk.gov.justice.services.messaging.JsonEnvelope; import uk.gov.justice.services.test.utils.framework.api.JsonObjectConvertersFactory; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; @ExtendWith(MockitoExtension.class) @@ -58,7 +58,7 @@ public void processNextHearingDayChangedPublicEvent() { final String seedingHearingId = randomUUID().toString(); final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.events.listing.next-hearing-day-changed"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingId", hearingId) .add("seedingHearingId", seedingHearingId) .add("hearingStartDate", "2021-06-20T00:00:00.000Z") diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ProsecutionCounselChangeEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ProsecutionCounselChangeEventProcessorTest.java index 0dd8f97291..c1e50e5403 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ProsecutionCounselChangeEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ProsecutionCounselChangeEventProcessorTest.java @@ -2,7 +2,7 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; @@ -18,7 +18,7 @@ import uk.gov.justice.services.messaging.JsonEnvelope; import uk.gov.justice.services.messaging.spi.DefaultEnvelope; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -50,7 +50,7 @@ public class ProsecutionCounselChangeEventProcessorTest { public void processProsecutionCounselChangeIgnoredEvent() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.prosecution-counsel-change-ignored"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("reason", REASON) .build()); @@ -96,7 +96,7 @@ public void processProsecutionCounselUpdatedEvent() { @Test public void processProsecutionCounselRemovedEvent() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("hearing.prosecution-counsel-removed"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("id", ID) .add("hearingId", HEARING_ID) .build()); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ProsecutionCounselEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ProsecutionCounselEventProcessorTest.java index 58eba0721d..ee7b36625b 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ProsecutionCounselEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/ProsecutionCounselEventProcessorTest.java @@ -9,7 +9,7 @@ import uk.gov.justice.services.core.sender.Sender; import uk.gov.justice.services.messaging.JsonEnvelope; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -39,7 +39,7 @@ public class ProsecutionCounselEventProcessorTest { public void publishPublicDefenceCounselAddedEvent() { final JsonEnvelope event = envelopeFrom(metadataWithRandomUUID("public.hearing.prosecution-counsel-added"), - Json.createObjectBuilder().build()); + JsonObjects.createObjectBuilder().build()); processor.publishPublicProsecutionCounselAddedEvent(event); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/UpdateOffencesForDefendantEventProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/UpdateOffencesForDefendantEventProcessorTest.java index b8eee83099..ffa507346d 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/UpdateOffencesForDefendantEventProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/UpdateOffencesForDefendantEventProcessorTest.java @@ -2,8 +2,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/NextHearingHelperTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/NextHearingHelperTest.java index 5ea7ce0318..d5c0f97d7e 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/NextHearingHelperTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/NextHearingHelperTest.java @@ -48,7 +48,7 @@ import java.util.Optional; import java.util.stream.Stream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonReader; @@ -305,7 +305,7 @@ private void assertCourtCentre(final CourtCentre courtCentre) { private static JsonObject givenPayload(final String filePath) { try (InputStream inputStream = NextHearingHelperTest.class.getResourceAsStream(filePath)) { - final JsonReader jsonReader = Json.createReader(inputStream); + final JsonReader jsonReader = JsonObjects.createReader(inputStream); return jsonReader.readObject(); } catch (Exception e) { throw new RuntimeException(e); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/NextHearingHelperV3Test.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/NextHearingHelperV3Test.java index dacd15fbc8..ba971650d0 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/NextHearingHelperV3Test.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/delegates/helper/NextHearingHelperV3Test.java @@ -51,7 +51,7 @@ import java.util.List; import java.util.Optional; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonReader; @@ -374,7 +374,7 @@ private void assertCourtCentre(final CourtCentre courtCentre, final Boolean room private static JsonObject givenPayload(final String filePath) { try (InputStream inputStream = NextHearingHelperV3Test.class.getResourceAsStream(filePath)) { - final JsonReader jsonReader = Json.createReader(inputStream); + final JsonReader jsonReader = JsonObjects.createReader(inputStream); return jsonReader.readObject(); } catch (Exception e) { throw new RuntimeException(e); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/judiciary/JudiciaryUpdatedUserAddedProcessorTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/judiciary/JudiciaryUpdatedUserAddedProcessorTest.java index 4487d9876c..186ead3604 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/judiciary/JudiciaryUpdatedUserAddedProcessorTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/judiciary/JudiciaryUpdatedUserAddedProcessorTest.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.judiciary; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.never; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/relist/RelistReferenceDataServiceTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/relist/RelistReferenceDataServiceTest.java index cda3fcd9b1..55ac9e3761 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/relist/RelistReferenceDataServiceTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/relist/RelistReferenceDataServiceTest.java @@ -19,7 +19,7 @@ import uk.gov.moj.cpp.hearing.event.CommandEventTestBase; import uk.gov.moj.cpp.hearing.event.nowsdomain.referencedata.resultdefinition.ResultDefinition; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -67,7 +67,7 @@ public void shouldReturnValidResultDefinition() { @Test public void shouldReturnEmptyResultDefinition() { - final JsonObject jsonObjectPayload = Json.createObjectBuilder().add("resultDefinitions", Json.createArrayBuilder().add(Json.createObjectBuilder().build())).build(); + final JsonObject jsonObjectPayload = JsonObjects.createObjectBuilder().add("resultDefinitions", JsonObjects.createArrayBuilder().add(JsonObjects.createObjectBuilder().build())).build(); final Metadata metadata = CommandEventTestBase.metadataFor(RESULT_QUERY, randomUUID().toString()); final Envelope envelope = Envelope.envelopeFrom(metadata, jsonObjectPayload); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/AlcoholLevelMethodsReferenceDataLoaderTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/AlcoholLevelMethodsReferenceDataLoaderTest.java index 44e0785eb6..c9694d29c6 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/AlcoholLevelMethodsReferenceDataLoaderTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/AlcoholLevelMethodsReferenceDataLoaderTest.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/BailStatusReferenceDataLoaderTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/BailStatusReferenceDataLoaderTest.java index a0e908a334..b5ada49ce2 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/BailStatusReferenceDataLoaderTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/BailStatusReferenceDataLoaderTest.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CourtHouseReverseLookupTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CourtHouseReverseLookupTest.java index b48a5c48ff..5db82d9524 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CourtHouseReverseLookupTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CourtHouseReverseLookupTest.java @@ -2,7 +2,7 @@ import static java.util.Arrays.asList; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CourtRoomOuCodeReverseLookupTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CourtRoomOuCodeReverseLookupTest.java index 3b424342e6..92221f8d42 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CourtRoomOuCodeReverseLookupTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CourtRoomOuCodeReverseLookupTest.java @@ -1,8 +1,8 @@ package uk.gov.moj.cpp.hearing.event.service; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CrownCourtCentresCacheTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CrownCourtCentresCacheTest.java index 7cd498af35..ca06c40b9f 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CrownCourtCentresCacheTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/CrownCourtCentresCacheTest.java @@ -12,7 +12,7 @@ import java.util.Set; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -36,7 +36,7 @@ public void shouldInit() { final List expectedCourtCentreIds = Arrays.asList(courtCentreId); Set resultCourCentreIds = new HashSet<>(); resultCourCentreIds.add(courtCentreId); - final JsonObject courCentre = Json.createObjectBuilder().add("id",expectedCourtCentreIds.get(0).toString()).build(); + final JsonObject courCentre = JsonObjects.createObjectBuilder().add("id",expectedCourtCentreIds.get(0).toString()).build(); when( referenceDataLoader.getAllCrownCourtCentres()).thenReturn(Collections.singletonList(courCentre)); target.init(); Set result = target.getAllCrownCourtCentres(); diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/PleaTypeReferenceDataLoaderTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/PleaTypeReferenceDataLoaderTest.java index fa05c321c3..cbc260c71e 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/PleaTypeReferenceDataLoaderTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/PleaTypeReferenceDataLoaderTest.java @@ -12,8 +12,8 @@ import java.util.Set; import java.util.UUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ProgressionServiceTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ProgressionServiceTest.java index 47d1985f03..ab43e47153 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ProgressionServiceTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ProgressionServiceTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.event.service; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.notNullValue; import static org.mockito.ArgumentMatchers.any; @@ -23,7 +23,7 @@ import java.util.function.Function; import java.util.stream.Stream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ProsecutorDataLoaderTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ProsecutorDataLoaderTest.java index f483fb22e9..f8c54a3b83 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ProsecutorDataLoaderTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ProsecutorDataLoaderTest.java @@ -2,7 +2,7 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataClientTestBase.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataClientTestBase.java index ef0e34a258..3039a14aa7 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataClientTestBase.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataClientTestBase.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataLoaderTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataLoaderTest.java index 592a303cc5..adbc1f418d 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataLoaderTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/ReferenceDataLoaderTest.java @@ -2,7 +2,7 @@ import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.mockito.ArgumentMatchers.any; @@ -17,7 +17,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -61,7 +61,7 @@ public void getAllCrownCourtCentresSuccessfully() { private JsonEnvelope generateReferenceDataServiceResponse(final List expectedCourtCentreIds) { return createEnvelope(".", createObjectBuilder() - .add("organisationunits", Json.createArrayBuilder() + .add("organisationunits", JsonObjects.createArrayBuilder() .add(buildOrgUnit(expectedCourtCentreIds.get(0))) .add(buildOrgUnit(expectedCourtCentreIds.get(1))) ) @@ -69,7 +69,7 @@ private JsonEnvelope generateReferenceDataServiceResponse(final List expec } private JsonObject buildOrgUnit(final UUID courtCentreId) { - return Json.createObjectBuilder() + return JsonObjects.createObjectBuilder() .add("id", courtCentreId.toString()) .build(); } diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/VerdictTypeReferenceDataLoaderTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/VerdictTypeReferenceDataLoaderTest.java index 5fefb7b539..0f250f64f8 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/VerdictTypeReferenceDataLoaderTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/event/service/VerdictTypeReferenceDataLoaderTest.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.event.service; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/pi/ProsecutionCaseRetrieverTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/pi/ProsecutionCaseRetrieverTest.java index 1862dcc733..ddeeac52a4 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/pi/ProsecutionCaseRetrieverTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/pi/ProsecutionCaseRetrieverTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.pi; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.is; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/xhibit/CourtCentreHearingsRetrieverTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/xhibit/CourtCentreHearingsRetrieverTest.java index 727218b23b..8ee058a84f 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/xhibit/CourtCentreHearingsRetrieverTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/xhibit/CourtCentreHearingsRetrieverTest.java @@ -2,7 +2,7 @@ import static java.time.ZonedDateTime.now; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.junit.jupiter.api.Assertions.assertTrue; diff --git a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/xhibit/PublishCourtListRequestParametersParserTest.java b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/xhibit/PublishCourtListRequestParametersParserTest.java index 0589dfce2e..47ae965700 100644 --- a/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/xhibit/PublishCourtListRequestParametersParserTest.java +++ b/hearing-event/hearing-event-processor/src/test/java/uk/gov/moj/cpp/hearing/xhibit/PublishCourtListRequestParametersParserTest.java @@ -2,7 +2,7 @@ import static java.time.ZonedDateTime.*; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.Mockito.mock; diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/AbstractPublishLatestCourtCentreHearingIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/AbstractPublishLatestCourtCentreHearingIT.java index a9ec11f674..a26bb8e581 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/AbstractPublishLatestCourtCentreHearingIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/AbstractPublishLatestCourtCentreHearingIT.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.it; import static java.util.UUID.fromString; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.moj.cpp.hearing.it.Utilities.makeCommand; import static uk.gov.moj.cpp.hearing.utils.ProgressionStub.stubGetProgressionProsecutionCases; import static uk.gov.moj.cpp.hearing.utils.ReferenceDataStub.stubGetReferenceDataCourtRoomMappings; diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/AddMasterDefendantIdToDefendantIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/AddMasterDefendantIdToDefendantIT.java index c6f42f9596..2e4e2fe0e9 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/AddMasterDefendantIdToDefendantIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/AddMasterDefendantIdToDefendantIT.java @@ -2,7 +2,7 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.allOf; import static org.hamcrest.Matchers.is; diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ApplicationTimelineIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ApplicationTimelineIT.java index 4fdf7a0ac9..c17b26b739 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ApplicationTimelineIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ApplicationTimelineIT.java @@ -43,7 +43,7 @@ import java.util.UUID; import java.util.concurrent.TimeUnit; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.hamcrest.Matcher; import org.junit.jupiter.api.BeforeEach; @@ -78,7 +78,7 @@ public void shouldDeleteApplicationHearing(){ stubApplicationsByParentId(applicationId); sendMessage(getPublicTopicInstance().createProducer(), "public.progression.events.court-application-deleted", - Json.createObjectBuilder().add("hearingId",hearingOne.getId().toString()).add("applicationId",applicationId.toString() ).build(), + JsonObjects.createObjectBuilder().add("hearingId",hearingOne.getId().toString()).add("applicationId",applicationId.toString() ).build(), metadataOf(randomUUID(),"public.progression.events.court-application-deleted") .withUserId(randomUUID().toString()) .build() diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/DefendantLegalAidStatusUpdateIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/DefendantLegalAidStatusUpdateIT.java index eccd2620fa..2864923390 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/DefendantLegalAidStatusUpdateIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/DefendantLegalAidStatusUpdateIT.java @@ -19,7 +19,7 @@ import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Disabled; @@ -42,7 +42,7 @@ public void updateDefendantLegalAidStatus() { final UUID defendantId = hearingOne.getHearing().getProsecutionCases().get(0).getDefendants().get(0).getId(); final UUID caseId = hearingOne.getHearing().getProsecutionCases().get(0).getId(); - final JsonObject commandPayload = Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() .add("defendantId", defendantId.toString()) .add("legalAidStatus", "Granted") .add("caseId", caseId.toString()) diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ExtendHearingIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ExtendHearingIT.java index 980a10acf2..d6f91fe0f4 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ExtendHearingIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ExtendHearingIT.java @@ -31,7 +31,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -211,9 +211,9 @@ private void extendBreachApplication() throws Exception { UUID courtApplicationId = randomUUID(); - final JsonObject publicEventBreachApplicationsToBeAdded = Json.createObjectBuilder() + final JsonObject publicEventBreachApplicationsToBeAdded = JsonObjects.createObjectBuilder() .add("hearingId", hearing.getId().toString()) - .add("breachedApplications", Json.createArrayBuilder().add(courtApplicationId.toString())) + .add("breachedApplications", JsonObjects.createArrayBuilder().add(courtApplicationId.toString())) .build(); sendMessage(getPublicTopicInstance().createProducer(), diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/HearingCaseNoteIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/HearingCaseNoteIT.java index cb1951c768..ab3f79b985 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/HearingCaseNoteIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/HearingCaseNoteIT.java @@ -4,8 +4,8 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withJsonPath; import static io.restassured.RestAssured.given; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static javax.ws.rs.core.Response.Status.OK; import static org.apache.http.HttpStatus.SC_ACCEPTED; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/HearingEventsIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/HearingEventsIT.java index fc83023fce..aa779a99fd 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/HearingEventsIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/HearingEventsIT.java @@ -87,7 +87,7 @@ import java.util.function.Consumer; import javax.annotation.concurrent.NotThreadSafe; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; @@ -599,16 +599,16 @@ private CorrectLogEventCommand correctLogEvent(final RequestSpecification reques private JsonObject updateHearingEvents(final RequestSpecification requestSpec, final UUID hearingId, final List hearingEvents, final String updateEventsEndpoint, final Header headers) { - final JsonArrayBuilder hearingEventsArray = Json.createArrayBuilder(); + final JsonArrayBuilder hearingEventsArray = JsonObjects.createArrayBuilder(); hearingEvents.stream().forEach(event -> { - final JsonObject hearingEvent = Json.createObjectBuilder() + final JsonObject hearingEvent = JsonObjects.createObjectBuilder() .add("hearingEventId", event.getHearingEventId().toString()) .add("recordedLabel", event.getRecordedLabel()) .build(); hearingEventsArray.add(hearingEvent); }); final JsonObject payload = - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("hearingEvents", hearingEventsArray).build(); final Utilities.EventListener publicEventTopic = listenFor("public.hearing.events-updated") diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/InitiateHearingIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/InitiateHearingIT.java index 2b9683e2c2..d2da66ebe5 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/InitiateHearingIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/InitiateHearingIT.java @@ -5,7 +5,7 @@ import static com.jayway.jsonpath.matchers.JsonPathMatchers.withoutJsonPath; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static javax.ws.rs.core.Response.Status.OK; import static org.hamcrest.Matchers.hasItem; import static org.hamcrest.Matchers.hasItems; @@ -106,7 +106,7 @@ import java.util.stream.Collectors; import java.util.stream.IntStream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.hamcrest.Matcher; @@ -1421,7 +1421,7 @@ void shouldRaiseHearingDeleted_WhenHandleHearingUnallocatedCourtroomRemoved() { final UUID hearingId = hearing.getId(); - final JsonObject commandPayload = Json.createObjectBuilder() + final JsonObject commandPayload = JsonObjects.createObjectBuilder() .add("hearingId", hearingId.toString()) .add("estimatedMinutes", 30) .build(); diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/NCESJourneyIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/NCESJourneyIT.java index 434cb08fe8..9f059be8b5 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/NCESJourneyIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/NCESJourneyIT.java @@ -7,7 +7,7 @@ import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; import static java.util.concurrent.TimeUnit.SECONDS; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static javax.ws.rs.core.Response.Status.OK; import static org.apache.commons.lang3.RandomStringUtils.randomNumeric; import static org.awaitility.Awaitility.await; diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/PublishLatestCourtCentreHearingEventsViaSystemSchedulingIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/PublishLatestCourtCentreHearingEventsViaSystemSchedulingIT.java index df5cfc8edb..c2b5276e81 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/PublishLatestCourtCentreHearingEventsViaSystemSchedulingIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/PublishLatestCourtCentreHearingEventsViaSystemSchedulingIT.java @@ -4,8 +4,8 @@ import static java.util.Optional.of; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.http.HttpStatus.SC_ACCEPTED; import static org.hamcrest.Matchers.is; import static org.hamcrest.core.IsEqual.equalTo; diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/Queries.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/Queries.java index e296d0390b..fad1c95788 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/Queries.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/Queries.java @@ -2,7 +2,7 @@ import static java.text.MessageFormat.format; import static java.util.concurrent.TimeUnit.SECONDS; -import static javax.json.Json.createReader; +import static uk.gov.justice.services.messaging.JsonObjects.createReader; import static javax.ws.rs.core.Response.Status.OK; import static javax.ws.rs.core.Response.Status.fromStatusCode; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/RestructureResultsIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/RestructureResultsIT.java index c18744aee9..e5fe8f46ee 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/RestructureResultsIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/RestructureResultsIT.java @@ -5,8 +5,8 @@ import static java.time.LocalDate.now; import static java.util.Optional.ofNullable; import static java.util.stream.Collectors.toList; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.Matchers.hasItem; import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.is; diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ReusableInfoIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ReusableInfoIT.java index 161b4a9e60..49587fb47d 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ReusableInfoIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ReusableInfoIT.java @@ -5,8 +5,8 @@ import static java.lang.String.format; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.Matchers.allOf; import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.is; diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/SessionTimeIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/SessionTimeIT.java index 51e009bfa0..cd0ef19048 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/SessionTimeIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/SessionTimeIT.java @@ -21,7 +21,7 @@ import java.util.UUID; import java.util.concurrent.TimeUnit; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArray; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; @@ -90,13 +90,13 @@ public void shouldSaveSessionTimeForPartialUpdate() { final UUID courtRoomId = randomUUID(); final LocalDate courtSessionDate = LocalDate.now(); - final JsonObjectBuilder recordSessionTime1 = Json.createObjectBuilder(); + final JsonObjectBuilder recordSessionTime1 = JsonObjects.createObjectBuilder(); recordSessionTime1.add("courtHouseId", courtHouseId.toString()); recordSessionTime1.add("courtRoomId", courtRoomId.toString()); recordSessionTime1.add("courtSessionDate", courtSessionDate.toString()); - final JsonObjectBuilder courtSession = Json.createObjectBuilder(); - final JsonArrayBuilder judiciaryList = Json.createArrayBuilder(); + final JsonObjectBuilder courtSession = JsonObjects.createObjectBuilder(); + final JsonArrayBuilder judiciaryList = JsonObjects.createArrayBuilder(); judiciaryList.add(judiciary(jud1, jud1Name, chair1)); judiciaryList.add(judiciary(jud2, jud2Name, chair2)); courtSession.add("judiciaries", judiciaryList); @@ -119,14 +119,14 @@ public void shouldSaveSessionTimeForPartialUpdate() { verifyPartialCourtSession(jud1, jud1Name, chair1, amCourtSession); //Second Request - final JsonObjectBuilder recordSessionTime2 = Json.createObjectBuilder(); + final JsonObjectBuilder recordSessionTime2 = JsonObjects.createObjectBuilder(); recordSessionTime2.add("courtHouseId", courtHouseId.toString()); recordSessionTime2.add("courtRoomId", courtRoomId.toString()); recordSessionTime2.add("courtSessionDate", courtSessionDate.toString()); - final JsonObjectBuilder amCourtSession2 = Json.createObjectBuilder(); - final JsonArrayBuilder judiciaryList2 = Json.createArrayBuilder(); + final JsonObjectBuilder amCourtSession2 = JsonObjects.createObjectBuilder(); + final JsonArrayBuilder judiciaryList2 = JsonObjects.createArrayBuilder(); judiciaryList2.add(judiciary(jud2, jud2Name, chair2)); amCourtSession2.add("judiciaries", judiciaryList2); recordSessionTime2.add("amCourtSession", amCourtSession2); @@ -135,8 +135,8 @@ public void shouldSaveSessionTimeForPartialUpdate() { final String jud3Name = STRING.next(); final boolean chair3 = false; - final JsonObjectBuilder pmCourtSession2 = Json.createObjectBuilder(); - final JsonArrayBuilder judiciaryList3 = Json.createArrayBuilder(); + final JsonObjectBuilder pmCourtSession2 = JsonObjects.createObjectBuilder(); + final JsonArrayBuilder judiciaryList3 = JsonObjects.createArrayBuilder(); judiciaryList3.add(judiciary(jud3pm, jud3Name, chair3)); pmCourtSession2.add("judiciaries", judiciaryList3); recordSessionTime2.add("pmCourtSession", pmCourtSession2); @@ -239,7 +239,7 @@ private JsonObject recordSessionTime(final UUID courtHouseId, final UUID courtRo final boolean chair3 ) { - final JsonObjectBuilder recordSessionTime = Json.createObjectBuilder(); + final JsonObjectBuilder recordSessionTime = JsonObjects.createObjectBuilder(); recordSessionTime.add("courtHouseId", courtHouseId.toString()); recordSessionTime.add("courtRoomId", courtRoomId.toString()); recordSessionTime.add("courtSessionDate", courtSessionDate.toString()); @@ -264,14 +264,14 @@ private JsonObject courtSession(final String startTime, final String endTime, final boolean chair3 ) { - final JsonObjectBuilder courtSession = Json.createObjectBuilder(); + final JsonObjectBuilder courtSession = JsonObjects.createObjectBuilder(); courtSession.add("courtAssociateId", courtAssociateId.toString()); courtSession.add("courtClerkId", courtClerkId.toString()); courtSession.add("legalAdviserId", legalAdviserId.toString()); courtSession.add("startTime", startTime); courtSession.add("endTime", endTime); - final JsonArrayBuilder judiciaryList = Json.createArrayBuilder(); + final JsonArrayBuilder judiciaryList = JsonObjects.createArrayBuilder(); judiciaryList.add(judiciary(jud1, judName1, chair1)); judiciaryList.add(judiciary(jud2, judName2, chair2)); judiciaryList.add(judiciary(jud3, judName3, chair3)); @@ -281,7 +281,7 @@ private JsonObject courtSession(final String startTime, final String endTime, } private JsonObject judiciary(final UUID judId, final String jud1Name, final boolean chair) { - final JsonObjectBuilder judiciary = Json.createObjectBuilder(); + final JsonObjectBuilder judiciary = JsonObjects.createObjectBuilder(); judiciary.add("benchChairman", chair); judiciary.add("judiciaryId", judId.toString()); judiciary.add("judiciaryName", jud1Name); diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java index 9b3ee27265..92c0a4345a 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/ShareResultsIT.java @@ -10,8 +10,8 @@ import static java.util.Objects.nonNull; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static javax.ws.rs.core.Response.Status.OK; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.containsString; @@ -194,7 +194,7 @@ import javax.annotation.concurrent.NotThreadSafe; import javax.jms.MessageConsumer; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonObjectBuilder; @@ -1691,7 +1691,7 @@ private void saveDraftResultsV2(final UUID resultLineId, final UUID hearingId, f .replaceAll("OFFENCE_ID", randomUUID().toString()); final JsonObject saveDraftResultJson = new StringToJsonObjectConverter().convert(eventPayloadString); - JsonObjectBuilder builder = Json.createObjectBuilder(); + JsonObjectBuilder builder = JsonObjects.createObjectBuilder(); saveDraftResultJson.forEach(builder::add); builder.add("version", version); final JsonObject draftResultWithVersionJson = builder.build(); diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/UseCases.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/UseCases.java index ee0df4302b..76eab0468c 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/UseCases.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/UseCases.java @@ -6,7 +6,7 @@ import static java.util.Objects.nonNull; import static java.util.UUID.randomUUID; import static java.util.stream.Collectors.toList; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.collections.CollectionUtils.isNotEmpty; import static org.hamcrest.Matchers.hasItems; import static org.hamcrest.core.Is.is; @@ -114,7 +114,7 @@ import java.util.stream.Collectors; import java.util.stream.Stream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; import javax.json.JsonObjectBuilder; @@ -971,7 +971,7 @@ public static void addDefendant(final Defendant defendant) throws Exception { eventName, createObjectBuilder() .add("foooo", "to test additional properties") - .add("defendants", Json.createArrayBuilder().add(createObjectBuilder(jsonObject).build())) + .add("defendants", JsonObjects.createArrayBuilder().add(createObjectBuilder(jsonObject).build())) .build(), metadataWithRandomUUID(eventName).withUserId(randomUUID().toString()).build()); @@ -1103,7 +1103,7 @@ public static TrialType setTrialType(final RequestSpecification requestSpec, fin public static void updateCaseMarkers(final UUID prosecutionCaseId, final UUID hearingId, final List markers) throws Exception { final String eventName = "public.progression.case-markers-updated"; - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); for (final Marker marker : markers) { final ObjectMapper mapper = new ObjectMapperProducer().objectMapper(); final String payloadAsString = mapper.writeValueAsString(marker); @@ -1162,7 +1162,7 @@ public static void changeNextHearingDate(final UUID seedingHearingId, final UUID public static void updateProsecutor(final UUID prosecutionCaseId, final List hearingIds, final CpsProsecutorUpdated cpsProsecutorUpdated) throws JsonProcessingException { final String eventName = "public.progression.events.cps-prosecutor-updated"; - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); for (final UUID hearingId : hearingIds) { arrayBuilder.add(hearingId.toString()); } @@ -1208,7 +1208,7 @@ private static void callCommand(final RequestSpecification requestSpec, final UU public static void correctHearingDaysWithoutCourtCentre(final RequestSpecification requestSpec, final UUID hearingId, final List hearingDays) { - final JsonArrayBuilder hearingDayArrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder hearingDayArrayBuilder = JsonObjects.createArrayBuilder(); hearingDays.forEach(d -> { try { hearingDayArrayBuilder.add(objectToJsonObject(d)); @@ -1217,7 +1217,7 @@ public static void correctHearingDaysWithoutCourtCentre(final RequestSpecificati } }); - final JsonObject commandPayload = Json.createObjectBuilder().add("id", hearingId.toString()) + final JsonObject commandPayload = JsonObjects.createObjectBuilder().add("id", hearingId.toString()) .add("hearingDays", hearingDayArrayBuilder).build(); diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/Utilities.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/Utilities.java index 7b029ddd87..33bb489c5d 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/Utilities.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/Utilities.java @@ -25,7 +25,7 @@ import javax.jms.JMSException; import javax.jms.MessageConsumer; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import com.fasterxml.jackson.annotation.JsonInclude; @@ -160,7 +160,7 @@ public boolean matches(final Object o) { } jsonObjectMutable.remove("_metadata"); - JsonObject jsonObject = Json.createReader(new StringReader(jsonObjectMutable.toString())).readObject(); + JsonObject jsonObject = JsonObjects.createReader(new StringReader(jsonObjectMutable.toString())).readObject(); beanValue = MapJsonObjectToTypeMatcher.convert(PublicHearingDraftResultSaved.class, jsonObject); return beanMatcher.matches(beanValue); } diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/YouthCourtDefendantsUpdatedIT.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/YouthCourtDefendantsUpdatedIT.java index 25a1827750..56416b8bef 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/YouthCourtDefendantsUpdatedIT.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/it/YouthCourtDefendantsUpdatedIT.java @@ -16,7 +16,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObjectBuilder; @@ -44,9 +44,9 @@ private JsonPath updateDefendantsInYouthCourt(final RequestSpecification request try (EventListener eventListener = listenFor("public.hearing.defendants-in-youthcourt-updated") .withFilter(isJson(withJsonPath("$.hearingId", Is.is(hearingId.toString()))))) { - final JsonObjectBuilder jsonObjectBuilder = Json.createObjectBuilder(); + final JsonObjectBuilder jsonObjectBuilder = JsonObjects.createObjectBuilder(); - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); defendantsInYouthCourt.stream().forEach(d -> arrayBuilder.add(d.toString())); jsonObjectBuilder.add("youthCourtDefendantIds", arrayBuilder.build()); makeCommand(requestSpec, "hearing.youth-court-defendants") diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/steps/HearingEventStepDefinitions.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/steps/HearingEventStepDefinitions.java index 973f66bb9d..5ae5aa5cf5 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/steps/HearingEventStepDefinitions.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/steps/HearingEventStepDefinitions.java @@ -10,8 +10,8 @@ import static java.util.Arrays.asList; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static javax.ws.rs.core.Response.Status.OK; import static org.apache.http.HttpStatus.SC_ACCEPTED; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/ReferenceDataStub.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/ReferenceDataStub.java index 866e09124d..4450a9cf7d 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/ReferenceDataStub.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/ReferenceDataStub.java @@ -10,9 +10,9 @@ import static java.lang.String.format; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; -import static javax.json.Json.createReader; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createReader; import static javax.ws.rs.core.MediaType.APPLICATION_JSON; import static org.apache.http.HttpStatus.SC_OK; import static uk.gov.moj.cpp.hearing.it.Utilities.JsonUtil.toJsonString; @@ -43,7 +43,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; import javax.json.JsonObjectBuilder; @@ -917,10 +917,10 @@ public static void stubForYouthCourtForMagUUID(final UUID magsUUID) { builder.add("courtNameWelsh", "courtNameWelsh"); builder.add("id", randomUUID().toString()); - final JsonArrayBuilder youthCourtsBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder youthCourtsBuilder = JsonObjects.createArrayBuilder(); youthCourtsBuilder.add(builder.build()); final JsonObject payload = - Json.createObjectBuilder().add("youthCourts", youthCourtsBuilder.build()).build(); + JsonObjects.createObjectBuilder().add("youthCourts", youthCourtsBuilder.build()).build(); stub(payload, REFERENCE_DATA_YOUTH_COURT_QUERY_URL, REFERENCE_DATA_QUERY_YOUTH_COURT_MEDIA_TYPE, "magsUUID", magsUUID.toString()); } diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/SystemIdMapperStub.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/SystemIdMapperStub.java index 26c0c92374..8d312eee97 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/SystemIdMapperStub.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/SystemIdMapperStub.java @@ -11,7 +11,7 @@ import static com.github.tomakehurst.wiremock.client.WireMock.urlPathMatching; import static io.restassured.path.json.JsonPath.from; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.http.HttpStatus.SC_OK; import java.time.ZonedDateTime; diff --git a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/WireMockStubUtils.java b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/WireMockStubUtils.java index cb0015a618..a3a4e70307 100644 --- a/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/WireMockStubUtils.java +++ b/hearing-integration-test/src/test/java/uk/gov/moj/cpp/hearing/utils/WireMockStubUtils.java @@ -13,8 +13,8 @@ import static java.text.MessageFormat.format; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static javax.ws.rs.core.MediaType.APPLICATION_JSON; import static javax.ws.rs.core.Response.Status.OK; import static org.apache.http.HttpHeaders.CONTENT_TYPE; diff --git a/hearing-query/hearing-query-api/src/main/java/uk/gov/justice/api/resource/DefaultQueryApiHearingsEventLogExtractResource.java b/hearing-query/hearing-query-api/src/main/java/uk/gov/justice/api/resource/DefaultQueryApiHearingsEventLogExtractResource.java index f3f2d39585..5adb5beb84 100644 --- a/hearing-query/hearing-query-api/src/main/java/uk/gov/justice/api/resource/DefaultQueryApiHearingsEventLogExtractResource.java +++ b/hearing-query/hearing-query-api/src/main/java/uk/gov/justice/api/resource/DefaultQueryApiHearingsEventLogExtractResource.java @@ -29,7 +29,7 @@ import javax.inject.Inject; import javax.inject.Named; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonObjectBuilder; import javax.ws.rs.core.Context; @@ -67,7 +67,7 @@ public class DefaultQueryApiHearingsEventLogExtractResource implements QueryApiH @Override public Response getHearingsEventLogExtract(final String caseId, final String hearingId, final String applicationId, final String hearingDate, final UUID userId) throws IOException { - final JsonObjectBuilder payloadBuilder = Json.createObjectBuilder(); + final JsonObjectBuilder payloadBuilder = JsonObjects.createObjectBuilder(); if (nonNull(hearingId)) { payloadBuilder.add("hearingId", hearingId); diff --git a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java index 3968a796ec..773bb6c024 100644 --- a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java +++ b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApi.java @@ -1,8 +1,8 @@ package uk.gov.moj.cpp.hearing.query.api; import static java.util.UUID.fromString; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataFrom; @@ -59,7 +59,7 @@ import java.util.stream.Collectors; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonValue; import javax.ws.rs.BadRequestException; @@ -346,7 +346,7 @@ public JsonEnvelope getDefendantOutstandingFines(final JsonEnvelope query) { return requestStagingEnforcementToGetOutstandingFines(query, viewResponseEnvelopePayload); } return envelopeFrom(query.metadata(), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("outstandingFines", createArrayBuilder()).build()); } diff --git a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/UsersAndGroupsService.java b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/UsersAndGroupsService.java index 3c72167165..1ea1c7faa1 100644 --- a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/UsersAndGroupsService.java +++ b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/UsersAndGroupsService.java @@ -16,7 +16,7 @@ import java.util.List; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; public class UsersAndGroupsService { @@ -44,7 +44,7 @@ public Permissions permissions(final String userId) { final Metadata metadata = metadataBuilder().withName(GET_LOGGED_IN_USER_PERMISSIONS) .withId(randomUUID()).withUserId(userId).build(); - final Envelope envelope = envelopeFrom(metadata, Json.createObjectBuilder().build()); + final Envelope envelope = envelopeFrom(metadata, JsonObjects.createObjectBuilder().build()); final Envelope response = requester.request(envelope, JsonObject.class); return new Permissions.Builder() @@ -61,7 +61,7 @@ public List userRoles(final String userId) { .withId(randomUUID()) .withUserId(userId).build(); - final JsonObject build = Json.createObjectBuilder().add(USER_ID, userId).build(); + final JsonObject build = JsonObjects.createObjectBuilder().add(USER_ID, userId).build(); final Envelope envelope = envelopeFrom(metadata, build); final Envelope response = requester.request(envelope, JsonObject.class); diff --git a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/progression/ProgressionService.java b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/progression/ProgressionService.java index b46320ac0a..e52ec1a711 100644 --- a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/progression/ProgressionService.java +++ b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/progression/ProgressionService.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.query.api.service.progression; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.QUERY_API; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; import static uk.gov.justice.services.messaging.JsonEnvelope.metadataBuilder; diff --git a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/referencedata/ReferenceDataService.java b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/referencedata/ReferenceDataService.java index 092a96b745..7dda1c4149 100644 --- a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/referencedata/ReferenceDataService.java +++ b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/referencedata/ReferenceDataService.java @@ -4,7 +4,7 @@ import static java.time.LocalDate.now; import static java.util.Collections.emptyList; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.common.converter.LocalDates.from; import static uk.gov.justice.services.core.annotation.Component.QUERY_API; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; diff --git a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/usergroups/UserGroupQueryService.java b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/usergroups/UserGroupQueryService.java index 7a31812255..f4e20645c9 100644 --- a/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/usergroups/UserGroupQueryService.java +++ b/hearing-query/hearing-query-api/src/main/java/uk/gov/moj/cpp/hearing/query/api/service/usergroups/UserGroupQueryService.java @@ -2,7 +2,7 @@ import static java.util.Objects.nonNull; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.QUERY_API; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; diff --git a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/DefendantOutstandingFinesQueryApiTest.java b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/DefendantOutstandingFinesQueryApiTest.java index df0a6838d2..be609f0414 100644 --- a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/DefendantOutstandingFinesQueryApiTest.java +++ b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/DefendantOutstandingFinesQueryApiTest.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.query.api; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.times; @@ -19,7 +19,7 @@ import java.util.function.Function; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -90,7 +90,7 @@ public void should_return_outstanding_fines_when_defendant_id_is_known() { @Test public void should_return_NO_outstanding_fines_when_defendant_id_is_unknown() { when(hearingQueryView.getOutstandingFinesQueryFromDefendantId(any())).thenReturn(jsonEnvelopeFromHearing); - JsonObject emptyResponseFromHearingQueryView = Json.createObjectBuilder().build(); + JsonObject emptyResponseFromHearingQueryView = JsonObjects.createObjectBuilder().build(); setUp(emptyResponseFromHearingQueryView); diff --git a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApiTest.java b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApiTest.java index 20e188e40b..35f63d2620 100644 --- a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApiTest.java +++ b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/HearingQueryApiTest.java @@ -4,7 +4,7 @@ import static java.util.UUID.randomUUID; import static java.util.stream.Collectors.toList; import static java.util.stream.Collectors.toMap; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.io.FileUtils.readLines; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.containsInAnyOrder; diff --git a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/UserGroupQueryServiceTest.java b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/UserGroupQueryServiceTest.java index d2fcef16c5..3bca7e0dee 100644 --- a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/UserGroupQueryServiceTest.java +++ b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/UserGroupQueryServiceTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.query.api.service; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.ArgumentMatchers.any; diff --git a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/GroupsMapperTest.java b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/GroupsMapperTest.java index 1874e63eee..117e1f5477 100644 --- a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/GroupsMapperTest.java +++ b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/GroupsMapperTest.java @@ -12,7 +12,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObjectBuilder; @@ -45,21 +45,21 @@ public void shouldReturnGroups() { final Metadata metadata = metadataBuilder().withName("usersgroups.get-logged-in-user-permissions") .withId(randomUUID()).withUserId(userId).build(); - final JsonObjectBuilder group1Json = Json.createObjectBuilder(); + final JsonObjectBuilder group1Json = JsonObjects.createObjectBuilder(); group1Json.add(GROUP_ID, GROUP_ID1.toString()); group1Json.add(GROUP_NAME, GROUP_NAME1); group1Json.add(PROSECUTING_AUTHORITY, PROSECURITY_AUTH1); - final JsonObjectBuilder group2Json = Json.createObjectBuilder(); + final JsonObjectBuilder group2Json = JsonObjects.createObjectBuilder(); group2Json.add(GROUP_ID, GROUP_ID2.toString()); group2Json.add(GROUP_NAME, GROUP_NAME2); group2Json.add(PROSECUTING_AUTHORITY, PROSECURITY_AUTH2); - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); arrayBuilder.add(group1Json); arrayBuilder.add(group2Json); - final JsonObjectBuilder permissions = Json.createObjectBuilder(); + final JsonObjectBuilder permissions = JsonObjects.createObjectBuilder(); permissions.add(GROUPS, arrayBuilder.build()); final Envelope envelope = Envelope.envelopeFrom(metadata, permissions.build()); @@ -73,7 +73,7 @@ public void shouldReturnEmptyListWhenNoGroupsExists() { final Metadata metadata = metadataBuilder().withName("usersgroups.get-logged-in-user-permissions") .withId(randomUUID()).withUserId(userId).build(); - final Envelope envelope = Envelope.envelopeFrom(metadata, Json.createObjectBuilder().build()); + final Envelope envelope = Envelope.envelopeFrom(metadata, JsonObjects.createObjectBuilder().build()); final List groups = groupsMapper.mapGroups(envelope); assertThat(groups.size(), is(0)); } diff --git a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/PermissionMapperTest.java b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/PermissionMapperTest.java index 3546f6738e..c26b4bbd50 100644 --- a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/PermissionMapperTest.java +++ b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/PermissionMapperTest.java @@ -13,7 +13,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObjectBuilder; @@ -49,23 +49,23 @@ public void shouldReturnGroups() { final Metadata metadata = metadataBuilder().withName("usersgroups.get-logged-in-user-permissions") .withId(randomUUID()).withUserId(userId).build(); - final JsonObjectBuilder permission1Json = Json.createObjectBuilder(); + final JsonObjectBuilder permission1Json = JsonObjects.createObjectBuilder(); permission1Json.add(OBJECT, OBJECT1); permission1Json.add(ACTION, ACTION1); permission1Json.add(SOURCE, SOURCE1.toString()); permission1Json.add(TARGET, TARGET1.toString()); - final JsonObjectBuilder permission2Json = Json.createObjectBuilder(); + final JsonObjectBuilder permission2Json = JsonObjects.createObjectBuilder(); permission2Json.add(OBJECT, OBJECT2); permission2Json.add(ACTION, ACTION2); permission2Json.add(SOURCE, SOURCE2.toString()); permission2Json.add(TARGET, TARGET2.toString()); - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); arrayBuilder.add(permission1Json); arrayBuilder.add(permission2Json); - final JsonObjectBuilder permissionsJson = Json.createObjectBuilder(); + final JsonObjectBuilder permissionsJson = JsonObjects.createObjectBuilder(); permissionsJson.add(PERMISSIONS, arrayBuilder.build()); final Envelope envelope = Envelope.envelopeFrom(metadata, permissionsJson.build()); @@ -79,7 +79,7 @@ public void shouldReturnEmptyListWhenPermissionNotExists() { final Metadata metadata = metadataBuilder().withName("usersgroups.get-logged-in-user-permissions") .withId(randomUUID()).withUserId(userId).build(); - final Envelope envelope = Envelope.envelopeFrom(metadata, Json.createObjectBuilder().build()); + final Envelope envelope = Envelope.envelopeFrom(metadata, JsonObjects.createObjectBuilder().build()); final List permissions = permissionsMapper.mapPermissions(envelope); assertThat(permissions.size(), is(0)); } @@ -90,14 +90,14 @@ public void shouldReturnGroupsWithNullSource() { final Metadata metadata = metadataBuilder().withName("usersgroups.get-logged-in-user-permissions") .withId(randomUUID()).withUserId(userId).build(); - final JsonObjectBuilder permission1Json = Json.createObjectBuilder(); + final JsonObjectBuilder permission1Json = JsonObjects.createObjectBuilder(); permission1Json.add(OBJECT, OBJECT1); permission1Json.add(ACTION, ACTION1); - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); arrayBuilder.add(permission1Json); - final JsonObjectBuilder permissionsJson = Json.createObjectBuilder(); + final JsonObjectBuilder permissionsJson = JsonObjects.createObjectBuilder(); permissionsJson.add(PERMISSIONS, arrayBuilder.build()); final Envelope envelope = Envelope.envelopeFrom(metadata, permissionsJson.build()); diff --git a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/RolesMapperTest.java b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/RolesMapperTest.java index b08d4ede3f..43f295f432 100644 --- a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/RolesMapperTest.java +++ b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/RolesMapperTest.java @@ -14,7 +14,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObjectBuilder; @@ -57,13 +57,13 @@ public void shouldReturnSwitchableRoles() { final Metadata metadata = metadataBuilder().withName("usersgroups.get-logged-in-user-permissions") .withId(randomUUID()).withUserId(userId).build(); - final JsonObjectBuilder role1Json = Json.createObjectBuilder(); + final JsonObjectBuilder role1Json = JsonObjects.createObjectBuilder(); role1Json.add(ROLE_ID, ROLE_ID1.toString()); role1Json.add(DESCRIPTION, DESCRIPTION1); role1Json.add(LABEL, LABEL1); role1Json.add(SELECTABLE, SELECTABLE1); - final JsonObjectBuilder role2Json = Json.createObjectBuilder(); + final JsonObjectBuilder role2Json = JsonObjects.createObjectBuilder(); role2Json.add(ROLE_ID, ROLE_ID2.toString()); role2Json.add(DESCRIPTION, DESCRIPTION2); role2Json.add(LABEL, LABEL2); @@ -72,11 +72,11 @@ public void shouldReturnSwitchableRoles() { role2Json.add(START_DATE, START_DATE2.toString()); role2Json.add(END_DATE, END_DATE2.toString()); - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); arrayBuilder.add(role1Json); arrayBuilder.add(role2Json); - final JsonObjectBuilder permissions = Json.createObjectBuilder(); + final JsonObjectBuilder permissions = JsonObjects.createObjectBuilder(); permissions.add(SWITCHABLE_ROLES, arrayBuilder.build()); final Envelope envelope = Envelope.envelopeFrom(metadata, permissions.build()); @@ -90,7 +90,7 @@ public void shouldReturnEmptyListWhenEmptySwitchableRolesPresentInEnvelope() { final Metadata metadata = metadataBuilder().withName("usersgroups.get-logged-in-user-permissions") .withId(randomUUID()).withUserId(userId).build(); - final Envelope envelope = Envelope.envelopeFrom(metadata, Json.createObjectBuilder().build()); + final Envelope envelope = Envelope.envelopeFrom(metadata, JsonObjects.createObjectBuilder().build()); final List switchableRoles = rolesMapper.switchableRoles(envelope); assertThat(switchableRoles.size(), is(0)); } @@ -101,13 +101,13 @@ public void shouldReturnRoles() { final Metadata metadata = metadataBuilder().withName("usersgroups.roles") .withId(randomUUID()).withUserId(userId).build(); - final JsonObjectBuilder role1Json = Json.createObjectBuilder(); + final JsonObjectBuilder role1Json = JsonObjects.createObjectBuilder(); role1Json.add(ROLE_ID, ROLE_ID1.toString()); role1Json.add(DESCRIPTION, DESCRIPTION1); role1Json.add(LABEL, LABEL1); role1Json.add(SELECTABLE, SELECTABLE1); - final JsonObjectBuilder role2Json = Json.createObjectBuilder(); + final JsonObjectBuilder role2Json = JsonObjects.createObjectBuilder(); role2Json.add(ROLE_ID, ROLE_ID2.toString()); role2Json.add(DESCRIPTION, DESCRIPTION2); role2Json.add(LABEL, LABEL2); @@ -116,11 +116,11 @@ public void shouldReturnRoles() { role2Json.add(START_DATE, START_DATE2.toString()); role2Json.add(END_DATE, END_DATE2.toString()); - final JsonArrayBuilder arrayBuilder = Json.createArrayBuilder(); + final JsonArrayBuilder arrayBuilder = JsonObjects.createArrayBuilder(); arrayBuilder.add(role1Json); arrayBuilder.add(role2Json); - final JsonObjectBuilder permissions = Json.createObjectBuilder(); + final JsonObjectBuilder permissions = JsonObjects.createObjectBuilder(); permissions.add(ROLES, arrayBuilder.build()); final Envelope envelope = Envelope.envelopeFrom(metadata, permissions.build()); @@ -134,7 +134,7 @@ public void shouldReturnEmptyListWhenEmptyRolesPresentInEnvelope() { final Metadata metadata = metadataBuilder().withName("usersgroups.roles") .withId(randomUUID()).withUserId(userId).build(); - final Envelope envelope = Envelope.envelopeFrom(metadata, Json.createObjectBuilder().build()); + final Envelope envelope = Envelope.envelopeFrom(metadata, JsonObjects.createObjectBuilder().build()); final List roles = rolesMapper.mapRoles(envelope); assertThat(roles.size(),is(0)); } diff --git a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/UsersAndGroupsServiceTest.java b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/UsersAndGroupsServiceTest.java index 69a7f620bd..c26533d7bf 100644 --- a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/UsersAndGroupsServiceTest.java +++ b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/accessfilter/UsersAndGroupsServiceTest.java @@ -21,7 +21,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -81,7 +81,7 @@ public void shouldReturnLoggedInPermissions() { final Metadata metadata = metadataBuilder().withName("usersgroups.get-logged-in-user-permissions") .withId(randomUUID()).withUserId(userId).build(); - final Envelope envelope = Envelope.envelopeFrom(metadata, Json.createObjectBuilder().build()); + final Envelope envelope = Envelope.envelopeFrom(metadata, JsonObjects.createObjectBuilder().build()); when(requester.request(any(), any())).thenReturn(envelope); when(groupsMapper.mapGroups(envelope)).thenReturn(groups()); when(switchableRolesMapper.switchableRoles(envelope)).thenReturn(switchableRoles()); @@ -100,7 +100,7 @@ public void shouldReturnUserRoles() { final Metadata metadata = metadataBuilder().withName("usersgroups.get-roles-for-user") .withId(randomUUID()).withUserId(userId).build(); - final Envelope envelope = Envelope.envelopeFrom(metadata, Json.createObjectBuilder().add("userId", userId).build()); + final Envelope envelope = Envelope.envelopeFrom(metadata, JsonObjects.createObjectBuilder().add("userId", userId).build()); when(requester.request(any(), any())).thenReturn(envelope); when(switchableRolesMapper.mapRoles(envelope)).thenReturn(switchableRoles()); final List userRoles = usersAndGroupsService.userRoles(userId); diff --git a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/referencedata/ReferenceDataServiceTest.java b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/referencedata/ReferenceDataServiceTest.java index d4ce7a9d4a..d763531a76 100644 --- a/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/referencedata/ReferenceDataServiceTest.java +++ b/hearing-query/hearing-query-api/src/test/java/uk/gov/moj/cpp/hearing/query/api/service/referencedata/ReferenceDataServiceTest.java @@ -2,9 +2,9 @@ import static java.util.Arrays.asList; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; -import static javax.json.Json.createReader; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createReader; import static org.apache.commons.lang3.StringUtils.EMPTY; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingEventQueryView.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingEventQueryView.java index ace70a8cc9..01001161e0 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingEventQueryView.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingEventQueryView.java @@ -6,8 +6,8 @@ import static java.util.Objects.isNull; import static java.util.UUID.fromString; import static java.time.ZonedDateTime.now; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.collections.CollectionUtils.isNotEmpty; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonObjects.getString; diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryView.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryView.java index a6318a1574..05e500ff3b 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryView.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryView.java @@ -5,7 +5,7 @@ import static java.util.UUID.fromString; import static java.util.stream.Collectors.toList; import static java.util.stream.Collectors.toMap; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.lang3.StringUtils.defaultIfEmpty; import static org.apache.commons.lang3.StringUtils.isEmpty; import static uk.gov.justice.services.core.annotation.Component.QUERY_VIEW; @@ -63,7 +63,7 @@ import java.util.stream.Stream; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArray; import javax.json.JsonObject; import javax.json.JsonObjectBuilder; @@ -357,7 +357,7 @@ public JsonEnvelope getHearingsForCourtCentresForDate(final JsonEnvelope envelop public JsonEnvelope getOutstandingFinesQueryFromDefendantId(final JsonEnvelope envelope) { final Optional defendantId = getUUID(envelope.payloadAsJsonObject(), FIELD_DEFENDANT_ID); - final JsonEnvelope jsonEnvelopeWithoutPayload = envelopeFrom(envelope.metadata(), Json.createObjectBuilder().build()); + final JsonEnvelope jsonEnvelopeWithoutPayload = envelopeFrom(envelope.metadata(), JsonObjects.createObjectBuilder().build()); if (defendantId.isPresent()) { try { final DefendantSearch defendantSearch = defendantRepository.getDefendantDetailsForSearching(defendantId.get()); @@ -413,7 +413,7 @@ public JsonEnvelope getDefendantInfoFromCourtHouseId(final JsonEnvelope envelope } catch (final NoResultException nre) { LOGGER.error("### No defendant found with {}. Exception: {}", envelope.toObfuscatedDebugString(), nre); - return envelopeFrom(envelope.metadata(), Json.createObjectBuilder().build()); + return envelopeFrom(envelope.metadata(), JsonObjects.createObjectBuilder().build()); } } @@ -423,7 +423,7 @@ public JsonEnvelope getReusableInformation(final JsonEnvelope envelope, final Li final Optional hearingEntity = hearingService.getHearingDomainById(hearingId); if (!hearingEntity.isPresent()) { - return envelopeFrom(envelope.metadata(), Json.createObjectBuilder().build()); + return envelopeFrom(envelope.metadata(), JsonObjects.createObjectBuilder().build()); } final uk.gov.justice.core.courts.Hearing hearing = hearingEntity.get(); @@ -461,7 +461,7 @@ public JsonEnvelope retrieveCustodyTimeLimit(final JsonEnvelope envelope) { return envelopeFrom(envelope.metadata(), ctlExpiryDate); } else { - return envelopeFrom(envelope.metadata(), Json.createObjectBuilder().build()); + return envelopeFrom(envelope.metadata(), JsonObjects.createObjectBuilder().build()); } } diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/convertor/ReusableInformationBaseConverter.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/convertor/ReusableInformationBaseConverter.java index 97300b2bf7..fb6443e705 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/convertor/ReusableInformationBaseConverter.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/convertor/ReusableInformationBaseConverter.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.query.view.convertor; import static java.util.Optional.ofNullable; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import uk.gov.moj.cpp.hearing.common.ReusableInformation; import uk.gov.moj.cpp.hearing.common.ReusableInformationConverterType; diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/convertor/ReusableInformationMainConverter.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/convertor/ReusableInformationMainConverter.java index 4d4b2e0dce..6bbfcd0ea8 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/convertor/ReusableInformationMainConverter.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/convertor/ReusableInformationMainConverter.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.query.view.convertor; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.lang3.StringUtils.getCommonPrefix; import static org.apache.commons.lang3.StringUtils.isNotBlank; import static org.slf4j.LoggerFactory.getLogger; diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/HearingService.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/HearingService.java index fc365a2189..755aa87dbd 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/HearingService.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/HearingService.java @@ -14,7 +14,7 @@ import static java.util.Optional.ofNullable; import static java.util.UUID.fromString; import static java.util.stream.Collectors.toList; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.collections.CollectionUtils.isNotEmpty; import static uk.gov.justice.core.courts.ApplicationStatus.EJECTED; import static uk.gov.justice.core.courts.JurisdictionType.CROWN; @@ -123,7 +123,7 @@ import java.util.stream.Collectors; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; import javax.json.JsonObjectBuilder; @@ -820,8 +820,8 @@ public NowListResponse getNows(final UUID hearingId) { @Transactional public JsonObject getNowsRepository(final String q) { LOGGER.debug("Searching for allowed user groups with materialId='{}'", q); - final JsonObjectBuilder json = Json.createObjectBuilder(); - final JsonArrayBuilder jsonArrayBuilder = Json.createArrayBuilder(); + final JsonObjectBuilder json = JsonObjects.createObjectBuilder(); + final JsonArrayBuilder jsonArrayBuilder = JsonObjects.createArrayBuilder(); final NowsMaterial nowsMaterial = nowsMaterialRepository.findBy(fromString(q)); if (nowsMaterial != null) { nowsMaterial.getUserGroups().stream().sorted().collect(toList()).forEach(jsonArrayBuilder::add); @@ -868,7 +868,7 @@ public JsonObject getSubscriptions(final String referenceDateParam, final String LOGGER.error(format("Exception occurred while retrieve get subscriptions = '%s - %s'", referenceDateParam, nowTypeParam), e); - return Json.createObjectBuilder().build(); + return JsonObjects.createObjectBuilder().build(); } } @@ -1125,7 +1125,7 @@ public void validateUserPermissionForApplicationType(final JsonEnvelope query) { } public static boolean isUserHasPermissionForApplicationTypeCode(final Metadata metadata, final Requester requester, final String applicationTypeCode) { - final JsonObject getOrganisationForUserRequest = Json.createObjectBuilder() + final JsonObject getOrganisationForUserRequest = JsonObjects.createObjectBuilder() .add(ACTION, ACCESS_TO_STANDALONE_APPLICATION) .add(OBJECT, applicationTypeCode) .build(); diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ProgressionService.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ProgressionService.java index e6c936d430..d32d0783f0 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ProgressionService.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ProgressionService.java @@ -3,7 +3,7 @@ import static java.util.Collections.emptyList; import static java.util.Objects.nonNull; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.QUERY_API; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ReusableInfoService.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ReusableInfoService.java index 63015c6926..602a4c8e52 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ReusableInfoService.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ReusableInfoService.java @@ -3,8 +3,8 @@ import static java.util.Collections.emptyList; import static java.util.stream.Collectors.toList; import static java.util.stream.Collectors.toMap; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.apache.commons.lang3.StringUtils.isNotBlank; diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataService.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataService.java index 2a2357f143..09b07b8731 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataService.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/ctl/ReferenceDataService.java @@ -37,7 +37,7 @@ import static java.util.Optional.empty; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.EVENT_PROCESSOR; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; diff --git a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/userdata/UserDataService.java b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/userdata/UserDataService.java index a86b0bc8e1..c9be75335f 100644 --- a/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/userdata/UserDataService.java +++ b/hearing-query/hearing-query-view/src/main/java/uk/gov/moj/cpp/hearing/query/view/service/userdata/UserDataService.java @@ -11,7 +11,7 @@ import uk.gov.moj.cpp.hearing.query.view.model.PermissionList; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArray; import javax.json.JsonObject; import javax.json.JsonValue; @@ -22,7 +22,7 @@ import static java.util.Collections.emptyList; import static java.util.Objects.isNull; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static uk.gov.justice.services.core.annotation.Component.QUERY_API; import static uk.gov.justice.services.core.enveloper.Enveloper.envelop; import static uk.gov.justice.services.messaging.JsonEnvelope.envelopeFrom; @@ -61,7 +61,7 @@ public List getUserDetails(final JsonEnvelope jsonEnvelope, String userI } public List getUserPermissionForApplicationTypes(final Metadata metadata) { - final JsonObject getOrganisationForUserRequest = Json.createObjectBuilder() + final JsonObject getOrganisationForUserRequest = JsonObjects.createObjectBuilder() .add(ACTION, ACCESS_TO_STANDALONE_APPLICATION) .build(); final MetadataBuilder metadataWithActionName = Envelope.metadataFrom(metadata).withName("usersgroups.is-logged-in-user-has-permission-for-action"); diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/HearingEventQueryViewTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/HearingEventQueryViewTest.java index 808962900b..09549b5d4a 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/HearingEventQueryViewTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/HearingEventQueryViewTest.java @@ -17,7 +17,7 @@ import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; import static java.util.stream.Collectors.joining; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.*; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.sameInstance; diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryTest.java index 808b58219c..6ead15141d 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/HearingQueryTest.java @@ -11,8 +11,8 @@ import static java.util.Optional.of; import static java.util.UUID.fromString; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.allOf; import static org.hamcrest.Matchers.is; @@ -110,7 +110,7 @@ import java.util.stream.Collectors; import java.util.stream.Stream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArray; import javax.json.JsonObject; import javax.persistence.NoResultException; @@ -599,7 +599,7 @@ public void shouldSearchByMaterialId() { createObjectBuilder() .add("q", "q") .build()); - when(hearingService.getNowsRepository(envelope.payloadAsJsonObject().getString("q"))).thenReturn(Json.createObjectBuilder().build()); + when(hearingService.getNowsRepository(envelope.payloadAsJsonObject().getString("q"))).thenReturn(JsonObjects.createObjectBuilder().build()); final JsonEnvelope jsonEnvelope = target.searchByMaterialId(envelope); verify(hearingService, times(1)).getNowsRepository("q"); assertThat(jsonEnvelope.metadata().name(), is("hearing.query.search-by-material-id")); @@ -1051,7 +1051,7 @@ public void shouldFindHearings() { final JsonEnvelope envelope = envelopeFrom(metadataBuilder().withId(randomUUID()) .withName("hearing.get.hearings"), - Json.createObjectBuilder() + JsonObjects.createObjectBuilder() .add("date", date.toString()) .add("courtCentreId", courtCentreId.toString()) .add("roomId", roomId.toString()) @@ -1069,7 +1069,7 @@ public void shouldFindHearingsForToday() { JsonEnvelope envelope = envelopeFrom(metadataBuilder().withUserId(userId) .withId(randomUUID()) .withName("hearing.get.hearings-for-today"), - Json.createObjectBuilder().build()); + JsonObjects.createObjectBuilder().build()); final Envelope hearings = target.findHearingsForToday(envelope); assertThat(hearings.payload().getHearingSummaries().size(), is(2)); assertThat(hearings.metadata().name(), is("hearing.get.hearings-for-today")); @@ -1084,7 +1084,7 @@ public void shouldFindHearingsForFuture() { JsonEnvelope envelope = envelopeFrom(metadataBuilder().withUserId(userId) .withId(randomUUID()) .withName("hearing.get.hearings-for-future"), - Json.createObjectBuilder().add("defendantId", defendantId).build()); + JsonObjects.createObjectBuilder().add("defendantId", defendantId).build()); final Envelope hearings = target.findHearingsForFuture(envelope, hearingTypes); assertThat(hearings.payload().getHearingSummaries().size(), is(2)); assertThat(hearings.metadata().name(), is("hearing.get.hearings-for-future")); @@ -1094,9 +1094,9 @@ public void shouldFindHearingsForFuture() { public void shouldRetrieveSubscriptions() { final JsonEnvelope envelope = envelopeFrom( metadataWithRandomUUID("hearing.retrieve-subscriptions"), - Json.createObjectBuilder().add("referenceDate", "referenceDate") + JsonObjects.createObjectBuilder().add("referenceDate", "referenceDate") .add("nowTypeId", "nowTypeId").build()); - when(hearingService.getSubscriptions("referenceDate", "nowTypeId")).thenReturn(Json.createObjectBuilder().build()); + when(hearingService.getSubscriptions("referenceDate", "nowTypeId")).thenReturn(JsonObjects.createObjectBuilder().build()); final JsonEnvelope jsonEnvelope = target.retrieveSubscriptions(envelope); verify(hearingService, times(1)).getSubscriptions("referenceDate", "nowTypeId"); assertThat(jsonEnvelope.metadata().name(), is("hearing.retrieve-subscriptions")); @@ -1108,7 +1108,7 @@ public void shouldGetCrackedIneffectiveTrialReason() { final CrackedIneffectiveVacatedTrialTypes crackedIneffectiveVacatedTrialTypes = getCrackedIneffectiveVacatedTrialTypes(); final JsonEnvelope envelope = envelopeFrom( metadataWithRandomUUID("hearing.get-cracked-ineffective-reason"), - Json.createObjectBuilder().add("trialTypeId", typeTrialId.toString()).build()); + JsonObjects.createObjectBuilder().add("trialTypeId", typeTrialId.toString()).build()); when(hearingService.fetchCrackedIneffectiveTrial(typeTrialId, crackedIneffectiveVacatedTrialTypes)) .thenReturn(mockCrackedIneffectiveTrial); final Envelope crackedIneffectiveTrialReason = target.getCrackedIneffectiveTrialReason(envelope, crackedIneffectiveVacatedTrialTypes); @@ -1119,12 +1119,12 @@ public void shouldGetCrackedIneffectiveTrialReason() { @Test public void shouldGetTimeline() { final CrackedIneffectiveVacatedTrialTypes crackedIneffectiveVacatedTrialTypes = getCrackedIneffectiveVacatedTrialTypes(); - final JsonObject allCourtRooms = Json.createObjectBuilder().build(); + final JsonObject allCourtRooms = JsonObjects.createObjectBuilder().build(); final UUID fieldId = randomUUID(); final UUID hearingId = randomUUID(); final JsonEnvelope envelope = envelopeFrom( metadataWithRandomUUID("hearing.timeline"), - Json.createObjectBuilder().add("id", fieldId.toString()).build()); + JsonObjects.createObjectBuilder().add("id", fieldId.toString()).build()); when(hearingService.getTimeLineByCaseId(fieldId, crackedIneffectiveVacatedTrialTypes, allCourtRooms)).thenReturn(getTimeLineHearingSummary(hearingId)); final Envelope timeline = target.getTimeline(envelope, crackedIneffectiveVacatedTrialTypes, allCourtRooms); @@ -1138,7 +1138,7 @@ public void shouldGetTimeline() { @Test public void shouldGetTimelineByApplicationId() { final CrackedIneffectiveVacatedTrialTypes crackedIneffectiveVacatedTrialTypes = getCrackedIneffectiveVacatedTrialTypes(); - final JsonObject allCourtRooms = Json.createObjectBuilder().build(); + final JsonObject allCourtRooms = JsonObjects.createObjectBuilder().build(); final UUID fieldId = randomUUID(); @@ -1151,7 +1151,7 @@ public void shouldGetTimelineByApplicationId() { final JsonEnvelope envelope = envelopeFrom( metadataWithRandomUUID("hearing.timeline"), - Json.createObjectBuilder().add("id", fieldId.toString()).build()); + JsonObjects.createObjectBuilder().add("id", fieldId.toString()).build()); final JsonObject courtApplicationPayload = createObjectBuilder() .add("courtApplications", createArrayBuilder() @@ -1183,7 +1183,7 @@ public void shouldGetHearingsForCourtCentresForDate() { final String dateOfHearing = "2023-12-31"; final JsonEnvelope envelope = envelopeFrom( metadataWithRandomUUID("hearing.hearings-court-centres-for-date"), - Json.createObjectBuilder().add("courtCentreIds", courtCentreId) + JsonObjects.createObjectBuilder().add("courtCentreIds", courtCentreId) .add("dateOfHearing", dateOfHearing).build()); final Set cppHearingEventIds = Stream.of(randomUUID(), randomUUID()).collect(Collectors.toSet()); when(hearingService.getHearingsByDate(Stream.of(UUID.fromString(courtCentreId)).collect(Collectors.toList()), LocalDate.parse(dateOfHearing), cppHearingEventIds)).thenReturn(Optional.empty()); diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/SessionTimeQueryViewTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/SessionTimeQueryViewTest.java index d199d7f394..77f5ea5711 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/SessionTimeQueryViewTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/SessionTimeQueryViewTest.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.query.view; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.Mockito.when; diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/converter/ReusableInformationMainConverterTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/converter/ReusableInformationMainConverterTest.java index bbd3da593f..959f242c80 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/converter/ReusableInformationMainConverterTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/converter/ReusableInformationMainConverterTest.java @@ -1,5 +1,7 @@ package uk.gov.moj.cpp.hearing.query.view.converter; +import uk.gov.justice.services.messaging.JsonObjects; + import static java.util.Collections.singletonList; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.CoreMatchers.nullValue; diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/helper/TimelineHearingSummaryHelperTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/helper/TimelineHearingSummaryHelperTest.java index d3d42e08c0..1c64152e7f 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/helper/TimelineHearingSummaryHelperTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/helper/TimelineHearingSummaryHelperTest.java @@ -6,8 +6,8 @@ import static java.time.format.DateTimeFormatter.ofPattern; import static java.util.Arrays.asList; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.notNullValue; diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/HearingServiceTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/HearingServiceTest.java index 46e3f164b4..e44ce67d76 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/HearingServiceTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/HearingServiceTest.java @@ -8,7 +8,7 @@ import static java.util.Collections.singletonList; import static java.util.UUID.randomUUID; import static java.util.stream.Collectors.toList; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.hasItems; import static org.hamcrest.CoreMatchers.notNullValue; @@ -172,7 +172,7 @@ import java.util.Set; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArray; import javax.json.JsonObject; import javax.json.JsonString; @@ -1960,7 +1960,7 @@ public void shouldValidateUserPermissionForApplicationTypeAndThrowForbiddenReque .withType(CourtApplicationType.courtApplicationType() .withCode("PL302487").build()) .build())); - final JsonObject responsePayload = Json.createObjectBuilder() + final JsonObject responsePayload = JsonObjects.createObjectBuilder() .add("hasPermission", false) .build(); when(requester.request(any(), any())).thenReturn(Envelope.envelopeFrom(Envelope.metadataBuilder() @@ -1987,7 +1987,7 @@ public void shouldValidateUserPermissionForApplicationTypeIsTrueAndDoNotThrowFor .withType(CourtApplicationType.courtApplicationType() .withCode("PL302487").build()) .build())); - final JsonObject responsePayload = Json.createObjectBuilder() + final JsonObject responsePayload = JsonObjects.createObjectBuilder() .add("hasPermission", true) .build(); when(requester.request(any(), any())).thenReturn(Envelope.envelopeFrom(Envelope.metadataBuilder() diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/JudgeNameMapperTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/JudgeNameMapperTest.java index efb267983c..a0799a533d 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/JudgeNameMapperTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/JudgeNameMapperTest.java @@ -19,7 +19,7 @@ import java.util.List; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonObjectBuilder; @@ -76,7 +76,7 @@ public void shouldNotReturnRequestedNameAsJudgeName() { } private JsonObject createJudiciaryWithRequestedName() { - final JsonObjectBuilder judiciaryBuilder = Json.createObjectBuilder(); + final JsonObjectBuilder judiciaryBuilder = JsonObjects.createObjectBuilder(); judiciaryBuilder.add(REQUESTED_NAME, REQUESTED_NAME); judiciaryBuilder.add(SURNAME, SURNAME); judiciaryBuilder.add(FORENAMES, FORENAMES); @@ -87,7 +87,7 @@ private JsonObject createJudiciaryWithRequestedName() { } private JsonObject createJudiciaryWithoutRequestedName() { - final JsonObjectBuilder judiciaryBuilder = Json.createObjectBuilder(); + final JsonObjectBuilder judiciaryBuilder = JsonObjects.createObjectBuilder(); judiciaryBuilder.add(SURNAME, SURNAME); judiciaryBuilder.add(FORENAMES, FORENAMES); judiciaryBuilder.add(TITLE_SUFFIX, TITLE_SUFFIX); diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ProgressionServiceTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ProgressionServiceTest.java index fccb76684c..0153077d00 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ProgressionServiceTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ProgressionServiceTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.query.view.service; import static java.util.UUID.randomUUID; -import static javax.json.Json.createReader; +import static uk.gov.justice.services.messaging.JsonObjects.createReader; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.mockito.ArgumentMatchers.any; @@ -21,7 +21,7 @@ import java.util.Optional; import java.util.UUID; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import org.junit.jupiter.api.Test; @@ -79,10 +79,10 @@ public void shouldRetrieveApplicationOnly() { @Test void shouldGetApplicationStatusForGivenListOfApplicationsIds() { when(requester.requestAsAdmin(any(), any(Class.class))).thenReturn(jsonEnvelopeMock); - when(jsonEnvelopeMock.payload()).thenReturn(Json.createObjectBuilder() - .add(APPLICATIONS_WITH_STATUS, Json.createArrayBuilder() - .add(Json.createObjectBuilder().add(APPLICATION_ID, "uuid-1").add(APPLICATION_STATUS, "LISTED")) - .add(Json.createObjectBuilder().add(APPLICATION_ID, "uuid-2").add(APPLICATION_STATUS, "FINALISED")) + when(jsonEnvelopeMock.payload()).thenReturn(JsonObjects.createObjectBuilder() + .add(APPLICATIONS_WITH_STATUS, JsonObjects.createArrayBuilder() + .add(JsonObjects.createObjectBuilder().add(APPLICATION_ID, "uuid-1").add(APPLICATION_STATUS, "LISTED")) + .add(JsonObjects.createObjectBuilder().add(APPLICATION_ID, "uuid-2").add(APPLICATION_STATUS, "FINALISED")) .build()) .build()); diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ReusableInfoServiceTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ReusableInfoServiceTest.java index 1a85ab6cd8..8c3ccfb15c 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ReusableInfoServiceTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/ReusableInfoServiceTest.java @@ -33,7 +33,7 @@ import java.util.stream.Collectors; import java.util.stream.Stream; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import com.fasterxml.jackson.databind.JsonNode; @@ -111,9 +111,9 @@ public void shouldGetViewStoreReusableInformation() throws IOException { final UUID masterDefendantId = UUID.randomUUID(); Defendant defendant = new Defendant.Builder() .withMasterDefendantId(masterDefendantId).build(); - final JsonObject jsonObj = Json.createObjectBuilder() - .add("reusablePrompts",Json.createArrayBuilder().add("reusablePrompts1").add("reusablePrompts2").build()) - .add("reusableResults",Json.createArrayBuilder().add("reusableResults1").add("reusableResults2").build()) + final JsonObject jsonObj = JsonObjects.createObjectBuilder() + .add("reusablePrompts",JsonObjects.createArrayBuilder().add("reusablePrompts1").add("reusablePrompts2").build()) + .add("reusableResults",JsonObjects.createArrayBuilder().add("reusableResults1").add("reusableResults2").build()) .build(); final ReusableInfo reusableInfo = ReusableInfo.builder() .withId(masterDefendantId) @@ -121,8 +121,8 @@ public void shouldGetViewStoreReusableInformation() throws IOException { when(reusableInfoRepository.findReusableInfoByMasterDefendantIds(Stream.of(masterDefendantId).collect(toList()))) .thenReturn(Stream.of(reusableInfo).collect(toList())); when(mapper.treeToValue(getJsonNode(jsonObj), JsonObject.class)) - .thenReturn(Json.createObjectBuilder().build()); - reusableInfoService.getViewStoreReusableInformation(Stream.of(defendant).collect(toList()), Stream.of(Json.createObjectBuilder().build()).collect(toList())); + .thenReturn(JsonObjects.createObjectBuilder().build()); + reusableInfoService.getViewStoreReusableInformation(Stream.of(defendant).collect(toList()), Stream.of(JsonObjects.createObjectBuilder().build()).collect(toList())); } private JsonNode getJsonNode(final JsonObject jsonObj) throws IOException { diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/SessionTimeServiceTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/SessionTimeServiceTest.java index 1dd108cffd..4f32365314 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/SessionTimeServiceTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/SessionTimeServiceTest.java @@ -1,8 +1,8 @@ package uk.gov.moj.cpp.hearing.query.view.service; import static java.util.UUID.randomUUID; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import static javax.servlet.http.HttpServletResponse.SC_NOT_FOUND; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; diff --git a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/userdata/UserDataServiceTest.java b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/userdata/UserDataServiceTest.java index 5ec75fad43..e43490fe80 100644 --- a/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/userdata/UserDataServiceTest.java +++ b/hearing-query/hearing-query-view/src/test/java/uk/gov/moj/cpp/hearing/query/view/service/userdata/UserDataServiceTest.java @@ -1,7 +1,7 @@ package uk.gov.moj.cpp.hearing.query.view.service.userdata; import static java.util.UUID.randomUUID; -import static javax.json.Json.createReader; +import static uk.gov.justice.services.messaging.JsonObjects.createReader; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.eq; diff --git a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/ApplicationCourtListRestrictionMapper.java b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/ApplicationCourtListRestrictionMapper.java index 59e24828c8..b55ef2f893 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/ApplicationCourtListRestrictionMapper.java +++ b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/ApplicationCourtListRestrictionMapper.java @@ -16,7 +16,7 @@ import java.util.stream.Collectors; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonReader; @@ -29,7 +29,7 @@ public class ApplicationCourtListRestrictionMapper { private ObjectToJsonObjectConverter objectToJsonObjectConverter; private JsonObject jsonFromString(String jsonObjectStr) { - try (JsonReader jsonReader = Json.createReader(new StringReader(jsonObjectStr))) { + try (JsonReader jsonReader = JsonObjects.createReader(new StringReader(jsonObjectStr))) { return jsonReader.readObject(); } } diff --git a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/CaseMarkerJPAMapper.java b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/CaseMarkerJPAMapper.java index 2f10e65f29..a143505d14 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/CaseMarkerJPAMapper.java +++ b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/CaseMarkerJPAMapper.java @@ -1,6 +1,6 @@ package uk.gov.moj.cpp.hearing.mapping; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import uk.gov.justice.core.courts.Marker; import uk.gov.justice.services.common.converter.jackson.ObjectMapperProducer; @@ -17,7 +17,7 @@ import java.util.stream.Collectors; import javax.enterprise.context.ApplicationScoped; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonReader; @@ -86,7 +86,7 @@ public Marker fromJPA(final CaseMarker entity) { private JsonObject jsonFromString(String jsonObjectStr) { JsonObject object; - try (JsonReader jsonReader = Json.createReader(new StringReader(jsonObjectStr))) { + try (JsonReader jsonReader = JsonObjects.createReader(new StringReader(jsonObjectStr))) { object = jsonReader.readObject(); } return object; diff --git a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/CourtApplicationsSerializer.java b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/CourtApplicationsSerializer.java index d2c1ed7895..8d2e700b1c 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/CourtApplicationsSerializer.java +++ b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/CourtApplicationsSerializer.java @@ -9,7 +9,7 @@ import java.util.List; import javax.inject.Inject; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonReader; @@ -28,7 +28,7 @@ public String json(final List courtApplications) { } private static JsonObject jsonFromString(String jsonObjectStr) { - try (JsonReader jsonReader = Json.createReader(new StringReader(jsonObjectStr))) { + try (JsonReader jsonReader = JsonObjects.createReader(new StringReader(jsonObjectStr))) { return jsonReader.readObject(); } } diff --git a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/DraftResultJPAMapper.java b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/DraftResultJPAMapper.java index db11b2d33d..bcf76078b4 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/DraftResultJPAMapper.java +++ b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/DraftResultJPAMapper.java @@ -8,7 +8,7 @@ import java.io.StringReader; import javax.enterprise.context.ApplicationScoped; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonObject; import javax.json.JsonReader; @@ -40,7 +40,7 @@ private DraftResultV2 getDraft(final JsonObject entityPayload) { private JsonObject jsonFromString(String jsonObjectStr) { JsonObject object; - try (JsonReader jsonReader = Json.createReader(new StringReader(jsonObjectStr))) { + try (JsonReader jsonReader = JsonObjects.createReader(new StringReader(jsonObjectStr))) { object = jsonReader.readObject(); } diff --git a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/HearingApplicantCounselJPAMapper.java b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/HearingApplicantCounselJPAMapper.java index 96f622478c..3a2b6c0b3d 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/HearingApplicantCounselJPAMapper.java +++ b/hearing-viewstore/hearing-viewstore-persistence/src/main/java/uk/gov/moj/cpp/hearing/mapping/HearingApplicantCounselJPAMapper.java @@ -2,8 +2,8 @@ import static java.util.UUID.fromString; import static java.util.stream.Collectors.toList; -import static javax.json.Json.createArrayBuilder; -import static javax.json.Json.createObjectBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createArrayBuilder; +import static uk.gov.justice.services.messaging.JsonObjects.createObjectBuilder; import uk.gov.justice.services.common.converter.jackson.ObjectMapperProducer; import uk.gov.moj.cpp.hearing.persist.entity.ha.Hearing; @@ -20,7 +20,7 @@ import java.util.stream.Collectors; import javax.enterprise.context.ApplicationScoped; -import javax.json.Json; +import uk.gov.justice.services.messaging.JsonObjects; import javax.json.JsonArrayBuilder; import javax.json.JsonObject; import javax.json.JsonObjectBuilder; @@ -108,7 +108,7 @@ public List fromJPA(Set fromJPA(Set fromJPA(Set fromJPA(Set fromJPA(Set fromJPA(Set fromJPA(Set Date: Thu, 5 Feb 2026 16:06:00 +0000 Subject: [PATCH 48/50] PEG-2848: fix build issue --- buildWithSonar.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/buildWithSonar.sh b/buildWithSonar.sh index 0d7e4fb11d..0b2d81e3d0 100755 --- a/buildWithSonar.sh +++ b/buildWithSonar.sh @@ -14,5 +14,8 @@ set -e . functions.sh + + +#### buildWithSonar From a0b4a5b577583125aaa08cc84f93d2bee0d4f9ac Mon Sep 17 00:00:00 2001 From: vmuthuhm Date: Thu, 19 Mar 2026 11:31:50 +0000 Subject: [PATCH 49/50] dummy commit to create image (#64) * dummy commit to create image * dummy commit to create image --------- Co-authored-by: vmuthu --- azure-pipelines.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yaml b/azure-pipelines.yaml index 1275dd64ee..5a2ad12852 100644 --- a/azure-pipelines.yaml +++ b/azure-pipelines.yaml @@ -21,7 +21,7 @@ resources: type: github name: hmcts/cpp-azure-devops-templates endpoint: 'hmcts' - ref: 'main' + ref: dev/enforcer-disabled pool: name: "MDV-ADO-AGENT-AKS-01" From 4c1da3f49993f2e230122ec20d472d80d936023e Mon Sep 17 00:00:00 2001 From: vmuthu Date: Thu, 16 Apr 2026 12:22:14 +0100 Subject: [PATCH 50/50] rebase with team/release-engg-2609 --- azure-pipelines.yaml | 2 +- hearing-command/hearing-command-api/pom.xml | 2 +- hearing-command/hearing-command-handler/pom.xml | 2 +- .../command/handler/UpdatePleaCommandHandlerTest.java | 3 ++- hearing-command/pom.xml | 2 +- hearing-common/pom.xml | 2 +- hearing-domain/hearing-domain-aggregate/pom.xml | 2 +- hearing-domain/hearing-domain-common/pom.xml | 2 +- hearing-domain/hearing-domain-event/pom.xml | 2 +- hearing-domain/hearing-domain-xhibit/pom.xml | 2 +- hearing-domain/pom.xml | 2 +- hearing-event-sources/pom.xml | 2 +- hearing-event/hearing-event-listener/pom.xml | 2 +- hearing-event/hearing-event-processor/pom.xml | 2 +- hearing-event/pom.xml | 2 +- hearing-healthchecks/pom.xml | 2 +- hearing-integration-test/pom.xml | 2 +- hearing-json/pom.xml | 2 +- hearing-query/hearing-query-api/pom.xml | 2 +- hearing-query/hearing-query-view/pom.xml | 2 +- hearing-query/pom.xml | 2 +- hearing-service/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-liquibase/pom.xml | 2 +- hearing-viewstore/hearing-viewstore-persistence/pom.xml | 2 +- hearing-viewstore/pom.xml | 2 +- pojo-plugin/pom.xml | 2 +- pom.xml | 6 +++--- test-utilities/pom.xml | 2 +- 28 files changed, 31 insertions(+), 30 deletions(-) diff --git a/azure-pipelines.yaml b/azure-pipelines.yaml index 5a2ad12852..1b5070f628 100644 --- a/azure-pipelines.yaml +++ b/azure-pipelines.yaml @@ -21,7 +21,7 @@ resources: type: github name: hmcts/cpp-azure-devops-templates endpoint: 'hmcts' - ref: dev/enforcer-disabled + ref: main pool: name: "MDV-ADO-AGENT-AKS-01" diff --git a/hearing-command/hearing-command-api/pom.xml b/hearing-command/hearing-command-api/pom.xml index f68649096e..7697613c60 100644 --- a/hearing-command/hearing-command-api/pom.xml +++ b/hearing-command/hearing-command-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-command-api war diff --git a/hearing-command/hearing-command-handler/pom.xml b/hearing-command/hearing-command-handler/pom.xml index df944690cf..5c4ae0fedd 100644 --- a/hearing-command/hearing-command-handler/pom.xml +++ b/hearing-command/hearing-command-handler/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-command - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-command-handler war diff --git a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdatePleaCommandHandlerTest.java b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdatePleaCommandHandlerTest.java index 8f2959eaec..7b44fd3734 100644 --- a/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdatePleaCommandHandlerTest.java +++ b/hearing-command/hearing-command-handler/src/test/java/uk/gov/moj/cpp/hearing/command/handler/UpdatePleaCommandHandlerTest.java @@ -21,6 +21,7 @@ import static uk.gov.moj.cpp.hearing.test.CommandHelpers.h; import static uk.gov.moj.cpp.hearing.test.ObjectConverters.asPojo; import static uk.gov.moj.cpp.hearing.test.TestTemplates.InitiateHearingCommandTemplates.standardInitiateHearingTemplate; +import static uk.gov.moj.cpp.hearing.test.TestTemplates.InitiateHearingCommandTemplates.standardInitiateHearingTemplateWithMultidayHearing; import static uk.gov.moj.cpp.hearing.test.matchers.BeanMatcher.isBean; import uk.gov.justice.core.courts.AllocationDecision; @@ -504,7 +505,7 @@ public void testOffenceAggregateUpdatePleaToGuilty() throws Throwable { public void enrichAssociatedHearingsWithIndicatedPleaInformation() throws Throwable { final HearingAggregate hearingAggregate = new HearingAggregate() {{ - apply(new HearingInitiated(hearing.getHearing())); + apply(new HearingInitiated(h(standardInitiateHearingTemplateWithMultidayHearing()).getHearing())); }}; final LocalDate pleaDate = PAST_LOCAL_DATE.next(); diff --git a/hearing-command/pom.xml b/hearing-command/pom.xml index 57c608ad0d..004c8789d1 100644 --- a/hearing-command/pom.xml +++ b/hearing-command/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-command pom diff --git a/hearing-common/pom.xml b/hearing-common/pom.xml index 94fc3459c7..67a0191879 100644 --- a/hearing-common/pom.xml +++ b/hearing-common/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT 4.0.0 diff --git a/hearing-domain/hearing-domain-aggregate/pom.xml b/hearing-domain/hearing-domain-aggregate/pom.xml index e716c59620..b026d0207d 100644 --- a/hearing-domain/hearing-domain-aggregate/pom.xml +++ b/hearing-domain/hearing-domain-aggregate/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-domain-aggregate diff --git a/hearing-domain/hearing-domain-common/pom.xml b/hearing-domain/hearing-domain-common/pom.xml index d84dab16c6..14125677f9 100644 --- a/hearing-domain/hearing-domain-common/pom.xml +++ b/hearing-domain/hearing-domain-common/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-domain-common diff --git a/hearing-domain/hearing-domain-event/pom.xml b/hearing-domain/hearing-domain-event/pom.xml index 3802d67650..de852a0d64 100644 --- a/hearing-domain/hearing-domain-event/pom.xml +++ b/hearing-domain/hearing-domain-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-domain-event diff --git a/hearing-domain/hearing-domain-xhibit/pom.xml b/hearing-domain/hearing-domain-xhibit/pom.xml index b51f8ba575..a51d749845 100644 --- a/hearing-domain/hearing-domain-xhibit/pom.xml +++ b/hearing-domain/hearing-domain-xhibit/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-domain - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT 4.0.0 diff --git a/hearing-domain/pom.xml b/hearing-domain/pom.xml index 4189c43397..8acfd66e16 100644 --- a/hearing-domain/pom.xml +++ b/hearing-domain/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-domain pom diff --git a/hearing-event-sources/pom.xml b/hearing-event-sources/pom.xml index 4afe050f48..b7305dd47a 100644 --- a/hearing-event-sources/pom.xml +++ b/hearing-event-sources/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT ../pom.xml 4.0.0 diff --git a/hearing-event/hearing-event-listener/pom.xml b/hearing-event/hearing-event-listener/pom.xml index 7a58526f55..ccd1e26927 100644 --- a/hearing-event/hearing-event-listener/pom.xml +++ b/hearing-event/hearing-event-listener/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-event - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-event-listener war diff --git a/hearing-event/hearing-event-processor/pom.xml b/hearing-event/hearing-event-processor/pom.xml index 11e8505907..6edddd7982 100644 --- a/hearing-event/hearing-event-processor/pom.xml +++ b/hearing-event/hearing-event-processor/pom.xml @@ -3,7 +3,7 @@ hearing-event uk.gov.moj.cpp.hearing - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT 4.0.0 war diff --git a/hearing-event/pom.xml b/hearing-event/pom.xml index 35616f0543..468359e4ad 100644 --- a/hearing-event/pom.xml +++ b/hearing-event/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-event pom diff --git a/hearing-healthchecks/pom.xml b/hearing-healthchecks/pom.xml index 72fd74bb39..70816c0def 100644 --- a/hearing-healthchecks/pom.xml +++ b/hearing-healthchecks/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT 4.0.0 diff --git a/hearing-integration-test/pom.xml b/hearing-integration-test/pom.xml index d292f46a73..992ae3b014 100644 --- a/hearing-integration-test/pom.xml +++ b/hearing-integration-test/pom.xml @@ -5,7 +5,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-integration-test diff --git a/hearing-json/pom.xml b/hearing-json/pom.xml index df2765bc8d..3c2e79bfd0 100644 --- a/hearing-json/pom.xml +++ b/hearing-json/pom.xml @@ -3,7 +3,7 @@ hearing-parent uk.gov.moj.cpp.hearing - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT 4.0.0 diff --git a/hearing-query/hearing-query-api/pom.xml b/hearing-query/hearing-query-api/pom.xml index 41d156700c..a5c9abbb0b 100644 --- a/hearing-query/hearing-query-api/pom.xml +++ b/hearing-query/hearing-query-api/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-query-api war diff --git a/hearing-query/hearing-query-view/pom.xml b/hearing-query/hearing-query-view/pom.xml index fbcf4f4694..8a29d77b08 100644 --- a/hearing-query/hearing-query-view/pom.xml +++ b/hearing-query/hearing-query-view/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-query - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-query-view jar diff --git a/hearing-query/pom.xml b/hearing-query/pom.xml index d004827001..08cd56d3c4 100644 --- a/hearing-query/pom.xml +++ b/hearing-query/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-query pom diff --git a/hearing-service/pom.xml b/hearing-service/pom.xml index 0a1ff90cf6..d2a18f1acb 100644 --- a/hearing-service/pom.xml +++ b/hearing-service/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT 4.0.0 diff --git a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml index 686e3c5189..51acc2b083 100644 --- a/hearing-viewstore/hearing-viewstore-liquibase/pom.xml +++ b/hearing-viewstore/hearing-viewstore-liquibase/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-viewstore-liquibase diff --git a/hearing-viewstore/hearing-viewstore-persistence/pom.xml b/hearing-viewstore/hearing-viewstore-persistence/pom.xml index c174b08a7b..596385b89b 100644 --- a/hearing-viewstore/hearing-viewstore-persistence/pom.xml +++ b/hearing-viewstore/hearing-viewstore-persistence/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-viewstore - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-viewstore-persistence diff --git a/hearing-viewstore/pom.xml b/hearing-viewstore/pom.xml index 0f379916e0..5f997a4820 100644 --- a/hearing-viewstore/pom.xml +++ b/hearing-viewstore/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT hearing-viewstore pom diff --git a/pojo-plugin/pom.xml b/pojo-plugin/pom.xml index caa3b59cc4..3d0259eb70 100644 --- a/pojo-plugin/pom.xml +++ b/pojo-plugin/pom.xml @@ -3,7 +3,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT pojo-plugin diff --git a/pom.xml b/pom.xml index 5ae0ff1278..51204ee71e 100644 --- a/pom.xml +++ b/pom.xml @@ -4,11 +4,11 @@ uk.gov.moj.cpp.common service-parent-pom - 17.103.3 + 17.103.9 uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT pom Hearing Context - Parent Module @@ -26,7 +26,7 @@ 1.3.3 0.1.96 17.103.12 - 17.103.129 + 17.103.131 17.0.57 17.0.58 17.0.1 diff --git a/test-utilities/pom.xml b/test-utilities/pom.xml index 2b50e77e8e..8df970a6b8 100644 --- a/test-utilities/pom.xml +++ b/test-utilities/pom.xml @@ -7,7 +7,7 @@ uk.gov.moj.cpp.hearing hearing-parent - 17.0.151-RE-SNAPSHOT + 17.0.151-RBSD-2609-SNAPSHOT